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)
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