-
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
Running into error while calling predict #23
Comments
@nishithbsk |
You should rename it to bn_pool3_moving_var. Here a piece of code to do that: model.aux_params['bn_pool3_moving_var'] = model.aux_params['bn_pool3_moving_inv_var'] |
@zedomel @nishithbsk I also met the problem .When I ran the Y = model.predict(test_iter) I got the warning the kernel will restart .My GPU memory is 2G .I want to know how to solve it .Can you help me ?Thank you |
I had the similar problem. I used above solution but then results were not consistent with author's result. |
AjayNandoriya, the solution above should be adopted when using older version of CuDNN. Some GPU's are not compatible with new versions of CuDNN, so the only way to get it works is to change parameters names to match older versions I guess. But as you said the results can differ from the author's. |
@zedomel , your solution works with CuDNN v5 and removes runtime errors but it produces different results. For CuDNN v4.0, no change in model-json or script is required. |
@AjayNandoriya thanks. The solution is for newer versions of CuDNN, but may be there are some other parameters to change to make it works and produce results as author's. At end, I have used the same solution as you MxNet 0.7.0 and CuDNN v4.0. |
Does anyone have a fork of this repo where they've made the changes to the json (and any other files) to get things working with newer versions of mxnet? |
I found the one fork of this repo that purportedly has updates for CUDA8 and CnDNN 5.x: https://github.com/motypas/deep3d Unfortunately motypas did not enable issues for his/her fork of deep3d. I definitely get further along when I run with that fork, but now I'm seeing:
which makes me wonder if the model is equivalent to the original deep3d? |
@philtomson Can you tell me the meaning of parameter "--source" in convert_movie.py and how can I get it ? Before running the convert_movie.py, I just use parse.py and data.py generating the database. But I don;t know how to get the --source( default = "test_idx" ) . |
Hi,
I'm getting this error: Find name bn_pool3_moving_inv_var that is not in the auxiliary states
Would you know how to resolve it?
Thanks!
The text was updated successfully, but these errors were encountered: