-
Notifications
You must be signed in to change notification settings - Fork 236
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
Fixed the padding calculation bug #443
Conversation
Update the fork
Fix broken markdown link in tested_models.md (#417)
@sotanishy GoogleNet export still doesn't work can you look into that. Can you also comment here a list of models which were not working in the original code and they are working after the fix, so that we can validate the models. |
Xception didn't work before but after the change it worked. |
@sotanishy can you test whether all the models mentioned in README are working fine or is there some model which is breaking. |
I haven't tested everything yet but GoogleNet export for keras worked. |
@sotanishy can you fix the Travis CI issues and test all the models listed in tested models (check if any other model which was working earlier is not breaking after the change). Once you are done with that we can go forward with the review. |
Importing keras models such as inception and VQA failed. I'm looking into why but I doubt it's related to the changes I made. Import and export for other models currently available in keras worked. GoogleNet and DenseNet, which were not available in keras before, were successfully exported to keras, too. |
Update fork
Merge pull request #3 from Cloud-CV/master
@sotanishy the inception models were working fine before the change right? |
I tried it on a different computer and everything worked fine. All models were imported and exported to keras successfully. |
Hello @sotanishy, great work! It would be better to use Also, I tried exporting Inception v4 and v3 from model zoo to Caffe and importing them again. The parameter counts were not equal to the master branch values (Issue #451 mentions some parameter count values for Caffe in the master branch). So I'm guessing some values are being calculated wrong in your branch. What do you think? @Ram81 |
Exporting and importing them again in caffe worked, but the parameter count was more than what's mentioned in the issue. |
When the padding is not an integer, like 1/2 or -1/2, it should be rounded up but instead it was rounded down, causing errors.