Even if this might be true, including a license of some kind is really a best practice at this point. Something like a Creative Commons license is probably more appropriate than the MIT license, but when there's an explicit license there's no doubt about what your rights are.
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).
I was thinking that the current "best" model/architecture may change fairly frequently. Obviously you wouldn't want to download 100MB every time the application starts, but maybe amortized every time there is a significant jump would be good.
Anyway, I haven't seen anything like this, so was curious.
15 comments
[ 3.7 ms ] story [ 43.8 ms ] threadThe 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.
I ask because I'm surprised more companies haven't gotten into the market of licensing the data they collect (unless they do, in which case, sorry).
http://kingline.speechocean.com/
http://deeplearning.net/datasets/
http://www.elra.info/en/
Does anyone know of a library for loading models/weights from a registry of some sort?
Just use Keras on top of TensorFlow as shown at this link.
my_model = registry.get("tensorflow://github.com/asdf/models/imagine/latest") ... my_model.push("...")
I guess someone could build it, sort of like the datasets you can download in SciKit or R, or the trained models in NLTK/Spacy.
In-fact I've almost come the full circle on this and think it might be a good idea.
Weird - I didn't think people on the internet could change their mind.
I was thinking that the current "best" model/architecture may change fairly frequently. Obviously you wouldn't want to download 100MB every time the application starts, but maybe amortized every time there is a significant jump would be good.
Anyway, I haven't seen anything like this, so was curious.
https://github.com/spacy-io/sputnik
?