CIFAR-10 ResNet-50 Classifier

Model ResNet-50 yang di-fine-tune pada dataset CIFAR-10.

Akurasi

  • Test Accuracy: 95.01%

Kelas

airplane, automobile, bird, cat, deer, dog, frog, horse, ship, truck

Cara Pakai

import torch
from torchvision import models, transforms
from PIL import Image

model = models.resnet50(weights=None)
model.fc = torch.nn.Sequential(
    torch.nn.Dropout(0.3),
    torch.nn.Linear(model.fc.in_features, 10)
)
model.load_state_dict(torch.load("model.pth"))
model.eval()
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train wilson-99/cifar10-resnet50