This repository contains model trained to predict orientation {0:'up', 1:'down'} of images. The model '.pkl' file contains a dictionary with the following keys:
'optimizer': optimizer state dictionary
'scheduler': scheduler state dictionary
'model': model state dictionary
'epoch': checkpoint epoch
The image size is 3x224x224. The model can be initialized as:
model = torchvision.models.efficientnet_b1(pretrained=True)
in_features = model.classifier[1].in_features
out_features = 2
model.classifier[1] = nn.Linear(in_features, out_features, bias=True)
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
๐
Ask for provider support