Online sources for pre-trained neural networks?

In the video “Transfer learning: using data from a different task,” Andrew Ng mentions that we can get better results from neural networks by downloading and working on each other’s pre-trained models. Do any of you know any good sources or libraries of freely licensed neural networks?

Sure. Any of the popular “frameworks” provide a selection of pre-trained models. I’m primarily familiar with TensorFlow/Keras. Here is the TF top level page for available models and here is the PyTorch equivalent. I’m sure you can google up similar pages for whatever platform is your preferred one. Hint: to find the PyTorch page, I googled “pytorch pretrained networks”.

1 Like

Thank you! I’ll definitely be working with these models.