We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I encountered this error in yolov2.py Could you tell me how to fix it.
python yolov2_train.py
loading image generator... item_files = ... loading initial model... start training Traceback (most recent call last): File "yolov2_train.py", line 82, in loss = model(x, t) File "/home/dl-box/YOLOv2/yolov2.py", line 168, in call x_shift = Variable(np.broadcast_to(np.arange(grid_w), x.shape[1:])) AttributeError: 'module' object has no attribute 'broadcast_to'
The text was updated successfully, but these errors were encountered:
I resolve this problem. I have used numpy ver1.08, but upgrade ver1.12.
Sorry, something went wrong.
No branches or pull requests
I encountered this error in yolov2.py
Could you tell me how to fix it.
loading image generator...
item_files = ...
loading initial model...
start training
Traceback (most recent call last):
File "yolov2_train.py", line 82, in
loss = model(x, t)
File "/home/dl-box/YOLOv2/yolov2.py", line 168, in call
x_shift = Variable(np.broadcast_to(np.arange(grid_w), x.shape[1:]))
AttributeError: 'module' object has no attribute 'broadcast_to'
The text was updated successfully, but these errors were encountered: