Model reference · open weights

aim-large-patch14-224

Available as managed deployment Licence fee Embeddings apple Image embed 1 variants 1k dl/mo

aim-large-patch14-224 is an open-weight embedding model from apple. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released byapple
TypeEmbedding models
TaskImage embed
Parameters (lead)309M
Runs withtransformers
Released2024-10-29
Popularity1k downloads / month
LicenceCommercial licence needed

About

What aim-large-patch14-224 is

[AIMv2 Paper] [BibTeX]

We introduce the AIMv2 family of vision models pre-trained with a multimodal autoregressive objective. AIMv2 pre-training is simple and straightforward to train and scale effectively. Some AIMv2 highlights include:

  1. Outperforms OAI CLIP and SigLIP on the majority of multimodal understanding benchmarks.
  2. Outperforms DINOv2 on open-vocabulary object detection and referring expression comprehension.
  3. Exhibits strong recognition performance with AIMv2-3B achieving 89.5% on ImageNet using a frozen trunk.
Read the full model card

Usage

PyTorch

import requests
from PIL import Image
from transformers import AutoImageProcessor, AutoModel

url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)

processor = AutoImageProcessor.from_pretrained(
    "apple/aimv2-large-patch14-224",
    revision="ac764a25c832c7dc5e11871daa588e98e3cdbfb7",
)
model = AutoModel.from_pretrained(
    "apple/aimv2-large-patch14-224",
    revision="ac764a25c832c7dc5e11871daa588e98e3cdbfb7",
    trust_remote_code=True,
)

inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)

JAX

import requests
from PIL import Image
from transformers import AutoImageProcessor, FlaxAutoModel

url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)

processor = AutoImageProcessor.from_pretrained(
    "apple/aimv2-large-patch14-224",
)
model = FlaxAutoModel.from_pretrained(
    "apple/aimv2-large-patch14-224",
    trust_remote_code=True,
)

inputs = processor(images=image, return_tensors="jax")
outputs = model(**inputs)

Citation

If you find our work useful, please consider citing us as:

@misc{fini2024multimodalautoregressivepretraininglarge,
  author      = {Fini, Enrico and Shukor, Mustafa and Li, Xiujun and Dufter, Philipp and Klein, Michal and Haldimann, David and Aitharaju, Sai and da Costa, Victor Guilherme Turrisi and Béthune, Louis and Gan, Zhe and Toshev, Alexander T and Eichner, Marcin and Nabi, Moin and Yang, Yinfei and Susskind, Joshua M. and El-Nouby, Alaaeldin},
  url         = {https://arxiv.org/abs/2411.14402},
  eprint      = {2411.14402},
  eprintclass = {cs.CV},
  eprinttype  = {arXiv},
  title       = {Multimodal Autoregressive Pre-training of Large Vision Encoders},
  year        = {2024},
}

From the published model card. Full card on the HuggingFace links in the sidebar.

Benchmarks

Reported results

As published on the model card — the maker's own numbers, not measured by AxForge.

TaskDatasetMetricScore
Classificationimagenet-1kAccuracy86.600
Classificationinaturalist-18Accuracy76
Classificationcifar10Accuracy99.100
Classificationcifar100Accuracy92.200
Classificationfood101Accuracy95.700
ClassificationdtdAccuracy87.900
Classificationoxford-petsAccuracy96.300
Classificationstanford-carsAccuracy96.300
Classificationcamelyon17Accuracy93.700
Classificationpatch-camelyonAccuracy89.300
Classificationrxrx1Accuracy5.600
ClassificationeurosatAccuracy98.400
ClassificationfmowAccuracy60.700
Classificationdomainnet-infographicAccuracy69

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys aim-large-patch14-224 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (aim-large-patch14-224 below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/embeddings \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"aim-large-patch14-224","input":"text to embed"}'

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms