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

← All models

facebook_convnextv2-base-22k-384

facebook · 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:


ConvNeXt V2 (base-sized model)

ConvNeXt V2 model pretrained using the FCMAE framework and fine-tuned on the ImageNet-22K dataset at resolution 384x384. It was introduced in the paper ConvNeXt V2: Co-designing and Scaling ConvNets with Masked Autoencoders by Woo et al. and first released in this repository.

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

Model description

ConvNeXt V2 is a pure convolutional model (ConvNet) that introduces a fully convolutional masked autoencoder framework (FCMAE) and a new Global Response Normalization (GRN) layer to ConvNeXt. ConvNeXt V2 significantly improves the performance of pure ConvNets on various recognition benchmarks.

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, ConvNextV2ForImageClassification
import torch
from datasets import load_dataset

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

preprocessor = AutoImageProcessor.from_pretrained("facebook/convnextv2-base-22k-384")
model = ConvNextV2ForImageClassification.from_pretrained("facebook/convnextv2-base-22k-384")

inputs = preprocessor(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

@article{DBLP:journals/corr/abs-2301-00808,
  author    = {Sanghyun Woo and
               Shoubhik Debnath and
               Ronghang Hu and
               Xinlei Chen and
               Zhuang Liu and
               In So Kweon and
               Saining Xie},
  title     = {ConvNeXt {V2:} Co-designing and Scaling ConvNets with Masked Autoencoders},
  journal   = {CoRR},
  volume    = {abs/2301.00808},
  year      = {2023},
  url       = {https://doi.org/10.48550/arXiv.2301.00808},
  doi       = {10.48550/arXiv.2301.00808},
  eprinttype = {arXiv},
  eprint    = {2301.00808},
  timestamp = {Tue, 10 Jan 2023 15:10:12 +0100},
  biburl    = {https://dblp.org/rec/journals/corr/abs-2301-00808.bib},
  bibsource = {dblp computer science bibliography, https://dblp.org}
}

Magnet link

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

magnet:?xt=urn:btih:d1fe8123b8ea61c093aab24446ac49d28228165b&dn=facebook_convnextv2-base-22k-384

Open magnet in torrent client · infohash d1fe8123b8ea61c093aab24446ac49d28228165b

Files & hashes

PathSizesha1sha256
README.md3.3 KB (3,374 B)2820f9e4299b55993018c3b2b544e57b9d7f718bb38ca20703c5db19d1a717a65b2155f2059bb7e6dd4753d09bbf79c193476583
config.json68.1 KB (69,727 B)5fe7e310edf9e15d36a528f2a20f4e2a77f8a942dac818f34972086f8171c444adac7752e13466b201eee2e248768597aa114732
model.safetensors338.5 MB (354,917,376 B)fab04d2cd263ba75f08c79064cc115c0dee5da0870dd4eb0d73cbad0f93236564e093cec20ab76a877d2e4d155512097ebf06fd9
preprocessor_config.json352 B (352 B)d3f3691f3f0b4e5f22ebb25879c4ffed44be05bf65f684f944a19b334fdde9fefac90a7ad61a614041de60ac1cf89ac2311e8776
pytorch_model.bin338.6 MB (354,998,778 B)85d98f10f2a86980eea527ca62c9b6be459041e27004bf3ae869324a6f974b8f3111347baf483ab55c07b9687d87a0f0bf0efe42

Cite this release

Canonical URL
https://aiseedbank.org/models/facebook_convnextv2-base-22k-384/
Slug
facebook_convnextv2-base-22k-384
Infohash
d1fe8123b8ea61c093aab24446ac49d28228165b
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: facebook_convnextv2-base-22k-384.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryfacebook/convnextv2-base-22k-384
Revision (pinned)53ec0af6e1bd11bf7eba3e9131d29b69625accf3
Fetched at2026-09-03T22:30:31Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T22:30:40Z

apache-2.0677.1 MB (709,989,607 bytes)transformerspytorchsafetensorsconvnextv2image-classificationvisionendpoints_compatiblepaper: 2301.00808