PyTorch
Pytorch is an open source machine learning library originally developed by Meta. It is known for its powerful features which are relatively easy to use.Installation
Pytorch can be installed to your local environment as follows.
pip install torch
Topics
- Tensors - the basic way in which data is represented in Pytorch.
- Computational Graphs and Autograd
- Data in PyTorch - while you can do everything in Pytorch using tensors only, Pytorch provides some utility methods for dealing with data.
- Neural Networks (Deep Learning)