Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import error .pyx files #46

Open
shekarneo opened this issue Dec 27, 2019 · 0 comments
Open

import error .pyx files #46

shekarneo opened this issue Dec 27, 2019 · 0 comments

Comments

@shekarneo
Copy link

getting the below error while importing the darkflow.net.build import TFNet

ModuleNotFoundError Traceback (most recent call last)
in
1 import cv2
----> 2 from darkflow.net.build import TFNet
3 import matplotlib.pyplot as plt
4
5 get_ipython().run_line_magic('config', "InlineBackend.figure_format = 'svg'")

~/darkflow/darkflow/net/build.py in
5 from .ops import op_create, identity
6 from .ops import HEADER, LINE
----> 7 from .framework import create_framework
8 from ..dark.darknet import Darknet
9 import json

~/darkflow/darkflow/net/framework.py in
----> 1 from . import yolo
2 from . import yolov2
3 from . import vanilla
4 from os.path import basename
5

~/darkflow/darkflow/net/yolo/init.py in
1 from . import train
----> 2 from . import predict
3 from . import data
4 from . import misc
5 import numpy as np

~/darkflow/darkflow/net/yolo/predict.py in
5 import os
6 import json
----> 7 from ...cython_utils.cy_yolo_findboxes import yolo_box_constructor
8
9 def _fix(obj, dims, scale, offs):

ModuleNotFoundError: No module named 'darkflow.cython_utils.cy_yolo_findboxes'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant