top | item 12239096

Show HN: Set of trained deep learning models for computer vision

127 points| fchollet | 9 years ago |github.com | reply

15 comments

order
[+] Omnipresent|9 years ago|reply
Can the classify images example be modified to train on other (new) images. For example, images of screenshots to identify elements that are in the images (such as: word processor, browser, command prompt).
[+] minimaxir|9 years ago|reply
Are you allowed to redistribute the models under the MIT License?
[+] fchollet|9 years ago|reply
The code is under the MIT license, not the weights. The weights are under their respective licenses.

The weights are not included in the git tree and are thus not covered by the LICENSE file. They are automatically downloaded when you run the code.

EDIT: following your comment, I have added a point-by-point breakdown of licensing information in the README. This will avoid any confusion.

[+] chris_va|9 years ago|reply
Question:

Does anyone know of a library for loading models/weights from a registry of some sort?

[+] nl|9 years ago|reply
Yes - pretty much every Deep Learning library. Caffe, Torch, Theano, TensorFlow etc (that's kinda what this link is about?)

Just use Keras on top of TensorFlow as shown at this link.