You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Backbones

Backbone networks exported as PyTorch programs.

All models were pretrained on ImageNet and subsequently finetuned on a specific dataset. Annotation data was converted for multi-label classification where applicable.

Usage

Simply load the model in PyTorch and run inference to get a mapping of features.

import torch
import torch.export

image = torch.randn((1, 3, 256, 256), dtype=torch.float32, requires_grad=False)

model = torch.export.load("resnet/resnet50-imagenet.pt2")
model.eval()

feats = model(image)

assert isinstance(feats, dict), type(feats)
assert feats["ext1"]
assert feats["ext2"]
assert feats["ext3"]
assert feats["ext4"]
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.