Monday, July 27, 2020

PSF GSoC students blogs: Dynamic Loading - Weekly Check-in 9

End of Week 8  - 27/07/2020


What did you do this week?

Picking up from last week, I implemented dynamic loading of all the pre-trained torchvision models for image classification. This method creates the ``Model`` classes on the fly using type(), sys.modules and setattr() and loads the weights only for the model that is being used! I discussed with my mentor on more computer vision operations and examples that will be a great addition to DFFML. 

What is coming up next?

After having a discussion with my mentor, we decided that we will work on exposing the optimization and loss function options available in PyTorch and layer support for making custom neural networks in a separate pull request next!

Did you get stuck anywhere?

No, this week went by smoothly!


Thank you for reading!



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...