-
Notifications
You must be signed in to change notification settings - Fork 6.8k
MxNet/example/rcnn/demo.py error #2694
Comments
Bind will issue this error when arguments are missing. Try listing |
@precedenceguo Thank you very much for your response. so I wonder this pretrained model requires what size of workspace. Sorry for the low level of my GPU: GTX 965 |
Please consider use cudnn to avoid this problem. |
Hi have the same issue, I cannot use cudnn on my board. Could you elaborate on this problem? What is related to? |
Please follow http://mxnet.io/api/python/symbol.html#mxnet.symbol.Convolution to set proper workspace for convolution. |
Thank you for you help, now it’s working.
|
I got the same error ValueError: Must specify all the arguments in args,but i don't know how to deal with it.I use it in windows 10.I ran the command python demo.py --prefix final --epoch 0 --image myimage.jpg --gpu 0 |
It means some parameters are missing. Please check everything is there in |
How and where can I set proper workspace for convolution? |
This issue is closed due to lack of activity in the last 90 days. Feel free to reopen if this is still an active issue. Thanks! |
demo.py error shows:
Traceback (most recent call last):
File "E:\2016prog\rcnnpython\demo.py", line 33, in
demo_net(detector, os.path.join(os.getcwd(), 'data', 'demo', '000004'))
File "E:\2016prog\rcnnpython\tools\demo_net.py", line 33, in demo_net
scores, boxes = detector.im_detect(im_array, roi_array)
File "E:\2016prog\rcnnpython\rcnn\detector.py", line 46, in im_detect
aux_states=None)#self.aux_params
File "C:\Python27\lib\site-packages\mxnet-0.7.0-py2.7.egg\mxnet\symbol.py", line 783, in bind
args_handle, args = self._get_ndarray_inputs('args', args, listed_arguments, False)
File "C:\Python27\lib\site-packages\mxnet-0.7.0-py2.7.egg\mxnet\symbol.py", line 625, in _get_ndarray_inputs
raise ValueError('Must specify all the arguments in %s' % arg_key)
ValueError: Must specify all the arguments in args
How can I deal with it ?
The text was updated successfully, but these errors were encountered: