ILSVRC/imagenet-1k
Viewer • Updated • 1.43M • 126k • 877
resnet50-pytorch trained on imagenet-1k dataset with advanced augmentation techniques.
import torch
from huggingface_hub import hf_hub_download
# Download model
checkpoint_path = hf_hub_download(
repo_id="pandurangpatil/imagenet1k",
filename="best_model.pth"
)
# Load checkpoint
checkpoint = torch.load(checkpoint_path, map_location='cpu', weights_only=False)
# Load model (you'll need to have the model definition)
# from models import get_model
# model = get_model('resnet50-pytorch', num_classes=1000)
# model.load_state_dict(checkpoint['model_state_dict'])
# model.eval()
best_model.pth - Best performing model checkpointtraining_curves.png - Training/test accuracy and loss curveslr_finder_plot.png - Learning rate finder resultsmetrics.json - Complete training historyconfig.json - Hyperparameter configurationMIT
@misc{resnet50-pytorch-imagenet-1k,
title = {IMAGENET-1K resnet50-pytorch},
year = {2025},
publisher = {HuggingFace},
url = {https://huggingface.co/pandurangpatil/imagenet1k}
}