<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title><![CDATA[Scott Martens - Elasticsearch Labs]]></title>
    <description><![CDATA[Articles and tutorials from the Search team at Elastic]]></description>
    <copyright><![CDATA[© 2026. Elasticsearch B.V. All Rights Reserved]]></copyright>
    <image>
      <title><![CDATA[Scott Martens - Elasticsearch Labs]]></title>
      <url>https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt1121c0bf0e8a6e65/6a88da6340a1841030ef456f/search-labs-thumbnail.png</url>
      <link>https://www.elastic.co/search-labs/author/scott-martens</link>
    </image>
    <link>https://www.elastic.co/search-labs/author/scott-martens</link>
    <atom:link href="https://www.elastic.co/search-labs/rss/author/scott-martens.xml" rel="self" type="application/rss+xml"/>
    <language><![CDATA[en]]></language>
    <lastBuildDate>Mon, 14 Sep 2026 18:33:54 GMT</lastBuildDate>
  <item>
    <title><![CDATA[56% faster, up to 50% better retrieval performance: What's inside Jina's new 600 million parameter listwise reranker]]></title>
    <description><![CDATA[Jina Reranker 3.5 beats v3 by 50%+ on case law, closes the gap with models 7x its size on legal, medical, and financial benchmarks, and beats them outright on structured data. It's a drop-in replacement for v3, with no API changes.]]></description>
    <content:encoded><![CDATA[<p><code>jina-reranker-v3.5</code> is a 600 million parameter reranker that delivers major gains over its predecessor, <a href="https://jina.ai/models/jina-reranker-v3"><code>jina-reranker-v3</code></a>, on legal retrieval, and closes most of the gap to models seven times its size on legal, medical, and financial reranking. On long documents, it runs up to 56% faster than <code>jina-reranker-v3</code> and scores over 50% higher on case law retrieval. It also beats Qwen3-Reranker-4B on the STaRK structured data benchmark."It’s a drop-in replacement for v3 users and requires no changes to the code that accesses the model.</p><h2>What’s a reranker and how does it work?</h2><p>A <em>reranker </em>is an AI model used near the end of an information retrieval pipeline, after other modules have assembled a short list of candidate matches to a query. It’s trained to order the candidate list from best matching to least. Using a specialized model focused purely on ranking candidate matches can improve result quality dramatically.</p><p>Jina AI’s latest rerankers use a technique called <em>late interaction</em>, where queries and documents are encoded separately into lists of token embeddings that reflect each token’s semantics in context and then compared to each other.</p><p>This is an AI analog of lexical and grammatical disambiguation.</p><p>For example, consider the meaning of the word <em>match </em>in these two sentences:</p><ul><li><p>She looked for a match to light the candle.</p></li><li><p>She looked for a match on Tinder.</p></li></ul><p>The first sentence might be a match for queries about matchboxes; the second for queries about romance.</p><p>Transformer-based models do this kind of in-context disambiguation but bring much richer information into the token embeddings they produce. The word <em>match</em> might have a semantic embedding near to words like <em>fire</em> or <em>illumination</em> in the first sentence, while in the second, it might be closer to <em>smartphone</em> or <em>swipe</em>.</p><p>Late interaction rerankers generate these context-enriched token embeddings for both the query and the candidate documents and then compare them to produce sortable scores. They’re completely agnostic about how candidate match lists are created. The reranker works exactly the same when combined with lexical search schemes, like BM25, AI-driven semantic embeddings-based retrieval, or hybrid and federated search systems that may retrieve multiple candidate lists from different sources or using different algorithms. Of course, the results always depend on the quality of the candidates, so a reranker can’t fix bad first-stage retrieval, but it almost always improves whatever you’ve got.</p><p><code>jina-reranker-v3.5</code> is a <em>listwise</em> reranker using the <a href="https://jina.ai/news/jina-reranker-v3-0-6b-listwise-reranker-for-sota-multilingual-retrieval/#:~:text=query%2Ddocument%20interaction%20%22-,last%20but%20not%20late,-.%22%20It%27s%20%22last"><em>last-but-not-late</em></a> technique developed for <code>jina-reranker-v3</code>. The query and a list of candidate matches are passed into the model together and processed in one pass, returning a numerical score for each candidate. This enables the model to use context information from the query and the full candidate list to make sense of the entire input, producing better results because of the richer information available to it.</p><p><code>jina-reranker-v3</code> proved that listwise rerankers with last-but-not-late interaction can compete with the largest models on general reranking benchmarks. Only <code>jina-reranker-v3.5</code> and models with over four billion parameters beat it on <a href="https://mteb-leaderboard.hf.space/benchmark/MTEB(Multilingual%2C%20v2)">Massive Text Embedding Benchmark (MTEB) reranker tasks</a>. However, this approach places strict limits on candidate list sizes. The query and all candidate matches must fit in the input context window of the model.</p><h2>What problems does Jina Reranker v3.5 solve?</h2><p>Despite having frontier-level performance overall, <code>jina-reranker-v3</code> has some notable performance gaps:</p><h3>Domain-specific text retrieval</h3><p><code>jina-reranker-v3</code> was trained on general text corpora and, as a result, it underperforms on important use cases, particularly:</p><ul><li><p>Legal texts, like case law and contract clauses.</p></li><li><p>Medical literature, like clinical trials and patient records.</p></li><li><p>Financial datasets and other texts full of important numbers.</p></li><li><p>Computer programming and IT documentation.</p></li><li><p>Product catalogs full of technical terminology and specifications.</p></li></ul><h3>Structured data: Tables, JSON, and key-value records</h3><p>Vast quantities of essential, real-world data is encoded in spreadsheets, tables, key-value lists, and structured records, like JSON data. However, rerankers trained purely for textual comparison, like <code>jina-reranker-v3</code>, perform poorly on this kind of data.</p><h3>Compute costs for long candidate lists</h3><p>The self-attention architecture at the core of most text-processing AI models means that memory and compute requirements grow quadratically with the size of its input. This makes <code>jina-reranker-v3</code>, like other AI models, very computationally expensive to run with a full input context window. But, to make the most effective use of the model, we want to put as many match candidates as possible into its input. When it’s at its most useful, it’s also slower and more expensive to run.</p><p>We’ve developed <code>jina-reranker-v3.5</code> specifically to address these issues without reducing its performance on general purpose text retrieval.</p><h2>What’s new in Jina Reranker v3.5?</h2><p><code>jina-reranker-v3.5</code> contains a modified self-attention mechanism that enhances performance, increases processing speed, and reduces the resources required at inference time to process a full input context window. We’ve also introduced a new three-stage self-distillation training process better suited to the sliding-window architecture of large input context models.</p><p>We’ve also curated and used training data focusing on the performance gaps we identified in <code>jina-reranker-v3</code>, including:</p><ul><li><p>Multilingual legal texts drawn from diverse international sources.</p></li><li><p>Medical texts drawn largely from scientific literature and materials used for other AI projects, including a collection of Chinese medical question-answer pairs.</p></li><li><p>Financial industry data, including investment-related question-answer pairs, regulations, and tables with numbers and associated texts.</p></li><li><p>Structured data, especially from ecommerce sources and public corpora of tables.</p></li><li><p>Expanded multilingual and cross-language texts.</p></li></ul><p>For details on the data sources and technical innovations in <code>jina-reranker-v3.5</code>, see <a href="https://arxiv.org/abs/2607.18152">our technical report</a>.</p><h2>How Jina Reranker 3.5 performs on retrieval benchmarks</h2><p>Parameters</p><p>597 million</p><p>Input modalities</p><p>Text only</p><p>Context window size</p><p>131,072 tokens</p><p>Maximum number of candidate matches</p><p>No fixed limit, but all candidates and query must fit in the context window.</p><p>Languages</p><p>Training in 52 languages</p><h3>General text reranking performance (BEIR and MIRACL)</h3><p><code>jina-reranker-v3.5</code> improves on <code>jina-reranker-v3</code>’s performance on general text reranking benchmarks. On the English-language <a href="https://github.com/beir-cellar/beir">Benchmarking Information Retrieval (BEIR) benchmark</a>, the average score has increased enough to surpass the frontier <a href="https://huggingface.co/Qwen/Qwen3-Reranker-4B">Qwen3-Reranker-4B</a> and <a href="https://huggingface.co/Qwen/Qwen3-Reranker-0.6B">0.6B</a> models and Mixedbread AI’s rerankers.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt2be1aaecef5d0cbd/6a6a33f854090e576714707e/52c2c0bd6269881eb4e2716a81442030dbf23458-2048x785.png" alt="Jina Reranker v3.5 BEIR benchmark results compared to Qwen3 and Mixedbread rerankers" /><p>We’ve also improved <code>jina-reranker-v3</code>’s multilingual reranking performance on the Multilingual Information Retrieval Across a Continuum of Languages (MIRACL) benchmark. Only the four billion parameter Qwen3 reranker regularly beats <code>jina-reranker-v3.5</code>’s score.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blta9d9b745a3c23efd/6a6a33f899442c66f1df1d8c/cc9ba1d219b1c77ef0840c86c038088a66b40f6d-2048x785.png" alt="Jina Reranker v3.5 MIRACL multilingual benchmark results across 18 languages" /><h3>Legal, medical, and financial reranking</h3><p>The <a href="https://huggingface.co/blog/rteb">Retrieval Embedding Benchmark (RTEB) suite</a> consists of diverse domain-specific retrieval benchmarks. <code>jina-reranker-v3.5</code> outperforms <code>jina-reranker-v3</code> on all RTEB tasks related to law, medicine, and finance. Only the large Qwen3 reranker, at almost seven times as many parameters, has better average performance in those three domains.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt6024d5c8ac1355ac/6a6a33f9b62af41d832635d8/1426abb0397e0b9d7c8115334ca5c4f899fa8fb6-2048x693.png" alt="Jina Reranker v3.5 RTEB domain-specific benchmark results for legal, medical and financial retrieval" /><p>The new model shows particularly strong improvements for legal data, beating <code>jina-reranker-v3</code>’s score by over 50% on case law retrieval tasks.</p><p>Task</p><p>Reranker v3</p><p>Reranker v3.5</p><p>Improvement v3 to v3.5</p><p>AILA-Case</p><p>20.82</p><p>32.55</p><p>+11.73 (56%)</p><p>AILA-Statute</p><p>32.15</p><p>46.16</p><p>+14.01 (44%)</p><p>LegalQuAD</p><p>81.84</p><p>83.09</p><p>+1.25 (1.5%)</p><p>LegalSum</p><p>69.64</p><p>70.99</p><p>+1.33 (1.9%)</p><h3>Structured data reranking (Struct-IR and STaRK benchmarks)</h3><p>We evaluated <code>jina-reranker-v3.5</code>'s structured data reranking on two benchmarks: <a href="https://neurips.cc/virtual/2025/loc/mexico-city/poster/121702">Struct-IR</a> and <a href="https://stark.stanford.edu/">STaRK</a>. Both benchmarks contain AI-generated JSON text data covering a variety of applications, including product records, scientific papers, and biomedical knowledge bases.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt1deca80ed81995d5/6a6a33f79b96f21e21baf2be/b847be39e6387c4d4eaf754c5d758fc59fad4349-2048x717.png" alt="Jina Reranker v3.5 structured data benchmark results on Struct-IR and STaRK" /><p><code>jina-reranker-v3.5</code> improves substantially on <code>jina-reranker-v3</code>’s score on the Struct-IR benchmark, once again only exceeded by Qwen3-Reranker-4B. On the STaRK benchmark, <code>jina-reranker-v3.5</code> beats all the other models we tested, of any size.</p><h3>Inference speed: Latency benchmarks for short and long documents</h3><p>The longer the candidate documents get, the more significant the architectural improvements we’ve brought to <code>jina-reranker-v3.5</code> are. To verify this, we used two retrieval datasets distinguished by large differences in the average document length:</p><p>Dataset</p><p>Avg. doc length</p><p>jina-reranker-v3</p><p>jina-reranker-v3.5</p><p>Speedup</p><p>BEIR Natural Questions</p><p>145.5 tokens</p><p>371.1 ms</p><p>305.3 ms</p><p>22%</p><p>RTEB AILAcasedocs</p><p>1,904.0 tokens</p><p>16,064.9 ms</p><p>10,290.9 ms</p><p>56%</p><p><code>jina-reranker-v3.5</code> is significantly faster in both cases. On the Natural Questions benchmark, there’s a 22% speedup compared to <code>jina-reranker-v3</code> with average request latency falling from 371.1 ms to 305.3 ms. Each query from the AILAcasedocs benchmark is much larger (more than 10 times larger on average) so it naturally takes longer to rerank on average: 16,064.9 ms for <code>jina-reranker-v3</code> and 10,290.9 ms for <code>jina-reranker-v3.5</code>. This represents a 56% speedup for the newer model, representing less latency for applications and lower computer costs.</p><h2>When should you use Jina Reranker v3.5?</h2><p>Reranking improves search precision in practically every case, and <code>jina-reranker-v3.5</code> has applications in a wide variety of information retrieval contexts. However, it has some limitations. The table below summarizes our best-practice advice:</p><p>Use case</p><p>Recommendation</p><p>General text retrieval in common international languages</p><p>Use `jina-reranker-v3.5`.</p><p>Legal, financial, and medical domain retrieval</p><p>Use `jina-reranker-v3.5`.</p><p>Semi-structured data, tables, product information texts for ecommerce</p><p>Use `jina-reranker-v3.5`.</p><p>Non-text or mixed-media data</p><p>Use `jina-reranker-m0`, which supports both text and image input.</p><h2>How to use Jina Reranker 3.5 with the Elastic Inference API</h2><p><strong><code>jina-reranker-v3.5</code></strong> is available via the <a href="https://jina.ai/reranker/">Jina API</a> with free tokens to try it out. It’s also available via the <a href="https://www.elastic.co/docs/explore-analyze/elastic-inference/inference-api">Elastic Inference API</a> and <a href="https://www.elastic.co/docs/explore-analyze/elastic-inference/eis">Elastic Inference Service</a>.</p><p>If you’re already using <strong><code>jina-reranker-v3</code></strong>, all you have to do is change the name of the model in the <code>model</code> field of your request to the Jina API or <code>model_id</code> field when configuring an Elastic Inference API endpoint. The two models have completely identical interfaces.</p><p>You can install <strong><code>jina-reranker-v3.5</code></strong> as a <a href="https://www.elastic.co/search-labs/blog/on-prem-ai-jina-embedding-models">Jina On-Prem container</a> to get a completely self-contained server that runs on your own hardware. The model weights are also available to download for testing and research. Follow the instructions on the <a href="https://huggingface.co/jinaai/jina-reranker-v3.5">model’s page at Hugging Face</a>. In both cases, the model is available under a <a href="https://creativecommons.org/licenses/by-nc/4.0/deed.en">CC BY-NC-4.0 license</a>, so you’re free to try it out for testing, building prototypes, or doing scientific research. For commercial use, please contact Elastic sales.</p>]]></content:encoded>
    <link>https://www.elastic.co/search-labs/blog/jina-reranker-35-legal-medical-structured-data</link>
    <guid isPermaLink="true">https://www.elastic.co/search-labs/blog/jina-reranker-35-legal-medical-structured-data</guid>
    <category><![CDATA[Jina AI]]></category>
    <category><![CDATA[Relevance]]></category>
    <category><![CDATA[ML Research]]></category>
    <dc:creator><![CDATA[Felix Wang,Scott Martens]]></dc:creator>
    <enclosure url="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt29bbbf4463c73d8a/6a6a33fa55755baeaa2bd248/a6563ee307cc2d29722c490b043ee736c46974f3-1280x720.png" length="0" type="image/png"/>
    <pubDate>Mon, 27 Jul 2026 00:00:00 GMT</pubDate>
  </item>
  <item>
    <title><![CDATA[On-prem in under 5 minutes: Jina embedding models now available for on-prem deployment]]></title>
    <description><![CDATA[All 28 Jina AI models, including rerankers, as ready-to-deploy Docker containers, with zero telemetry and no license server. Drop-in compatible with OpenAI, Cohere, Voyage AI and Elastic Inference Service APIs.]]></description>
    <content:encoded><![CDATA[<p>All 28 Jina AI embedding and reranking models now ship as fully offline Docker containers for on-prem deployment, including <a href="https://www.elastic.co/search-labs/blog/jina-embeddings-v5-omni-all-media-one-index"><code>jina-embeddings-v5-omni</code></a><a href="https://www.elastic.co/search-labs/blog/jina-embeddings-v5-omni-all-media-one-index"> </a>and <a href="https://www.elastic.co/search-labs/tutorials/jina-tutorial/jina-reranker-v3"><code>jina-reranker-v3</code></a>. Download one, transfer it to an on-premises air-gapped or firewalled system, and local inference is running in under five minutes. The containers are completely self-contained and make no external connections. There’s no call to Hugging Face or any model registry. There’s also no license server or telemetry or logging endpoints. For regulated industries, data sovereignty requirements or environments where internet access is unreliable or simply unavailable, this removes the dependency on third-party AI services. Jina On-Prem supports Elastic Inference Service (EIS), OpenAI, Cohere, Voyage AI, and Gemini API schemas, so existing applications work without code changes.</p><p>The most powerful AI models run on remote cloud installations with access via a web API, meaning that you have to trust your AI service provider for security, service availability, and stable prices. You can’t easily align reasonable demands for reliability, privacy, manageable costs, and good data governance with increasingly powerful, sophisticated, and resource-intensive AI usage.</p><p>Government regulation, court rulings, and business considerations made in someone else’s interest have all recently resulted in restricting access to specific services. And even if you can switch to other services, AI models aren’t components that can just be swapped out whenever you want. Applications that use semantic embeddings depend on having access to the same models at query time as at data ingestion time. To lose access to your embedding model means your search system comes to a halt.</p><p>AI pricing models compound that risk. Recent financial disclosures from major AI vendors give customers good reason to be concerned about potential price hikes. Reliance on products with unpredictable costs adds more risk to capital-intensive AI investments that may not produce clear returns.</p><p>Jina On-Prem is Elastic’s answer to these challenges.</p><h2>Who needs on-premises AI?</h2><p>Local hosting and direct control over your AI models support a variety of technical demands, industry requirements, and business interests.</p><p>Local installation reduces what you pay your AI service providers, but it puts the cost of hardware and reliable access on your organization. Depending on your volume of use, it may simply be cheaper. But there are additional pressing reasons to consider running your own AI. If any of the issues described below concern your enterprise, consider a local AI solution like Jina On-Prem. This list is not exhaustive.</p><p>Use case</p><p>Why on-prem</p><p>Example</p><p>Air-gapped / high-security</p><p>No outbound data transmission; complete network isolation</p><p>Defence, intelligence, classified research</p><p>Regulatory compliance</p><p>Data sovereignty; no cross-border transmission or third-party exposure</p><p>Healthcare (Health Insurance Portability and Accountability Act [HIPAA]), finance, EU enterprises (General Data Protection Regulation [GDPR])</p><p>Latency-critical</p><p>Zero network dependency; no tolerance for connection failures</p><p>Robotics, edge computing, vehicles, ships</p><p>Cost predictability</p><p>Fixed infrastructure cost vs. per-token pricing with uncertain future rates</p><p>High-volume continuous inference workloads</p><p>Liability reduction</p><p>No third-party data exposure; maintains legal privilege and duty of care</p><p>Law firms, government agencies</p><h3>Why air-gapped and firewalled systems need on-prem AI</h3><p>Air-gapped and firewalled systems cannot use external AI APIs. Jina On-Prem runs entirely within your infrastructure with no outbound connections.</p><p>For organizations managing especially sensitive data, security and privacy considerations are paramount. It does little good to invest in protecting your sensitive data if you promptly turn it over to some remote third party that may have insufficient security in place or might be subject to the demands of a foreign government.</p><p>Employees in organizations that handle sensitive data often receive some training in secure data handling, but this isn’t very effective when they all have web browsers that may be open to any page on the internet while they handle that data. Isolation is the most effective security measure available, either through air-gapping or very restrictive firewalls, but that makes it difficult to use external services of any kind.</p><h3>On-prem AI for latency-sensitive and high-availability systems</h3><p>Software as a service and cloud computing represent a compromise between the cost of offering highly accessible, reliable services on your own computers and outsourcing the problem to someone else. But they come with variable latency, outages, and a complete loss of control when things go wrong. AI services aren’t the exception. If your search system goes offline when you can’t access your embedding model, it may no longer look like a good compromise.</p><p>Furthermore, relying on external AI will always involve risks that you can’t easily foresee or manage. Internet access and network latency can degrade without notice, as a result of political events, bad weather, or ships dragging their anchors over underwater fiber-optic cables. Governments can, and recently have, used export bans to suddenly block access to AI models. AI service providers sometimes withdraw models to induce you to switch to newer ones. The flexibility and managed costs of external services have to be balanced against the risks of dependency.</p><h3>On-prem AI for GDPR, HIPAA, and data sovereignty compliance</h3><p>Organizations that collect personal data are subject to increasingly stringent regulations which often differ between jurisdictions and may have contradictory requirements. Notably, <a href="https://www.hhs.gov/hipaa/for-professionals/privacy/laws-regulations/index.html">HIPAA rules</a> place very strict data protections on American healthcare providers, and strong general data protection laws in <a href="https://laws-lois.justice.gc.ca/eng/acts/p-8.6/">Canada</a>, the <a href="https://gdpr-info.eu/">European Union</a>, and <a href="https://www.japaneselawtranslation.go.jp/en/laws/view/4241">many Asian jurisdictions</a> require all enterprises that handle personal information to do so securely and to limit the transmission of that data to other parties or other jurisdictions. These rules can even impose obligations on foreign entities if they have any customers in those jurisdictions. Financial institutions are frequently subject to even stricter rules and bear the same direct liability for information security that they have to protect against other forms of criminal activity.</p><p>Regulatory compliance can be incompatible with third-party AI services, especially if using them involves cross-border data transmission.</p><p>Furthermore, recent events show that rules restricting the physical location of data stores may not be a reliable source of protection when international cloud operators are subject to pressure from foreign governments. Local laws may conflict between jurisdictions, requiring local data storage and processing and making third-party services impossible to use. In some cases, the only solution is to take all the parts of your processes in house, including your AI systems.</p><h3>AI liability risks from third-party data transmission</h3><p>Data protection laws and recognized duties of care toward sensitive data routinely have liability implications, sometimes very severe ones. You can be liable for third-party service providers’ handling of your data. While courts and legal procedures might provide some retrospective protections from insecure service providers, those remedies are not available nor generally effective against national security actors, law enforcement, or criminal hackers.</p><p>For governments, there have already been instances of cross-border cloud service providers releasing sensitive state information to foreign actors.</p><p>But even if you don’t worry about foreign governments or hackers, and if your external AI service providers are themselves secure, just the fact that they’re external can create liabilities.</p><p>For example, in most jurisdictions, lawyers’ communications with their clients enjoy special legal protections, and law offices have strict liabilities when recording or storing this information. In the United States, this “attorney-client privilege” is so famous, it’s central to movie and TV plots. But one of the ways that privilege can be lost is by communicating information with someone who is not privileged, and recent developments suggest that external AI service providers might qualify.</p><p>It’s possible, at least in the United States, that just using third-party AI services over an internet API, like embedding models that provide indexing services, might violate critical confidentiality rules. A law firm might be sued, disciplined, or disbarred just for using externally hosted software, even if no security breach occurs.</p><h3>On-prem AI for offline, edge, and physically isolated systems</h3><p>Computer systems aren’t just isolated for security reasons. For example, moving vehicles cannot rely on internet access for any essential functions. Ships and aircraft have very extensive onboard computer systems that have to function without internet connections and therefore cannot use external AI services. Offshore platforms, remote facilities in wilderness areas, computer services in the Arctic, Antarctic and on small islands without adequate physical connections to global networks are all examples of installations that benefit from locally hosting all the services they need. As AI’s role in enterprise computing grows, these limitations become more important to address.</p><p>Emerging applications of AI to physical systems (robotics and other spatially confined or external-world–focused use cases, like logistics management systems or even supermarket checkouts) may be connected to the global internet, but they have no tolerance for connection failures or spikes in latency. If they rely on an AI system to operate, that AI system needs to be as local and reliable as possible.</p><h2>Who doesn’t need on-premises AI?</h2><p>Remote software services and off-site AI do have benefits. Running AI models can require expensive, power-hungry processors with notoriously short lifespans. Access to high-quality hardware is particularly difficult right now due to market factors and external economic shocks. Under the circumstances, it may make sense to pay by the token to use an external API instead of supporting the steep capital costs of local AI.</p><p>External APIs make the most sense for intermittent users. If you use AI models primarily to batch process data for analysis, rather than running a search system that has to be online all the time, it makes little sense to invest in capital-intensive hardware and local installations.</p><p>Furthermore, when your data processing is already cloud-based, for example, an ecommerce website hosted in the cloud for reliability and accessibility reasons, using AI services located in the same cloud infrastructure may provide a better value for money than introducing your own licensed AI model deployment. You’re already dependent on your cloud service provider, so being dependent on its AI services doesn’t add much risk.</p><p>If your use case sounds like it fits that description, Jina AI models are available on <a href="https://www.elastic.co/docs/explore-analyze/elastic-inference/eis">EIS</a>, <a href="https://aws.amazon.com/marketplace/seller-profile?id=seller-stch2ludm6vgy">AWS Marketplace</a>, and the <a href="https://console.cloud.google.com/marketplace/browse?q=jina">Google Cloud Platform</a> specifically to meet your needs.</p><p>The table below summarizes the key factors. Your answer depends on your data, infrastructure and usage pattern.</p><p>Factor</p><p>On-prem favored</p><p>Cloud API favored</p><p>Usage pattern</p><p>Continuous or high-volume inference</p><p>Intermittent or batch processing</p><p>Data sensitivity</p><p>Regulated, sovereign, or classified</p><p>No cross-border or third-party restrictions</p><p>Network environment</p><p>Air-gapped, firewalled, or unreliable</p><p>Stable, always-on internet</p><p>Existing infrastructure</p><p>Own or can procure GPU hardware</p><p>Already cloud-hosted with colocated AI</p><p>Cost model</p><p>Fixed hardware + license; predictable at scale</p><p>Per-token; lower up-front, variable long-term</p><p>Latency tolerance</p><p>None (robotics, edge, real-time)</p><p>Network variability is acceptable</p><p>Operational responsibility</p><p>Your team manages hardware and availability</p><p>Provider manages hardware and updates; you manage integration</p><p>You have to consider the costs and benefits in light of your particular circumstances and use cases, taking into account the issues highlighted in the previous section that apply to you. The cost-benefit analysis will doubtless change over time. We can’t predict the future of the AI industry or hardware prices even in the short term.</p><h2>Introducing Jina On-Prem</h2><p>For users who can benefit from local AI services, we’re introducing <a href="https://github.com/jina-ai/jina-on-prem/wiki/">Jina On-Prem</a>, a fully self-contained installation suite for Jina AI’s high-performance models.</p><p>Jina AI’s models match the accuracy of embedding models <a href="https://mteb-leaderboard.hf.space/benchmark/MTEB(Multilingual%2C%20v2)">many times their size</a>, reducing compute costs, memory footprints, and hardware requirements. This makes them an ideal choice for users who want or need to keep their AI on-premises. Commercial licenses are available with scalable, proportionately priced solutions for use cases of all sizes.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt190865fb3ebde472/6a6a33d0065b162508701ff9/02559ceca556a26c53eb703ae87d421452b27251-1374x1400.png" alt="MMTEB Multilingual v2 leaderboard showing Jina AI embedding model rankings: jina-embeddings-v5-omni-small and jina-embeddings-v5-text-small ranked 13th, jina-embeddings-v5-omni-nano and jina-embeddings-v5-text-nano ranked 19th, competing against models from Microsoft, Google, Tencent, NVIDIA and Qwen" /><h3>What API schemas does Jina On-Prem support?</h3><ul><li><p>Available as a complete collection of dependencies for local installation or as a <a href="https://www.docker.com/">Docker container</a> that you can install and run in minutes.</p></li><li><p>Jina On-Prem installations <em>do not</em> call out to outside systems.</p><ul><li><p>No call to Hugging Face Hub or any model registry (<code>HF_HUB_OFFLINE=1</code> and <code>TRANSFORMERS_OFFLINE=1</code> are baked in).</p></li><li><p>There’s no license server.</p></li><li><p>There are no telemetry or logging endpoints.</p></li></ul></li><li><p>Supports both CPU and GPU hardware, with GPU autodetection.</p></li><li><p>All 28 Jina AI models available, including the latest <a href="https://www.elastic.co/search-labs/blog/jina-embeddings-v5-omni-all-media-one-index"><code>jina-embeddings-v5-omni</code></a> multimodal embedding models and <a href="https://www.elastic.co/search-labs/tutorials/jina-tutorial/jina-reranker-v3"><code>jina-reranker-v3</code></a>.</p></li><li><p>Access via standard AI API schemas: <a href="https://jina.ai/api-dashboard">Jina API</a>, OpenAI, Cohere, Voyage AI, and Gemini. Jina On-Prem is a drop-in solution for applications built on those schemas.</p></li><li><p>Drop-in replacement for models served by the <a href="https://www.elastic.co/docs/explore-analyze/elastic-inference/eis">EIS</a>. Jina On-Prem integrates directly with <a href="https://www.elastic.co/blog/deploy-elastic-air-gapped-disconnected-environments">air-gapped Elastic deployments</a>.</p></li></ul><h2>Hardware requirements for Jina AI on-prem models</h2><p>The hardware requirements vary for different Jina models. The table below shows the recommendations for the most recent models using GPU settings. You don’t need anything more powerful than an NVIDIA L4 GPU, although an A100 is recommended for the v5 embedding models. Our latest embedding model currently requires a minimum of 8 GB of VRAM.</p><p>Model</p><p>Minimum VRAM</p><p>Recommended GPU</p><p>jina-embeddings-v5-text-nano</p><p>2 GB</p><p>T4 / L4</p><p>jina-embeddings-v5-text-small</p><p>3 GB</p><p>L4 / A10G</p><p>jina-embeddings-v5-omni-small</p><p>8 GB</p><p>L4 / A10G / A100</p><p>jina-reranker-v3</p><p>3 GB</p><p>L4</p><p>jina-clip-v2</p><p>4 GB</p><p>L4</p><p>jina-code-embeddings-1.5b</p><p>4 GB</p><p>L4</p><p>ReaderLM-v2</p><p>4 GB</p><p>L4</p><p>If you use more than one model at a time, the VRAM requirements will increase. Please see the <a href="https://github.com/jina-ai/jina-on-prem/wiki/Sizing-And-Hardware">Sizing and Hardware page</a> for more information.</p><h2>How to install Jina On-Prem with Docker</h2><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt20265d09e2d8d0f4/6a6a33d1065b162105701ffd/ada9881af407168298b1940f8537ad71a5411c89-1999x1200.png" alt="" /><p>The quickest way to get started is to <a href="https://www.docker.com/get-started/">install Docker</a> (if you haven’t already) and follow the instructions on the <a href="https://github.com/jina-ai/jina-on-prem/wiki/QuickStart">Jina On-Prem Quick Start</a> page.</p><p>There are pre-composed Docker containers for all 28 Jina models. Download one and transfer it to your installation target, and you can have Jina AI models running in under five minutes.</p><p>For multimodal or custom builds, or to download the complete dependency set for installation outside of a container, follow the steps outlined in the <a href="https://github.com/jina-ai/jina-on-prem/wiki/Bundling-Guide">bundling guide</a>.</p><p>Your Jina On-Prem installation supports all Jina API and EIS functionality and embedding generation via OpenAI, Cohere, Voyage AI, and Gemini APIs, so it can integrate into preexisting applications using standard interfaces. See the <a href="https://github.com/jina-ai/jina-on-prem/wiki/API-Reference">API documentation</a> for more information.</p><p>Jina models, including models installed with Jina On-Prem, are available on various licensing terms, with the latest models free for noncommercial use under a <a href="https://creativecommons.org/licenses/by-nc/4.0/deed.en">CC BY-NC 4.0</a> license. To license Jina On-Prem for commercial use, please contact <a href="https://www.elastic.co/contact">Elastic Sales</a>.</p>]]></content:encoded>
    <link>https://www.elastic.co/search-labs/blog/on-prem-ai-jina-embedding-models</link>
    <guid isPermaLink="true">https://www.elastic.co/search-labs/blog/on-prem-ai-jina-embedding-models</guid>
    <category><![CDATA[Jina AI]]></category>
    <category><![CDATA[Integrations]]></category>
    <dc:creator><![CDATA[Scott Martens]]></dc:creator>
    <enclosure url="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt17731ab0c6ec66f6/6a6a33d140a4941014ca5c9a/09bc6dac4e6a86c7877f8ed78d68f5d581aeffa9-1999x1200.png" length="0" type="image/png"/>
    <pubDate>Thu, 23 Jul 2026 00:00:00 GMT</pubDate>
  </item>
  <item>
    <title><![CDATA[Small model, big benchmarks: how Jina-VLM beat the competition at 2.4B and what ICLR told us is coming next]]></title>
    <description><![CDATA[Jina-VLM is a 2.4B open multilingual VLM leading VQA benchmarks across 29 languages. Plus: five days of ICLR 2026 takeaways on RLVR, sparse embeddings and retrieval.]]></description>
    <content:encoded><![CDATA[<p>Jina-VLM is a 2.4B-parameter vision-language model that currently leads open 2B-scale models on multilingual VQA benchmarks (MMMB and Multilingual MMBench) across 29 languages. It pairs a SigLIP2 vision encoder with a Qwen3 language decoder and handles arbitrary-resolution inputs without sacrificing token efficiency. Jina by Elastic engineers presented the model at the DATA-FM workshop at ICLR 2026 in Rio. This post covers the architecture, the training approach and what five days at the conference told us about where retrieval, embeddings and reasoning are headed.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt904a5d6c185bda3a/6a4695ca4887b899aa4248ef/c44a895e29152640ee1fe82fb2b5a9ddeb82bb8b-1999x1125.png" alt="Andreas Koukounas (left) and Georgios Mastrapas (right) presenting Jina-VLM at the poster session." /><p><a href="https://jina.ai/models/jina-vlm/"><strong>jina-vlm</strong></a> is a 2.4B-parameter vision-language model that pairs a SigLIP2 vision encoder with a Qwen3 language decoder, using attention pooling over image tiles for token-efficient handling of arbitrary-resolution inputs. Beyond the model itself, the paper's main contribution is its “leave-one-out” ablative data-mixture: By removing one task, domain, modality, or language category at a time during training, you can figure out which slices of data are significant or redundant, and whether learning in one domain transfers to others. The result is a compact model that, despite its size, achieves state-of-the-art multilingual VQA performance.</p><p>Rio delivered everything you'd hope for: warm, sunny beach weather, the easy walk between Copacabana and Ipanema, the view from Christ the Redeemer, the colors of Escadaria Selarón. A welcome contrast to a still-chilly European spring.</p><img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/bltb5061331fe59ab44/6a4695cdcbd14e5302a12bf5/537af5b77e73da88cfdaccda6c6a42c2541dd054-1100x1100.png" alt="Gallery of photos from Rio de Janeiro" /><h2>What was trending at ICLR 2026: RLVR, test-time compute and retrieval</h2><p>Conferences like ICLR give everyone a chance to take the field’s pulse and find out what’s hot, what’s not, and what’s coming up. After a few days of walking the aisles at the poster sessions and dropping in on oral sessions, you start to get a sense for things. You start to see the same words on poster after poster, and you notice which sessions are the most crowded.</p><p>Here are a few things we picked up on:</p><p></p><p><strong>Reinforcement Learning with Verifiable Rewards (RLVR) is now the dominant paradigm for post-training refinement. </strong>Almost every reasoning-focused poster we stopped at was using some form of <em>Group Relative Policy Optimization</em> (GRPO) for math correctness, code execution, and formal-logic checks, rather than <em>Reinforcement Learning from Human Feedback</em> (RLHF). <em>Direct Preference Optimization</em> (DPO) fine-tuning, which felt like the default a year ago, was conspicuously rare. It makes sense: If you can use code to check for correctness, you no longer need to get annotated data and the training loop goes much faster.</p><p></p><p><strong>Test-time compute has stopped being a curiosity and become a design problem.</strong> <em>Test-time compute</em> – the time a system spends generating a response – is an increasingly important study variable. Papers now measure it as part of their experimental setup and developers try to optimize for it. Models are now built with the expectation that inference will be expensive and clever, not just a single forward pass through a neural network.</p><p></p><p><strong>Vision-Language Models (VLMs) are everywhere, and Vision-Language-Action models (VLAs) are not far behind</strong>. A big chunk of the conference was about how to make multimodal AI work better, like better tokenization for images, better positional encodings for non-text media, and more efficient ways to compress visual information before it overwhelms your model. Vision-Language-Action models that extend multimodal AI recipes to robotics and embodied agents are no longer niche research. They brought in the crowds at their presentations and hosted vibrant debates.</p><p></p><p><strong>Reports of the death of State-Space Models (SSMs) have been greatly exaggerated</strong>. Attention models still dominate AI, but Mamba, SSM variants and recurrent neural networks still draw attention and research, both as full replacements for Transformers and as components inside hybrid attention-based stacks. Whether they'll ever genuinely displace Transformers is an open question, but the line of research is alive and well.</p><p></p><p><strong>Agentic AI safety is taken very seriously.</strong> A lot of papers and presentations discussed problems like machine unlearning and jailbreaking, and some of the most interesting work was on prompt injection through agentic tool use, like when a model dutifully follows instructions hidden in a webpage or an API response it just fetched. A repeated, slightly unsettling observation: models that follow instructions <em>better </em>tend to be <em>more</em> vulnerable to this kind of attack, not less. This capability-vulnerability tension is going to define a lot of the next few years of safety research.</p><p></p><p><strong>Hallucination and factuality are increasingly framed as retrieval problems</strong>. Several talks made that point explicitly: A generative model that has to invent facts will inevitably hallucinate them, while a model that retrieves information can ground its responses in verifiable ways. That framing is, of course, exactly the bet that search AI engineers have been making all along.</p><p></p><h2>ICLR 2026 invited talks: hidden universe imaging and open AI development</h2><p>Two of the invited talks stood out to us, albeit for very different reasons:</p><h3><a href="https://iclr.cc/virtual/2026/invited-talk/10020868">Images of the Hidden Universe</a></h3><p></p><p><a href="https://en.wikipedia.org/wiki/Katie_Bouman">Katie Bouman</a> presented a tour of how physics, prior knowledge, and machine learning combine to reconstruct information that the universe never gives us directly, like the silhouettes of supermassive black holes and the invisible dark matter structures. She walked us through the <a href="https://eventhorizontelescope.org/blog/astronomers-reveal-first-image-black-hole-heart-our-galaxy">Event Horizon Telescope's imaging of M87 and Sagittarius A</a>, building images up from indirect and incomplete radio measurements, and then extended the same machinery to mapping dark matter through gravitational lensing.</p><p><a href="https://iclr.cc/virtual/2026/invited-talk/10020868">This talk</a> was a useful reminder of why machine learning matters outside the LLM bubble. The more you already know, the more you can learn from a little bit more information. This principle generalizes beyond astronomy to knowledge in general, and to machine learning in particular. Any decision system that uses sparse, noisy observations is confronted with it.</p><p>_____________________________________________________________________________________</p><h3><a href="https://iclr.cc/virtual/2026/invited-talk/10020867">Marin: Open Development of Frontier AI</a></h3><p></p><p><a href="https://en.wikipedia.org/wiki/Percy_Liang">Percy Liang</a> opened his presentation with a blunt observation: As AI capabilities skyrocket, openness plummets. His response is <a href="https://marin.community/"><strong>Marin</strong></a>, a platform for community-driven AI research where every experiment is open, every suggestion or discussion is on public fora, and anyone can review or rerun a result.</p><p>What makes Marin interesting isn't just creating open weight models - plenty of projects do that - but creating an <em>open process </em>for making models. Project pre-registration, peer review, and reproducibility have long been part of the natural sciences, and Marin attempts to maintain that tradition for AI. Model training is treated as a matter of public scientific record.</p><p><a href="https://iclr.cc/virtual/2026/invited-talk/10020867">The talk</a> presented concrete scientific results from this approach (optimizer findings and scaling-law results), suggesting that community-scale science isn't just an aspiration but a workable methodology.</p><p>_____________________________________________________________________________________</p><p>Bouman and Liang made a pleasingly complementary pair: one a reminder of how much ML has to offer the world outside ML, the other a challenge to how the field organizes itself.</p><p></p><h2>ICLR 2026 research highlights: embedding models, retrievers and sparse representations</h2><p>We attended many oral presentations and poster sessions. The papers below stood out because of their potential to impact how we make and use embedding models.</p><h3>Rethinking pretraining for representations</h3><p>Decoder-only models have dominated the LLM leaderboards for years, but one paper makes a case for encoder models.</p><p><a href="https://arxiv.org/abs/2507.11412"><em>Seq vs Seq: An Open Suite of Paired Encoders and Decoders</em></a> does a repeatable, open-data, architecture-controlled comparison of encoder-only and decoder-only models trained identically. They used the same data, same architecture, same training recipe, and differed only in their training paradigms: <em>Bidirectional Masked Language Modeling</em> (MLM), typically associated with encoders, vs. <em>Causal Language Modeling</em> (CLM), usually used in decoders. Their results confirm prior findings that encoders excel at classification and retrieval while decoders excel at generation. A key finding is that cross-objective continuous pretraining does not close the performance gap between the encoders and decoders. A 400M parameter encoder beats a 1B parameter decoder in classification and retrieval, and vice versa for generative tasks. All artifacts including data, checkpoints, and code are open-sourced.</p><p>Their study delivers a definitive empirical finding for the AI community: Encoder-only pretraining is substantially more efficient for classification and retrieval tasks than adapting decoders to act like encoders, even with post-training on high-quality data. This challenges the recent trend of adapting large decoder LLMs (like LLM2Vec) for embedding tasks. Dedicated encoder pretraining from scratch remains the most reliable path to strong retrieval performance. Additionally, the public release of 200+ checkpoints with batch-ordered training data makes their work an invaluable resource for studying how retrieval-relevant representations emerge during training and how they scale with parameter count and tokens.</p><h3>New paradigms for training retrievers and embedders</h3><p><a href="https://arxiv.org/abs/2506.16552"><em>Revela: Dense Retriever Learning via Language Modeling</em></a> reframes dense retriever training as a language modeling problem. Rather than using supervised training with query-document pairs, it trains a retriever model jointly with a language model by conditioning next-token prediction on all the other documents in the batch. This innovative <em>in-batch attention mechanism</em> modifies the model’s Transformer blocks by injecting the similarity scores of documents in each batch into the cross-document attention weights. Training is done on raw text, without query-document pairs, hard negatives, or synthetic data generation. The resulting 3B parameter model outperforms E5-Mistral-7B-Instruct (with 7B parameters) as well as proprietary closed-weight embedding models like OpenAI, Cohere, and Voyage. On retrieval benchmarks, it matches E5 despite using roughly 1000 times less training data and approximately 10 times less compute.</p><p>This demonstrates that next-token prediction can still serve as an effective training objective for high-quality dense retrieval AI. This is important because plain text data – what you need for next-token prediction – is widespread and inexpensive and this paper shows that it’s all you need to train competitive embedding models.</p><p><a href="https://arxiv.org/abs/2509.24291"><em>Let LLMs Speak Embedding Languages: Generative Text Embeddings via Iterative Contrastive Refinement</em></a>advances the proposition that LLMs should learn to "speak an embedding language," i.e., generate sequences of “soft tokens” optimized for semantic representation rather than human readability. They outline innovative loss functions and objectives in support of this goal, and show that the resulting models have very competitive performance, while generating only a handful of additional tokens.They also show that generating more tokens at inference time steadily improves embedding quality in a way analogous to chain-of-thought scaling in reasoning LLMs. KV-caching reduces the computational overhead of the generation process to within 1.1 times that of standard single-pass embedding models. This approach represents a new paradigm for representation learning, complementary to encoder-only and single-pass approaches.</p><p><a href="https://arxiv.org/abs/2603.03389"><em>Towards Improved Sentence Representations using Token Graphs</em></a> frames the problem of generating embeddings for sentences from token-level representations as a relational learning problem rather than a compression problem. Instead of pooling tokens, it uses a supplementary neural network that processes a dynamically constructed graph made from output token similarities. This added network is compact, with very few trainable parameters, and can be implemented without doing any additional training on the main language model. The result is competitive with current frontier models.</p><p>This approach can be dropped into any language model at a very reasonable additional training cost, giving it immediate practical significance. Furthermore, the resulting models hold up well in the presence of noise, a known problem, especially for long-context models.</p><h3>Sparse and ultra-efficient embeddings</h3><p><a href="https://arxiv.org/abs/2505.12260"><em>LightRetriever: A LLM-based Text Retrieval Architecture with Extremely Faster Query Inference</em></a> introduces an asymmetric dual-encoder architecture for embeddings-based retrieval in which the query encoder is much smaller and faster than the document one. The key insight is that while document embeddings benefit from the modeling power of a large language model, query embeddings are much less demanding. During training, they propose to learn per-token query embeddings, then, at query time, those embeddings are retrieved and averaged to produce a full query embedding. Documents must still be encoded at storage time using a potentially large encoder, but there is no need to invoke an embedding model at query time at all. The result retains approximately 95% of the performance of the query encoder it replaced. This has immediate implications for computational constrained, time-sensitive, or resource-efficient text information retrieval systems.</p><p><a href="https://arxiv.org/abs/2602.05735"><em>CSRv2: Unlocking Ultra-Sparse Embeddings</em></a> addresses the computational cost of embeddings-based retrieval using dense, high-dimensional vectors. It tackles that cost with <em>Contrastive Sparse Representation</em> (CSR), which maps dense vectors into a much higher-dimensional space where only a few vector entries are non-zero, so that search can use highly efficient sparse-vector search techniques like inverted-indexes.</p><p>CSR approaches tend to break down when the number of dimensions with non-zero values becomes very low. This paper addresses this problem with an innovative training approach that makes ultra-sparse representations viable, opening up the possibility of much faster, less computationally demanding retrieval without loss of accuracy.</p><h3>Multi-step and multimodal retrieval</h3><p><a href="https://arxiv.org/abs/2511.07328"><em>Q-RAG: Long-Context Multi-Step Retrieval via Value-Based Embedder Training</em></a> frames the problem of multi-step retrieval-augmented generation (RAG) in terms of optimizing the embeddings used in RAG search. RAG systems are typically based on a single retrieval step: Input to an LLM becomes a query to a vector store, and a selection of the results are presented to the LLM as a basis for composing a response. However, agentic approaches that involve multi-step interactions between the LLM and vector store can improve RAG performance significantly, especially for large input contexts that might contain millions of tokens. This paper seeks to optimize the embedding model used for retrieval to better support this usage scenario with <em>Reinforcement Learning with Verifiable Rewards</em> (RLVR).</p><p>This paper is one of the more elegant intersections of two of the conference's biggest themes — RLVR and retrieval — and it gives a glimpse of what retrieval looks like when it has to operate inside an agentic loop, not just before one.</p><h3>Foundations and evaluation</h3><p><a href="https://arxiv.org/abs/2510.10062"><em>HUME: Measuring the Human-Model Performance Gap in Text Embedding Tasks</em></a> undertakes the unusual task of systematically measuring human performance on the <em>Massive Text Embedding Benchmark</em> (MTEB), the most widely used benchmark for embeddings-based information retrieval. Using 16 datasets in 5 languages, they find that average human retrieval accuracy is 77.6%, while the best embedding models currently score over 80%. However, this performance gap is uneven. Models may outperform humans on standard tasks but fall apart when faced with low-resource languages, where human intuition still holds a significant lead.</p><p>This paper also shows that "superhuman" scores on low-agreement tasks are mostly artifacts of fitting noise, not genuine capability. This underlines the problem of our current suite of embedding benchmarks: New models are not improving benchmark performance very much. To make progress, we need new, harder challenges and a total rethink of how we evaluate models.</p><h3>Training dynamics for foundation models</h3><p><a href="https://arxiv.org/abs/2511.18903"><em>How Learning Rate Decay Wastes Your Best Data in Curriculum-Based LLM Pretraining</em></a> identifies a significant but underexplored problem in AI model training. Large training sets can create a problem with models forgetting things that they’ve learned as they’re presented with more data. Curriculum-based pretraining — sorting data from low to high quality — should help, but in practice the results have been disappointing. The reason, the authors argue, is that the model encounters the highest-quality data late in the training schedule when the learning rate is at its lowest. Its gradient contribution is therefore greatly reduced. They confirm that hypothesis empirically by showing that curriculum training significantly beats random shuffling if training uses a constant learning rate.</p><p>They propose two simple strategies to fix this: Let the learning rate decay more slowly, or replace learning rate decay with weight-averaging over the multiple final checkpoints. Combining the two yields a 1.64% average benchmark improvement over standard practices with no additional data refinement. The broader message - that data composition and optimization schedule need to be co-designed - applies well beyond pretraining, and is a useful frame for embedding training too.</p><h2>What ICLR 2026 means for retrieval and embedding research</h2><p>Science has always been conducted through print and publication, but in-person conferences are still the only way to put people together in a room. Over five days, we met a steady stream of researchers from very different backgrounds — academia and industry, large labs and small startups, half a dozen countries — and conversations ranged from research trends to philosophical questions that have haunted AI from the beginning. Are LLMs really reasoning, or are they doing something more like very high-dimensional memorization with interpolation? Where exactly is the line, and does it matter for what we can build on top of them?</p><p>These conversations rarely produce answers, but they sharpen the questions, which is most of what good research is.</p><p>For the information retrieval work we do at Jina by Elastic, the future looks bright. Retrieval, long relegated to merely applied research, is increasingly recognized as the engine for keeping language models grounded. Better encoders, better embedding training paradigms, sparser representations, and retrieval that operates at the core of reasoning loops – these things matter to us all. What we saw and heard at ICLR 2026 convinces us that this is where a meaningful share of the next round of progress will come from.</p><p>We're already looking forward to seeing where the field is next year.</p><p>
</p>]]></content:encoded>
    <link>https://www.elastic.co/search-labs/blog/jina-vlm-multilingual-vqa-iclr-2026</link>
    <guid isPermaLink="true">https://www.elastic.co/search-labs/blog/jina-vlm-multilingual-vqa-iclr-2026</guid>
    <category><![CDATA[Jina AI]]></category>
    <dc:creator><![CDATA[Andreas Koukounas,Georgios Mastrapas,Scott Martens]]></dc:creator>
    <enclosure url="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt14665f5adef8d917/6a4695c72d406b3bb9ba2bb2/3668b433275c8d75fbc0729346123ea87307d012-1999x1125.png" length="0" type="image/png"/>
    <pubDate>Wed, 27 May 2026 00:00:00 GMT</pubDate>
  </item>
  </channel>
</rss>