-
Notifications
You must be signed in to change notification settings - Fork 7.1k
NASNet Model #321
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
Comments
Hi @ahkarami, In torchvision we would like to have models that have been trained in pytorch using pytorch + torchvision so that they are also reproducible by the community. If somebody from the community would like to train these networks, we would be more than willing to accept a PR + the weights |
@alykhantejani and InceptionV3 is an exception :P |
Not already, but I am currently working on it. I’ll let you know asap
|
@Cadene, how far are you? I was going to start porting Tensorflow Slim's model definition as the paper alone is... light in crucial details and parameters to say the least. Don't want to uselessly duplicate efforts :) |
@aussetg I can't focus on it too much because of some deadlines, but I am definitely working on it. |
@soumith @aussetg I did not port the pretrained parameters yet to validate the model, but at least you can run a forward + backward pass on this version. |
@Cadene You implemented the separable convolution using Conv2d(in=out=groups) + pointwise, while it won't work on the release version wouldn't it be better to make use of pytorch/pytorch#3057 ? i.e merge Conv2d(in, in, in) + pointwise(n) with conv2d(in, in*n, in) |
@aussetg It makes sense. I just added a global variable to switch between the two implementations. Cadene/pretrained-models.pytorch@99deb0e |
new release coming this week, so feel free to switch to that suggestion by @aussetg |
NASNet-A-Large has been successfully ported to pytorch! https://github.com/Cadene/pretrained-models.pytorch However, the forward pass is a bit slow. During the evaluation:
|
@Cadene awesome! Do you have an idea on how fast it runs on TensorFlow? |
Sure, NasNet (medium) sounds like a good addition as well |
@Kulikovpavel Hi, did you see any available pretrained model for NASNet medium somewhere? Did not find any in tensorflow/slim directory :/ |
Recently the Google Brain Team released a fantastic CNN model, NASNet, in TF-slim, which achieved the state-of-the-art Top-1 Accuracy on ImageNet by 82.7 %. I want to know that the PyTorch team has any plan for implement or porting this model into the PyTorch Offifcial Models (i.e., torchvision models)?
The text was updated successfully, but these errors were encountered: