This project demonstrates how to train a ResNet-34 model on the Fashion MNIST dataset using PyTorch. The goal is to classify 10 different classes of fashion images.
- β Use of ResNet-34 architecture for image classification.
- β Dataset: Fashion MNIST (grayscale 28x28 images with 10 fashion categories).
- β Use of PyTorch, torchvision for model & data handling.
- β Data augmentation during training.
- β Model checkpoint saving.
- β Inference code for test dataset.
- β Output predictions can be saved to CSV.
- Dataset: Fashion MNIST
- You can download automatically using
torchvision.datasets.FashionMNIST, or download manually and store insidedata/directory.

