AI SeedbankHelp preserve open and free AI for humanity's future

← All models

microsoft_resnet-50

microsoft · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 tags:

  • vision
  • image-classification datasets:
  • imagenet-1k

ResNet-50 v1.5

ResNet model pre-trained on ImageNet-1k at resolution 224x224. It was introduced in the paper Deep Residual Learning for Image Recognition by He et al.

Disclaimer: The team releasing ResNet did not write a model card for this model so this model card has been written by the Hugging Face team.

Model description

ResNet (Residual Network) is a convolutional neural network that democratized the concepts of residual learning and skip connections. This enables to train much deeper models.

This is ResNet v1.5, which differs from the original model: in the bottleneck blocks which require downsampling, v1 has stride = 2 in the first 1x1 convolution, whereas v1.5 has stride = 2 in the 3x3 convolution. This difference makes ResNet50 v1.5 slightly more accurate (~0.5% top1) than v1, but comes with a small performance drawback (~5% imgs/sec) according to Nvidia.

Intended uses & limitations

You can use the raw model for image classification. See the model hub to look for fine-tuned versions on a task that interests you.

How to use

Here is how to use this model to classify an image of the COCO 2017 dataset into one of the 1,000 ImageNet classes:

from transformers import AutoImageProcessor, ResNetForImageClassification
import torch
from datasets import load_dataset

dataset = load_dataset("huggingface/cats-image")
image = dataset["test"]["image"][0]

processor = AutoImageProcessor.from_pretrained("microsoft/resnet-50")
model = ResNetForImageClassification.from_pretrained("microsoft/resnet-50")

inputs = processor(image, return_tensors="pt")

with torch.no_grad():
    logits = model(**inputs).logits

# model predicts one of the 1000 ImageNet classes
predicted_label = logits.argmax(-1).item()
print(model.config.id2label[predicted_label])

For more code examples, we refer to the documentation.

BibTeX entry and citation info

@inproceedings{he2016deep,
  title={Deep residual learning for image recognition},
  author={He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian},
  booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition},
  pages={770--778},
  year={2016}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:d0f0d678d21d9c08ffb757615976d638de1d4cb8&dn=microsoft_resnet-50

Open magnet in torrent client · infohash d0f0d678d21d9c08ffb757615976d638de1d4cb8

Files & hashes

PathSizesha1sha256
README.md2.6 KB (2,642 B)e72576c9e45b4d1b3def875d65a5dbd117f2d38e04d061880708f068399982df268dcbf26c221847a3fe5c20053b209af594bd04
config.json67.9 KB (69,556 B)30289c9792e668d73c991829c8842977e2b90539a1be0f56d516d0b55f9844ce0fbfe5fb359195cba6c6c102d41ae6c202c84d5e
model.safetensors97.7 MB (102,482,854 B)5993c2a85383a0f3965d0674d646a4b031adb8fd9c6061af1f450bb0847e529fd742aa5066017be379c71bbf5546b198e5b13a1e
preprocessor_config.json266 B (266 B)9a46cca81138ce49069d63f688ae5750882df07efd575b890da5a949493e1d1e7a70bfcb9e4b99fe444004d2dbfa253add254741
pytorch_model.bin97.8 MB (102,567,489 B)1fbcb775b587b3107ed5658b856fe5186793094cff8163a1323333126706d649ce73ecd76e45d241b42d623dea6c723690cafe07

Cite this release

Canonical URL
https://aiseedbank.org/models/microsoft_resnet-50/
Slug
microsoft_resnet-50
Infohash
d0f0d678d21d9c08ffb757615976d638de1d4cb8
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: microsoft_resnet-50.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorymicrosoft/resnet-50
Revision (pinned)34c2154c194f829b11125337b98c8f5f9965ff19
Fetched at2026-09-04T02:46:19Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T02:46:23Z

apache-2.0195.6 MB (205,122,807 bytes)transformerspytorchjaxsafetensorsresnetimage-classificationvisionendpoints_compatible1 language (tf)paper: 1512.03385