Notebooks practicing with PyTorch
- a simple notebook using
torch.nn
andtorch.utils.data
forFashionMNIST
dataset - DataLoading, creating model. optimizing model parameters, training, testing and evaluation steps included
- How to write a basic neural network from scratch in
PyTorch
- How the submodules of torch, like
torch.nn
andtorch.utils.data
, make writing performant neural network training and inference code easier
lightning_LogisticRegression.ipynb
- The core components of a
PyTorch Lightning
training loop:LightningModules
andTrainers
. - Useful quality-of-life improvements offered by PyTorch Lightning:
LightningDataModules
,Callbacks
, andMetrics
- Example with
Logistic Regression
onMNIST
dataset
- Fundamental principles for building neural networks with convolutional components
- How to use
PyTorch Lightning
's training framework via a CLI