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

← All models

jinaai_jina-reranker-m0

jinaai · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

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.


pipeline_tag: text-classification tags:

  • sentence-transformers
  • vidore
  • reranker
  • qwen2_vl language:
  • multilingual base_model:
  • Qwen/Qwen2-VL-2B-Instruct inference: false license: cc-by-nc-4.0 library_name: transformers



Trained by Jina AI.

GGUF| Blog | API | AWS | Azure | GCP |[Arxiv](coming soon)

jina-reranker-m0: Multilingual Multimodal Document Reranker

Intended Usage & Model Info

jina-reranker-m0 is our new multilingual multimodal reranker model for ranking visual documents across multiple languages: it accepts a query alongside a collection of visually rich document images, including pages with text, figures, tables, infographics, and various layouts across multiple domains and over 29 languages. It outputs a ranked list of documents ordered by their relevance to the input query. Compared to jina-reranker-v2-base-multilingual, jina-reranker-m0 also improves text reranking for multilingual content, long documents, and code searching tasks.

Architecture

jina-reranker-m0 is built on a decoder-only vision language model architecture, specifically:

  • Base model: Qwen2-VL-2B-Instruct, utilizing its vision encoder, projection layer, and language model
  • Adaptation: Fine-tuned the language model with LoRA (Low-Rank Adaptation) techniques
  • Output layer: Post-trained MLP head to generate ranking scores measuring query-document relevance
  • Training objective: Optimized with pairwise and listwise ranking losses to produce discriminative relevance scores

This represents a significant architectural shift from our previous cross-encoder models:

jina-reranker-m0 jina-reranker-v2
Architecture Vision Language Model Cross-Encoder
Base model Qwen2-VL-2B Jina-XLM-RoBERTa
Parameters 2.4 B 278 M
Max context length 10,240 tokens (query + document) 8,192 tokens
Image processing 768 × 28 × 28 patches (dynamic resolution)
Multilingual support 29+ languages Multiple languages
Tasks supported Text2Text, Text2Image,
Image2Text, Text2Mixed
Text2Text

Capabilities

  • Multimodal Understanding: Processes both textual and visual content, including pages with mixed text, figures, tables, and various layouts
  • Long Context Processing: Handles up to 10K tokens, enabling reranking of lengthy documents
  • Dynamic Image Resolution: Supports images from 56×56 pixels up to 4K resolution with dynamic patch processing
  • Multilingual Support: Effectively reranks content across 29+ languages, including bidirectional language pairs
  • Zero-shot Domain Transfer: Performs well on unseen domains and document types without specific fine-tuning
  • Code Search: Enhanced capabilities for programming language search and technical document ranking

Compared to jina-reranker-v2-base-multilingual, jina-reranker-m0 significantly improves text reranking for multilingual content, long documents, and code searching tasks, while adding powerful new capabilities for visual document understanding.

Usage

  1. The easiest way to use jina-reranker-m0 is to call Jina AI's Reranker API.

    curl -X POST \
      https://api.jina.ai/v1/rerank \
      -H "Content-Type: application/json" \
      -H "Authorization: Bearer JINA_API_KEY" \
      -d '{
      "model": "jina-reranker-m0",
      "query": "slm markdown",
      "documents": [
        {
          "image": "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/handelsblatt-preview.png"
        },
        {
          "image": "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png"
        },
        {
          "image": "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/wired-preview.png"
        },
        {
          "text": "We present ReaderLM-v2, a compact 1.5 billion parameter language model designed for efficient web content extraction. Our model processes documents up to 512K tokens, transforming messy HTML into clean Markdown or JSON formats with high accuracy -- making it an ideal tool for grounding large language models. The models effectiveness results from two key innovations: (1) a three-stage data synthesis pipeline that generates high quality, diverse training data by iteratively drafting, refining, and critiquing web content extraction; and (2) a unified training framework combining continuous pre-training with multi-objective optimization. Intensive evaluation demonstrates that ReaderLM-v2 outperforms GPT-4o-2024-08-06 and other larger models by 15-20% on carefully curated benchmarks, particularly excelling at documents exceeding 100K tokens, while maintaining significantly lower computational requirements."
        },
        {
          "image": "https://jina.ai/blog-banner/using-deepseek-r1-reasoning-model-in-deepsearch.webp"
        },
        {
          "text": "数据提取么?为什么不用正则啊,你用正则不就全解决了么?"
        },
        {
          "text": "During the California Gold Rush, some merchants made more money selling supplies to miners than the miners made finding gold."
        },
        {
          "text": "Die wichtigsten Beiträge unserer Arbeit sind zweifach: Erstens führen wir eine neuartige dreistufige Datensynthese-Pipeline namens Draft-Refine-Critique ein, die durch iterative Verfeinerung hochwertige Trainingsdaten generiert; und zweitens schlagen wir eine umfassende Trainingsstrategie vor, die kontinuierliches Vortraining zur Längenerweiterung, überwachtes Feintuning mit spezialisierten Kontrollpunkten, direkte Präferenzoptimierung (DPO) und iteratives Self-Play-Tuning kombiniert. Um die weitere Forschung und Anwendung der strukturierten Inhaltsextraktion zu erleichtern, ist das Modell auf Hugging Face öffentlich verfügbar."
        }
      ],
      "return_documents": false
    }'
    

    You will receive a JSON response with the relevance scores for each document in relation to the query. The response will look like this:

    {
      "model":"jina-reranker-m0",
      "usage": {
        "total_tokens":2813
      },
      "results":[
        {
          "index":1,
          "relevance_score":0.9310624287463884
        },
        {
          "index":4,
          "relevance_score":0.8982678574191957
        },
        {
          "index":0,
          "relevance_score":0.890233167219021
        },
        ...
      ]
    }
    

    The relevance_score field indicates the relevance of each document to the query, with higher scores indicating greater relevance.

  2. You can also use the model programmatically with the sentence_transformers library.

    Firstly, install Sentence Transformers:

    pip install sentence_transformers
    

    Then load the model:

    from sentence_transformers import CrossEncoder
    
    model = CrossEncoder("jinaai/jina-reranker-m0", trust_remote_code=True)
    

    A. Text-to-Text Reranking

    query = "slm markdown"
    documents = [
        "We present ReaderLM-v2, a compact 1.5 billion parameter language model designed for efficient web content extraction. Our model processes documents up to 512K tokens, transforming messy HTML into clean Markdown or JSON formats with high accuracy -- making it an ideal tool for grounding large language models. The models effectiveness results from two key innovations: (1) a three-stage data synthesis pipeline that generates high quality, diverse training data by iteratively drafting, refining, and critiquing web content extraction; and (2) a unified training framework combining continuous pre-training with multi-objective optimization. Intensive evaluation demonstrates that ReaderLM-v2 outperforms GPT-4o-2024-08-06 and other larger models by 15-20% on carefully curated benchmarks, particularly excelling at documents exceeding 100K tokens, while maintaining significantly lower computational requirements.",
        "数据提取么?为什么不用正则啊,你用正则不就全解决了么?",
        "During the California Gold Rush, some merchants made more money selling supplies to miners than the miners made finding gold.",
        "Die wichtigsten Beiträge unserer Arbeit sind zweifach: Erstens führen wir eine neuartige dreistufige Datensynthese-Pipeline namens Draft-Refine-Critique ein, die durch iterative Verfeinerung hochwertige Trainingsdaten generiert; und zweitens schlagen wir eine umfassende Trainingsstrategie vor, die kontinuierliches Vortraining zur Längenerweiterung, überwachtes Feintuning mit spezialisierten Kontrollpunkten, direkte Präferenzoptimierung (DPO) und iteratives Self-Play-Tuning kombiniert. Um die weitere Forschung und Anwendung der strukturierten Inhaltsextraktion zu erleichtern, ist das Modell auf Hugging Face öffentlich verfügbar.",
    ]
    
    rankings = model.rank(query, documents)
    print(rankings)
    # [{'corpus_id': 0, 'score': 0.6875}, {'corpus_id': 2, 'score': 0.5938},
    #  {'corpus_id': 3, 'score': 0.4590}, {'corpus_id': 1, 'score': 0.4434}]
    

    B. Text-to-Image Reranking

    query = "slm markdown"
    documents = [
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/handelsblatt-preview.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/wired-preview.png",
        "https://jina.ai/blog-banner/using-deepseek-r1-reasoning-model-in-deepsearch.webp",
    ]
    
    scores = model.predict([(query, doc) for doc in documents])
    print(scores)
    # [0.4980 0.7813 0.4824 0.5039]
    

    C. Image-to-Text Reranking

    query = "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png"
    documents = [
        "We present ReaderLM-v2, a compact 1.5 billion parameter language model designed for efficient web content extraction. Our model processes documents up to 512K tokens, transforming messy HTML into clean Markdown or JSON formats with high accuracy -- making it an ideal tool for grounding large language models. The models effectiveness results from two key innovations: (1) a three-stage data synthesis pipeline that generates high quality, diverse training data by iteratively drafting, refining, and critiquing web content extraction; and (2) a unified training framework combining continuous pre-training with multi-objective optimization. Intensive evaluation demonstrates that ReaderLM-v2 outperforms GPT-4o-2024-08-06 and other larger models by 15-20% on carefully curated benchmarks, particularly excelling at documents exceeding 100K tokens, while maintaining significantly lower computational requirements.",
        "数据提取么?为什么不用正则啊,你用正则不就全解决了么?",
        "During the California Gold Rush, some merchants made more money selling supplies to miners than the miners made finding gold.",
        "Die wichtigsten Beiträge unserer Arbeit sind zweifach: Erstens führen wir eine neuartige dreistufige Datensynthese-Pipeline namens Draft-Refine-Critique ein, die durch iterative Verfeinerung hochwertige Trainingsdaten generiert; und zweitens schlagen wir eine umfassende Trainingsstrategie vor, die kontinuierliches Vortraining zur Längenerweiterung, überwachtes Feintuning mit spezialisierten Kontrollpunkten, direkte Präferenzoptimierung (DPO) und iteratives Self-Play-Tuning kombiniert. Um die weitere Forschung und Anwendung der strukturierten Inhaltsextraktion zu erleichtern, ist das Modell auf Hugging Face öffentlich verfügbar.",
    ]
    
    scores = model.predict([(query, doc) for doc in documents])
    print(scores)
    # [0.9805 0.7773 0.5664 0.9297]
    

    D. Image-to-Image Reranking

    query = "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png"
    documents = [
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/handelsblatt-preview.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/wired-preview.png",
        "https://jina.ai/blog-banner/using-deepseek-r1-reasoning-model-in-deepsearch.webp",
    ]
    
    scores = model.predict([(query, doc) for doc in documents])
    print(scores)
    # [0.6250 0.9922 0.8125 0.7930]
    
  3. Or you can use custom methods via trust_remote_code=True using the transformers library.

    Before you start, install the transformers libraries:

    pip install transformers >= 4.47.3
    

    If you run it on a GPU that support FlashAttention-2. By 2024.9.12, it supports Ampere, Ada, or Hopper GPUs (e.g., A100, RTX 3090, RTX 4090, H100),

    pip install flash-attn --no-build-isolation
    

    And then use the following code snippet to load the model:

    from transformers import AutoModel
    
    # comment out the flash_attention_2 line if you don't have a compatible GPU
    model = AutoModel.from_pretrained(
        'jinaai/jina-reranker-m0',
        torch_dtype="auto",
        trust_remote_code=True,
        attn_implementation="flash_attention_2"
    )
    
    model.to('cuda')  # or 'cpu' if no GPU is available
    model.eval()
    

    Now you can use the model function compute_score to compute the relevance scores for a query and a list of documents. The function takes a list of sentence pairs, where each pair consists of a query and a document. The model will return a list of scores indicating the relevance of each document to the query.

    A. Visual Documents Reranking

    For handling the image documents, you can use the following code snippet:

    # Example query and documents
    query = "slm markdown"
    documents = [
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/handelsblatt-preview.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/wired-preview.png",
        "https://jina.ai/blog-banner/using-deepseek-r1-reasoning-model-in-deepsearch.webp"
    ]
    
    # construct sentence pairs
    image_pairs = [[query, doc] for doc in documents]
    
    scores = model.compute_score(image_pairs, max_length=2048, doc_type="image")
    # [0.49375027418136597, 0.7889736890792847, 0.47813892364501953, 0.5210812091827393]
    

    B. Textual Documents Reranking

    query = "slm markdown"
    documents = [
        "We present ReaderLM-v2, a compact 1.5 billion parameter language model designed for efficient web content extraction. Our model processes documents up to 512K tokens, transforming messy HTML into clean Markdown or JSON formats with high accuracy -- making it an ideal tool for grounding large language models. The models effectiveness results from two key innovations: (1) a three-stage data synthesis pipeline that generates high quality, diverse training data by iteratively drafting, refining, and critiquing web content extraction; and (2) a unified training framework combining continuous pre-training with multi-objective optimization. Intensive evaluation demonstrates that ReaderLM-v2 outperforms GPT-4o-2024-08-06 and other larger models by 15-20% on carefully curated benchmarks, particularly excelling at documents exceeding 100K tokens, while maintaining significantly lower computational requirements.",
        "数据提取么?为什么不用正则啊,你用正则不就全解决了么?",
        "During the California Gold Rush, some merchants made more money selling supplies to miners than the miners made finding gold.",
        "Die wichtigsten Beiträge unserer Arbeit sind zweifach: Erstens führen wir eine neuartige dreistufige Datensynthese-Pipeline namens Draft-Refine-Critique ein, die durch iterative Verfeinerung hochwertige Trainingsdaten generiert; und zweitens schlagen wir eine umfassende Trainingsstrategie vor, die kontinuierliches Vortraining zur Längenerweiterung, überwachtes Feintuning mit spezialisierten Kontrollpunkten, direkte Präferenzoptimierung (DPO) und iteratives Self-Play-Tuning kombiniert. Um die weitere Forschung und Anwendung der strukturierten Inhaltsextraktion zu erleichtern, ist das Modell auf Hugging Face öffentlich verfügbar.",
    ]
    
    # construct sentence pairs
    text_pairs = [[query, doc] for doc in documents]
    
    scores = model.compute_score(text_pairs, max_length=1024, doc_type="text")
    

    The scores will be a list of floats, where each float represents the relevance score of the corresponding document to the query. Higher scores indicate higher relevance. For instance the returning scores in this case will be:

    [0.6839263439178467, 0.4432148039340973, 0.5904013514518738, 0.45481112599372864]
    

    C. Image Querying for Textual Documents

    The model also supports querying textual documents with an image query. You can use the following code snippet:

    query = "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png"
    
    documents = [
        "We present ReaderLM-v2, a compact 1.5 billion parameter language model designed for efficient web content extraction. Our model processes documents up to 512K tokens, transforming messy HTML into clean Markdown or JSON formats with high accuracy -- making it an ideal tool for grounding large language models. The models effectiveness results from two key innovations: (1) a three-stage data synthesis pipeline that generates high quality, diverse training data by iteratively drafting, refining, and critiquing web content extraction; and (2) a unified training framework combining continuous pre-training with multi-objective optimization. Intensive evaluation demonstrates that ReaderLM-v2 outperforms GPT-4o-2024-08-06 and other larger models by 15-20% on carefully curated benchmarks, particularly excelling at documents exceeding 100K tokens, while maintaining significantly lower computational requirements.",
        "数据提取么?为什么不用正则啊,你用正则不就全解决了么?",
        "During the California Gold Rush, some merchants made more money selling supplies to miners than the miners made finding gold.",
        "Die wichtigsten Beiträge unserer Arbeit sind zweifach: Erstens führen wir eine neuartige dreistufige Datensynthese-Pipeline namens Draft-Refine-Critique ein, die durch iterative Verfeinerung hochwertige Trainingsdaten generiert; und zweitens schlagen wir eine umfassende Trainingsstrategie vor, die kontinuierliches Vortraining zur Längenerweiterung, überwachtes Feintuning mit spezialisierten Kontrollpunkten, direkte Präferenzoptimierung (DPO) und iteratives Self-Play-Tuning kombiniert. Um die weitere Forschung und Anwendung der strukturierten Inhaltsextraktion zu erleichtern, ist das Modell auf Hugging Face öffentlich verfügbar.",
    ]
    # reverse the order of the query and document
    image_pairs = [[query, doc] for doc in documents]
    scores = model.compute_score(image_pairs, max_length=2048, query_type="image", doc_type="text")
    
    # [0.98099285364151, 0.7701883316040039, 0.5637142062187195, 0.9308615922927856]
    

    D. Image Querying for Image Documents

    The model also supports querying image documents with an image query. You can use the following code snippet:

    query = "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png"
    
    documents = [
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/handelsblatt-preview.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/paper-11.png",
        "https://raw.githubusercontent.com/jina-ai/multimodal-reranker-test/main/wired-preview.png",
        "https://jina.ai/blog-banner/using-deepseek-r1-reasoning-model-in-deepsearch.webp"
    ]
    
    image_pairs = [[query, doc] for doc in documents]
    scores = model.compute_score(image_pairs, max_length=2048, doc_type="image", query_type='image')
    # [0.6275860667228699, 0.9922324419021606, 0.8090347051620483, 0.7941296100616455]
    

Model Performance

Performance of the jina-reranker-m0 on ViDoRe, MBEIR, and Winoground visual retrieval benchmarks showcases its capabilities across diverse multimodal retrieval tasks spanning multiple domains and languages. Each dot represents performance scores for different types of visual documents. The boxplots illustrate the distribution of these scores, with the highlighted numbers indicating the average (mean) performance. For complete benchmark results, please refer to the appendix of this post.

We conduct extensive evaluations on the performance of the model across various visual retrieval benchmarks.

As shown in the figure above, the performance of the jina-reranker-m0 on ViDoRe, MBEIR, and Winoground visual retrieval benchmarks showcases its capabilities across diverse multimodal retrieval tasks spanning multiple domains and languages. Each dot represents performance scores for different types of visual documents. The boxplots illustrate the distribution of these scores, with the highlighted numbers indicating the average (mean) performance.

We also evaluate the performance of the jina-reranker-m0 across four text-to-text reranking benchmarks. Each benchmark may include multiple datasets, languages, or tasks, represented by individual dots inside the boxplot. The boxplot shows the distribution of these scores, with the highlighted number showing the average (mean) performance. While most benchmarks use NDCG@10 as their performance metric, MKQA uses recall@10 instead, as MKQA's annotation data doesn't support NDCG calculation (the official evaluation uses recall, which determines document relevance through heuristics).

For complete benchmark results, please refer to the online results table.

Contact

Join our Discord community and chat with other community members about ideas.

License

jina-reranker-m0 is listed on AWS & Azure. If you need to use it beyond those platforms or on-premises within your company, note that the models is licensed under CC BY-NC 4.0. For commercial usage inquiries, feel free to contact us.

Magnet link

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

magnet:?xt=urn:btih:e7634231584fcfece96d1d915c744d1616196edb&dn=jinaai_jina-reranker-m0

Open magnet in torrent client · infohash e7634231584fcfece96d1d915c744d1616196edb

Files & hashes

PathSizesha1sha256
README.md23.7 KB (24,301 B)886c7051722c7a2dfd2f4c4002957352862974011481577a183b5a76ffd2153ec15aa53c7c59e68f6b9ae2ed073d1033239448a5
added_tokens.json392 B (392 B)caa81304af029feb531f1fe80a096dc539ea01537fa54985b58718a8fdb4f4d97484c4bd908db114847675e4bf3afe3e1d5d7bd4
chat_template.jinja808 B (808 B)2b2edf64f65ed9413e2e9a38b841225cc33758e54ac7f9da4bf4242a5943c533fc3005bb9c4a462e8db6cdfe107bd0b921a728a3
config.json1.1 KB (1,159 B)9e494229a341e044318052b3d7db8c78adbf7ae00471a8a57077a424777fad69553806a856b400be4438d9900365bf5265845423
config_sentence_transformers.json229 B (229 B)ea343919068d3b312981415857acfa9ab865787bbbd74dce3dd5d7fd1529b78bcbde3aa3bdcca1f592d78d1c89140eee1cbc96f3
custom_transformer.py1.5 KB (1,587 B)4dfb88bcd2177aa4063cac170e11caa6603a8975f560dd38c6f0b969872951a118a0a0fea070aed5324a9294510e4476374b3881
generation_config.json261 B (261 B)f4cec95badccaadda5ccb87944d9a6f174f713e46f9bca8060d37e56abde66210881f05fdd7423fdd36baf0b8b2f1484dabdcdeb
merges.txt1.6 MB (1,671,853 B)31349551d90c7606f325fe0f11bbb8bd5fa0d7c78831e4f1a044471340f7c0a83d7bd71306a5b867e95fd870f74d0c5308a904d5
model.safetensors4.55 GB (4,889,523,546 B)a0ce5b29ff7b432d6268e395897d39b9021a977d1d0a7b5fd0966512850481633159f357450dc738665870c9ac4f2b2da252f5e2
modeling.py9.9 KB (10,115 B)db47a079682fe723b307651139a63aad4497e8a5f775475ec152f685f257ba71bd629a889e2d040c35c045325f0a057113130921
modules.json115 B (115 B)709e57b9e6d5a20c10759914e0fc1afe1ff0921c5e22ec472344bbb5eb1b0304ebb68b5d7752a996b72955d25f3e2bbde4beeb5a
preprocessor_config.json314 B (314 B)e054b5619d20bec7b6cc5fd20dc6033b331abac932a5ffdcdcbb14babafeb78f0fdae3e3cfd892ebe27b278afb11f0efb8e9bec8
sentence_bert_config.json524 B (524 B)197c2059ed28a42ea75c3416da59bcc3d6c5547d1e820a72c5c58a8cf3618a3d01913cbdd592aaba9de396a71a9373108398e2fd
special_tokens_map.json613 B (613 B)ac23c0aaa2434523c494330aeb79c5839537810376862e765266b85aa9459767e33cbaf13970f327a0e88d1c65846c2ddd3a1ecd
tokenizer.json10.9 MB (11,420,371 B)d6287ad6f236788f7139fe58f0935ce1c771e96d091aa7594dc2fcfbfa06b9e3c22a5f0562ac14f30375c13af7309407a0e67b8a
tokenizer_config.json3.2 KB (3,281 B)b504016a257c3c8e0b5a3725a05ce85674b778f4e12bd28314cd4bda68af6eaa0ad2fcdc10e247278e3c722ea77571ca47afd596
vocab.json2.6 MB (2,776,833 B)4783fe10ac3adce15ac8f358ef5462739852c569ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910

Cite this release

Canonical URL
https://aiseedbank.org/models/jinaai_jina-reranker-m0/
Slug
jinaai_jina-reranker-m0
Infohash
e7634231584fcfece96d1d915c744d1616196edb
License
cc-by-nc-4.0
Signing key fingerprint
85a3b32c3712427b

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

Provenance

Upstream repositoryjinaai/jina-reranker-m0
Revision (pinned)94bfe0aeb2d4dd7978362699cddd5893d4e0adc8
Fetched at2026-09-02T04:37:22Z
License at fetchcc-by-nc-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:38:08Z

cc-by-nc-4.0non-commercial use only4.57 GB (4,905,436,302 bytes)transformerssafetensorsqwen2_vlfeature-extractionsentence-transformersvidorererankertext-classificationcustom_codemultilingual