Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 639 Bytes

File metadata and controls

14 lines (10 loc) · 639 Bytes

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.