resnet18-cifar10
37
—
by
Tudorx95
Image Model
OTHER
New
37 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
In template, seteaza:pythonpytorch
import torch
# Incarca modelul complet
model = torch.load('ResNet18_CIFAR10.pth', map_location='cpu')
model.eval()
# Sau incarca doar weights
from torchvision.models import resnet18
model = resnet18(weights=None)
model.conv1 = torch.nn.Conv2d(3, 64, kernel_size=3, stride=1, padding=1, bias=False)
model.maxpool = torch.nn.Identity()
model.fc = torch.nn.Linear(512, 10)
model.load_state_dict(torch.load('resnet18_cifar10_weights.pth'))Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.