Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Pythorch Ligntning

PyTorch Lightning is a lightweight wrapper for PyTorch that helps to organize code and abstracts away the training loop, making it easier to write clean and maintainable code. It provides a high-level interface for training neural networks, allowing you to focus on the model architecture and the training logic, rather than the boilerplate code for training and validation.

What is it?

  1. mnist.ipynb: A Jupyter notebook that demonstrates how to use PyTorch Lightning to train a simple neural network on the MNIST dataset. It includes code for data loading, model definition, training, and evaluation.