-
Notifications
You must be signed in to change notification settings - Fork 8k
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
Error in darknet.py #1046
Comments
Hi, |
I do not use GPU so I compiled yolo_cpp_dll_no_gpu.sln and the code is built successfully. |
So now can you run successfully |
No, sadly not. Just the yolo_cpp_dll_gpu.sln works. When I run build\darknet\x64\darknet.py I get the error C:\Python27\python.exe C:/Users/Christian/Source/Repos/darknet/build/darknet/x64/darknet.py Process finished with exit code 1 My weights file is in \build\darknet\x64\darknet53.conv. Thanks a lot for your help! |
So, I got the weight file and put it into the ./x64 folder and it complied C:\Python27\python.exe C:/Users/Christian/Source/Repos/darknet/build/darknet/x64/darknet.py seen 64 Process finished with exit code 0 It's not my dataset but that's on purpose, right? |
Yes, darknet.py works fine. |
Thanks a lot again! |
@chrischris96 Please refer to this, there is a similar issue |
Hi!
I am using yolov3 on a costume dataset and I get an error
Traceback (most recent call last):
File "C:/Users/Christian/Source/Repos/darknet/darknet.py", line 82, in
lib = CDLL("yolo_cpp_dll.dll", RTLD_GLOBAL)
File "C:\Python27\lib\ctypes_init_.py", line 366, in init
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] Das angegebene Modul wurde nicht gefunden
Process finished with exit code 1
when I compile the darknet.py code. I am on windows and python 2.7.15. I also followed the instruction in order to compile on windows and darknet.sln and darknet_no_gpu are built successfully. After that I followed the tutorial for costume datasets and created all the necessary files.
I thought that maybe there is an error because I use python 2.7.15? Could anybody please help me?
The text was updated successfully, but these errors were encountered: