NEWVectors or files. Pick a path.Start →

    AI Model Hub

    Browse AI models for multimodal decomposition and recomposition pipelines: plug any model into your extractors.

    16,958 models available

    Showing 1-24 of 16,958 models

    Featured Models

    Benchmarked
    HFVisual Embeddings

    openai/clip-vit-large-patch14

    Contrastive Language-Image Pre-Training for zero-shot visual understanding

    6.3M
    3 benchmarks
    HFVisual Embeddings

    google/siglip-base-patch16-224

    Sigmoid Loss for Language Image Pre-Training, efficient contrastive learning

    1.4M
    3 benchmarks
    HFVisual Embeddings

    google/siglip2-giant-opt-patch16-384

    Multilingual vision-language encoder with dense features and localization

    2.6M
    2 benchmarks
    HFVisual Embeddings

    facebook/dinov2-large

    Self-supervised vision foundation model producing all-purpose visual features

    799K
    2 benchmarks
    PyTorchVisual Embeddings

    facebook/dinov3-large

    Next-generation self-supervised vision model with Gram anchoring and 6.7B scaling

    450K
    1 benchmarks
    HFVisual Embeddings

    laion/CLIP-ViT-bigG-14-laion2B-39B-b160k

    Open-source CLIP trained on 2B image-text pairs at giant scale

    77K
    2 benchmarks
    Sentence Similarity

    sentence-transformers/all-MiniLM-L6-v2

    255.1M
    5,320
    sentence-transformers
    Fill Mask

    google-bert/bert-base-uncased

    77.7M
    2,801
    transformers
    Feature Extraction

    BAAI/bge-small-en-v1.5

    68.8M
    540
    sentence-transformers
    Sentence Similarity

    sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2

    46.7M
    1,359
    sentence-transformers
    Sentence Similarity

    BAAI/bge-m3

    37.1M
    3,446
    sentence-transformers
    Sentence Similarity

    sentence-transformers/all-mpnet-base-v2

    24.6M
    1,345
    sentence-transformers
    Translation

    google-t5/t5-small

    23.0M
    595
    transformers
    Text Generation

    Qwen/Qwen3-0.6B

    22.5M
    1,559
    transformers
    Zero Shot Image Classification

    openai/clip-vit-base-patch32

    20.4M
    1,048
    transformers
    Fill Mask

    FacebookAI/xlm-roberta-base

    20.4M
    889
    transformers
    Image Classification

    timm/mobilenetv3_small_100.lamb_in1k

    18.6M
    102
    timm
    Text Classification

    BAAI/bge-reranker-v2-m3

    18.2M
    1,148
    sentence-transformers
    Sentence Similarity

    nomic-ai/nomic-embed-text-v1.5

    16.6M
    895
    sentence-transformers
    Text Generation

    trl-internal-testing/tiny-Qwen2ForCausalLM-2.5

    16.6M
    20
    transformers
    Text Generation

    openai-community/gpt2

    14.4M
    3,471
    transformers
    Feature Extraction

    BAAI/bge-large-en-v1.5

    13.8M
    718
    sentence-transformers
    Text Generation

    Qwen/Qwen3-8B

    13.7M
    1,331
    transformers
    Image Text To Text

    Qwen/Qwen3.6-35B-A3B-FP8

    12.9M
    360
    transformers
    Text Generation

    unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF

    12.8M
    934
    transformers
    Image Text To Text

    Qwen/Qwen3.5-9B

    12.6M
    1,879
    transformers
    Sentence Similarity

    intfloat/multilingual-e5-small

    12.2M
    393
    sentence-transformers
    Feature Extraction

    BAAI/bge-base-en-v1.5

    12.0M
    466
    sentence-transformers
    Automatic Speech Recognition

    jonatasgrosman/wav2vec2-large-xlsr-53-japanese

    12.0M
    62
    transformers
    Image Classification

    timm/efficientnet_b3.ra2_in1k

    11.9M
    5
    timm
    1 / 707

    Choosing a model for multimodal retrieval

    Which of these models does Mixpeek actually run?

    Nine, and they are not the same thing as the catalog. The managed extractors run intfloat/multilingual-e5-large-instruct for text (1024-d), google/siglip-base-patch16-224 for images (768-d), google/vertex-multimodal (1408-d) and google/gemini-embedding-2 (3072-d) for unified multimodal, insightface ArcFace for faces (512-d), CLAP for audio fingerprints (512-d), facebook/dinov2-base for visual similarity and jinaai/jina-embeddings-v2-base-code for code (both 768-d, inside the web scraper). The rerank retriever stage runs BAAI/bge-reranker-v2-m3. Everything else in this catalog is documented here, not hosted here.

    Can I run any model from this catalog on Mixpeek?

    Not by naming it. No extractor takes a Hugging Face model id as a parameter, so there is no field to put one in. Three paths do work. Use a managed extractor and get the model it runs. Run the model on your own hardware and upsert the vectors through POST /v1/namespaces/{namespace_id}/documents/upsert, which stores them beside everything else. Or on Enterprise, upload the weights through POST /v1/namespaces/{namespace_id}/models, which accepts the huggingface format, and load them from a custom plugin.

    Should I use a text embedding model or a multimodal one?

    Ask whether a text query has to reach a non-text asset directly. If your video is searchable through its transcript and your images through their captions, a text model over that generated text is cheaper and usually more accurate, because retrieval quality on words is a solved problem and cross-modal alignment is not. If the query is 'find the shot that looks like this' or the visual content carries meaning no caption records, you need a shared space and a multimodal model. Most production systems run both indexes rather than choosing.

    What does the embedding dimension cost to store?

    A float32 vector is 4 bytes per dimension, so a million items costs 4 GB at 1024 dimensions, 3 GB at 768, and 12 GB at 3072. That is before any quantization and before payload. Models trained with Matryoshka representation learning, such as Gemini Embedding 2, let you truncate to a shorter prefix without re-encoding, so the width becomes an index-time decision rather than a model-selection one. Dimensions are fixed at namespace creation in Mixpeek, so changing a width later means re-indexing.

    Why does the download count on a model page differ from HuggingFace?

    It is the monthly figure from the HuggingFace API at the time of the last sync, not a live read, so it lags. The sync date is on each model page. Download count is a popularity signal and a poor quality signal: the most-downloaded model in a category is frequently an older checkpoint that a tutorial pinned years ago.

    All models

    Every model page in one place, 374 in total.