| Metric | Value |
|---|---|
| Test Set Accuracy | 81.46% |
pytorch_model.bin1from huggingface_hub import hf_hub_download
2import torch
3from your_model_definition import SimpleCNN # Replace with your actual model class
4
5# Download the model weights
6model_path = hf_hub_download(repo_id="manasyesuarthana/cifar10-simple-cnn-pytorch", filename="pytorch_model.bin")
7
8# Initialize your model architecture
9model = SimpleCNN()
10
11# Load the downloaded weights
12model.load_state_dict(torch.load(model_path, map_location=torch.device('cpu')))
13model.eval()
14