-
-
Notifications
You must be signed in to change notification settings - Fork 66
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
Add new Models and provide user with an option to fetch untrained models #16
Comments
Sounds good! We can probably just keep a couple of representative examples in the model zoo, and the rest here. |
EDIT: What I mention below was already discussed here. I've been getting
Is the issue related to |
I implemented a skeletal structure of InceptionNet V3, inspired by Pytorch.
|
related #71 |
We have a lot of these models now in the repo, and there is a consistent interface for loading the weights. There are some models here that we do not have. Perhaps we can refactor this issue into a clean one with models/weights that we need to add and pin it? |
Closing in favor of #112 which is more up to date. |
List of models that I propose to add are:-
The above ones just need a few tweeks before being ported from
model-zoo
. Also models like:should be added, but they are not ready in model zoo currently.
The proposed API is something like
VGG19
would fetch an untrained model to the user. To get a trained model we use something liketrained(VGG19)
. We will throw an error for trying to fetch models for which we donot have the trained weights (atleast all the above models for now).cc @MikeInnes
The text was updated successfully, but these errors were encountered: