uoft-cs/cifar100
Viewer • Updated • 60k • 32.3k • 62
WideResNet-28-10 trained on CIFAR-100 dataset with advanced augmentation techniques.
best_model.pth - Best performing modelcheckpoint_epoch10.pth - Epoch 10 checkpointcheckpoint_epoch25.pth - Epoch 25 checkpoint (end of cycle 1)checkpoint_epoch50.pth - Epoch 50 checkpoint (mid-training)checkpoint_epoch75.pth - Epoch 75 checkpoint (late training)final_model.pth - Final epoch modelimport torch
from huggingface_hub import hf_hub_download
# Download model
checkpoint_path = hf_hub_download(
repo_id="pandurangpatil/cifar100-wideresnet-session8",
filename="best_model.pth"
)
# Load checkpoint
checkpoint = torch.load(checkpoint_path, map_location='cpu')
# Load model (define WideResNet class first)
model = WideResNet(depth=28, widen_factor=10, num_classes=100)
model.load_state_dict(checkpoint['model_state_dict'])
model.eval()
training_curves.png - Training/test accuracy and loss curvesmetrics.json - Complete training historyconfig.json - Hyperparameter configurationMIT
@misc{wideresnet-cifar100,
author = {Pandurang Patil},
title = {CIFAR-100 WideResNet-28-10},
year = {2025},
publisher = {HuggingFace},
url = {https://huggingface.co/pandurangpatil/cifar100-wideresnet-session8}
}