-
Notifications
You must be signed in to change notification settings - Fork 248
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 when running the ipynb file. #16
Comments
@fivejjs In the latest version, when u want to use SoftmaxActivation, u should replace the "type" into "mode" in the json file. The other easy solution is u download a previous version of MXNET for example "tag 0321" |
@fivejjs @azrael0fog |
Couple questions--where can I find model.aux_params? And where do I get the .ctx file that convert_movie.py needs as an argument? I'm encountering this error too...Ubuntu 14.04 with CUDA 7 / CUDNN 4 and CUDA 7.5 / CUDNN 5. Tried search-and-replace in json file, building from tag 0321, no luck. |
i am having the same issue... Ubuntu 16.04 CUDA 7.5 / CUDNN 4 and i keep getting the same error: ValueError: Find name bn_pool3_moving_inv_var that is not in the auxiliary states i tried changing the deep3d-0050.params file from moving_inv_var to moving_var. Then the model doesnot load. Can you specify the exact location to change the moving_inv_var file. |
@dineshreddy91 Though both works, when using CUDA 7.5/CUDNN 5, the result picture is not the same as the author shows. I guess the author is using CUDA 7/CUDNN 4. I am not sure, but I guess there may some difference of CUDA 7.5 and CUDA 7 when calculating. Highly recommanded changing the version of CUDA into version7. |
@azrael0fog |
Still no fix? |
Can you suggest any way to modify deep3d-0050.params. I am really struggling with it. |
I somewhat understand his meaning, model.aux_params is not a file, it's a variable, the modification should be done in the program. |
@azrael0fog But still got this error: Any advise? |
degrade the cudnn version from v5 to v4, it works. |
@azrael0fog I am a new comer to mxnet .I want to use deep3d to make a few pictures. I want to know which file need to modify to aviod the CudnnBatchNorm problem,.I got in the trouble for a few days. I need your help Thanks a lot. |
The solution by @azrael0fog worked in my case.
TO
However, the difference with @azrael0fog's case is that I did not have to change "CudnnBatchNorm" and "model.aux_params" at all. Hope this works in yours. |
@Greenleaf88 , do you know which file(s) need to change model.aux_params? I didn't find any file include model.aux_params. If possible, can you list the files' name. Thanks. |
I find how to change model.aux_params from #23. Thanks @zedomel model = mx.model.FeedForward.load('deep3d', 50, mx.gpu(0)) model.aux_params['bn_pool3_moving_var'] = model.aux_params['bn_pool3_moving_inv_var'] |
The error gives:
How to fix it?
Thanks
The text was updated successfully, but these errors were encountered: