Skip to main content

Blog

Learn About Our Meetup

5000+ Members

MEETUPS

LEARN, CONNECT, SHARE

Join our meetup, learn, connect, share, and get to know your Toronto AI community. 

JOB POSTINGS

INDEED POSTINGS

Browse through the latest deep learning, ai, machine learning postings from Indeed for the GTA.

CONTACT

CONNECT WITH US

Are you looking to sponsor space, be a speaker, or volunteer, feel free to give us a shout.

[P] EfficientNet in PyTorch

TL;DR: Implemented EfficientNet in PyTorch: https://github.com/lukemelas/EfficientNet-PyTorch

I found EfficientNet to be quite an exciting paper, so I implemented it in PyTorch over the past two days. The implementation makes it simple to load pretrained models and integrate them into your own projects/research/models. GitHub: https://github.com/lukemelas/EfficientNet-PyTorch

There are multiple examples in the GitHub repo and here is one on Colab. It’s as quick as

from efficientnet_pytorch import EfficientNet model = EfficientNet.from_pretrained('efficientnet-b0') 

And you can install it via pip if you would like:

pip install efficientnet_pytorch 

Finally, there are scripts to evaluate on ImageNet (with training scripts coming soon) and there’s functionality to easily extract image features.

Let me know (either here or on GitHub) if you have any comments or find any bugs. I hope some of you find it useful!

submitted by /u/LukeAndGeorge
[link] [comments]