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.

    17,271 models available

    Showing 25-48 of 17,271 models

    Automatic Speech Recognition

    argmaxinc/whisperkit-coreml

    11.6M
    205
    whisperkit
    Text To Speech

    hexgrad/Kokoro-82M

    11.5M
    6,823
    Feature Extraction

    BAAI/bge-base-en-v1.5

    11.1M
    470
    sentence-transformers
    Text Generation

    Qwen/Qwen2.5-7B-Instruct

    11.0M
    1,585
    transformers
    Text Generation

    nvidia/Qwen3.6-35B-A3B-NVFP4

    10.2M
    590
    Model Optimizer
    Sentence Similarity

    sentence-transformers/paraphrase-multilingual-mpnet-base-v2

    9.4M
    495
    sentence-transformers
    Automatic Speech Recognition

    pyannote/speaker-diarization-3.1

    9.3M
    3,404
    pyannote-audio
    Text Generation

    facebook/opt-125m

    9.1M
    295
    transformers
    Audio Classification

    laion/clap-htsat-fused

    8.7M
    128
    transformers
    Fill Mask

    FacebookAI/roberta-base

    8.6M
    640
    transformers
    Image Text To Text

    google/gemma-4-26B-A4B-it

    8.3M
    1,481
    transformers
    Image Text To Text

    google/gemma-4-31B-it

    8.3M
    3,732
    transformers
    Image Text To Text

    Qwen/Qwen2.5-VL-7B-Instruct

    7.9M
    1,698
    transformers
    Image Text To Text

    Qwen/Qwen3.6-27B-FP8

    7.5M
    354
    transformers
    Text To Speech

    coqui/XTTS-v2

    7.4M
    3,771
    coqui
    Text Generation

    Qwen/Qwen2.5-1.5B-Instruct

    7.3M
    818
    transformers
    Image Text To Text

    Qwen/Qwen3.5-4B

    7.2M
    891
    transformers
    Zero Shot Image Classification

    openai/clip-vit-large-patch14

    7.2M
    2,074
    transformers
    Feature Extraction

    Qwen/Qwen3-Embedding-0.6B

    7.2M
    1,183
    sentence-transformers
    Feature Extraction

    intfloat/multilingual-e5-large

    7.1M
    1,247
    sentence-transformers
    Fill Mask

    distilbert/distilbert-base-uncased

    7.1M
    1,156
    transformers
    Automatic Speech Recognition

    openai/whisper-large-v3-turbo

    7.0M
    3,298
    transformers
    Sentence Similarity

    intfloat/multilingual-e5-base

    6.8M
    383
    sentence-transformers
    Text Generation

    Qwen/Qwen2.5-3B-Instruct

    6.8M
    562
    transformers
    2 / 720

    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, 375 in total.