Skip to content
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

Incorporate into keras models repository #20

Open
ahundt opened this issue Dec 15, 2016 · 12 comments
Open

Incorporate into keras models repository #20

ahundt opened this issue Dec 15, 2016 · 12 comments

Comments

@ahundt
Copy link

ahundt commented Dec 15, 2016

Would you be interested to get this into the keras models repository?
https://github.com/fchollet/deep-learning-models

I might be able to help with modifying the class to match the others appropriately.

@raghakot
Copy link
Owner

Doesn't that require pre-trained weights? I can work on porting over resnet50 weights. Not sure about others. Do you know if Kaiming He has pretrained weights for all resnet configurations? If yes, we could try and port those over.

@ahundt
Copy link
Author

ahundt commented Dec 16, 2016

there are a bunch of pretrained weights floating around. I'm sure just one set of weights would be enough for them to accept the request for the first version. I mean, your functions let you generate arbitrary sized resnets so one certainly wouldn't be expected to make them all. :-)

@raghakot
Copy link
Owner

Ok. I'll give it a shot. Do you know of any projects for converting caffe models? I see a bunch of them floating around. Not sure which one to use.

@ahundt
Copy link
Author

ahundt commented Dec 16, 2016

What may be the easiest option is to simply convert the ones from the tensorflow slim models repository.
They have a resnet implementation and links to their pre-trained models which they already converted into tensorflow.... nvm that is resnet v1, they don't have resnet v2 up...

pretrained resnet v2 (w/pre activations) weights in torch t7 format
Well here are the resnet v2 models torch weights that are trained by a grad student under the supervision of the original author (as you may know he moved from microsoft research to facebook):
https://github.com/facebook/fb.resnet.torch/tree/master/pretrained

Actually, it looks pretty simple to move the weights from tensorflow to h5f, and it seems
https://github.com/Moodstocks/inception-v3.torch/blob/master/dump_filters.py

Those are in torch format, and I'd bet the deepmind implementation of conversion is very likely to work:
https://github.com/deepmind/torch-hdf5

From there I believe keras can load hdf5 by name.

@raghakot
Copy link
Owner

Cool. I will try to get to this in after december. In the mean time, if any of you guys have time, feel free to take a stab at this. It would be cool to convert all the torch models.

@ahundt
Copy link
Author

ahundt commented Dec 18, 2016

looks like based on the description some of the weights were already transferred in here: https://github.com/fchollet/deep-learning-models so it might be worth asking if there is code that was used to do the conversion that could be reused

@jrao1
Copy link

jrao1 commented Dec 21, 2016

I have an old script which can convert t7 file to keras model, maybe I can try to get it work again. The problem is there's no easy way to map between the layers created from touchfile and an existing keras model, so some adhoc logic is needed so that we can know which weight is for which layer in the existing model.

Also if I remember correctly I had a hard time reproducing the image preprocessing logic from touch.

@ahundt
Copy link
Author

ahundt commented Mar 11, 2017

I believe the most appropriate place for this now might be keras-contrib:
https://github.com/farizrahman4u/keras-contrib

@ahundt
Copy link
Author

ahundt commented Sep 10, 2017

I've taken first steps towards this at keras-team/keras-contrib#148

@raghakot
Copy link
Owner

Thanks, @ahundt. I have been super busy at work lately.

@CMCDragonkai
Copy link

@ahundt Did you ever find the pretrained weights for some of the architectures you have for keras-contrib?

@ahundt
Copy link
Author

ahundt commented Oct 8, 2018

no, I haven't been using ResNets directly recently

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants