-
Notifications
You must be signed in to change notification settings - Fork 72
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
parse_darknet_yolo2.py #8
Comments
@ruiminshen not really follow the real model YOLOv2 architecture |
Hi, @huseinzol05 could you please state why do you think this is wrong? I m trying to implement YOLOv2, I already made the forward as you did but I cannot find a valid training part. Are you working on it? |
based on .cfg from darknet [route] [convolutional] from inference.py, _net = reorg(passthrough) supposed, passthrough = slim.layers.conv2d(passthrough, 64)
_net = reorg(passthrough) |
so is there a solution for this problem? |
I think I encountered this problem and I believe I got around the problem by downloading and using the |
INFO:tensorflow:yolo2_darknet/conv20/BatchNorm/moving_variance: [1024]=1024
<class 'numpy.int32'>
INFO:tensorflow:yolo2_darknet/conv20/weights: [3, 3, 3072, 1024]=28311552
<class 'numpy.int32'>
Traceback (most recent call last):
File "parse_darknet_yolo2.py", line 137, in
main()
File "parse_darknet_yolo2.py", line 94, in main
p = struct.unpack('%df' % cnt, f.read(4 * cnt))
struct.error: unpack requires a bytes object of length 113246208
I print the value of(4*cnt). It actually equals to 113246208, and the type of cnt is int32.
And I do not know how to solve this problem.....
Could anyone tell me about it ?
Thank you !
The text was updated successfully, but these errors were encountered: