{"id":104974,"date":"2026-07-17T19:29:31","date_gmt":"2026-07-17T19:29:31","guid":{"rendered":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/"},"modified":"2026-07-17T19:29:31","modified_gmt":"2026-07-17T19:29:31","slug":"nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb","status":"publish","type":"post","link":"https:\/\/youzum.net\/fr\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/","title":{"rendered":"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Embedding models decide which passages an agent ever sees. NVIDIA released <strong><a href=\"https:\/\/huggingface.co\/collections\/nvidia\/nemotron-3-embed\" target=\"_blank\" rel=\"noreferrer noopener\">Nemotron 3 Embed model<\/a><\/strong> to work on that layer. It targets production-scale RAG, agentic retrieval, code retrieval, and agent memory.<\/p>\n<h2 class=\"wp-block-heading\"><strong>What is Nemotron 3 Embed?<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">The model collection includes three open checkpoints. <code>Nemotron-3-Embed-8B-BF16<\/code> is the accuracy-first option. <code>Nemotron-3-Embed-1B-BF16<\/code> carries the same design into a smaller footprint. <code>Nemotron-3-Embed-1B-NVFP4<\/code> is the Blackwell-optimized 4-bit path.<\/p>\n<p class=\"wp-block-paragraph\">All three are transformer encoders trained with <strong>bidirectional attention masking<\/strong>. The final embedding comes from <strong>average pooling<\/strong> over token-level representations. Maximum sequence length is 32,768 tokens on every checkpoint.<\/p>\n<p class=\"wp-block-paragraph\">Each model was evaluated across 34 languages. All three carry the <strong>OpenMDW License Agreement, version 1.1 (OpenMDW-1.1)<\/strong>. Notably, the bases are Mistral models. The 8B is built with <code>Ministral-3-8B-Instruct-2512<\/code>. Both 1B variants use <code>Ministral-3-3B-Instruct-2512<\/code>.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Performance<\/strong><\/h2>\n<p class=\"wp-block-paragraph\"><code>Nemotron-3-Embed-8B-BF16<\/code> ranks <strong>#1 overall on <a href=\"https:\/\/mteb-leaderboard.hf.space\/benchmark\/RTEB%28beta%29\" target=\"_blank\" rel=\"noreferrer noopener\">RTEB<\/a><\/strong> (as of July 17 2026), the Retrieval Embedding Benchmark. Evaluation covers its 16 public tasks. Every figure below is average NDCG@10, at model sequence length 4096.<\/p>\n<figure class=\"wp-block-table\">\n<table class=\"has-fixed-layout\">\n<thead>\n<tr>\n<th>Model<\/th>\n<th>Params<\/th>\n<th>Emb dim<\/th>\n<th>RTEB<\/th>\n<th>ViDoRe-V3 text<\/th>\n<th>MMTEB (Retrieval)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Nemotron-3-Embed-8B-BF16<\/td>\n<td>~8B<\/td>\n<td>4096<\/td>\n<td><strong>78.46<\/strong><\/td>\n<td><strong>60.60<\/strong><\/td>\n<td><strong>75.45<\/strong><\/td>\n<\/tr>\n<tr>\n<td>Nemotron-3-Embed-1B-BF16<\/td>\n<td>1.14B<\/td>\n<td>2048<\/td>\n<td>72.38<\/td>\n<td>57.74<\/td>\n<td>71.04<\/td>\n<\/tr>\n<tr>\n<td>Nemotron-3-Embed-1B-NVFP4<\/td>\n<td>1.14B<\/td>\n<td>2048<\/td>\n<td>72.00<\/td>\n<td>\u2014<\/td>\n<td>\u2014<\/td>\n<\/tr>\n<tr>\n<td>llama-nemotron-embed-vl-1b-v2<\/td>\n<td>\u2014<\/td>\n<td>\u2014<\/td>\n<td>61.98<\/td>\n<td>52.54<\/td>\n<td>59.71<\/td>\n<\/tr>\n<tr>\n<td>llama-nemotron-embed-1b-v2<\/td>\n<td>\u2014<\/td>\n<td>\u2014<\/td>\n<td>60.47<\/td>\n<td>52.10<\/td>\n<td>59.58<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p class=\"wp-block-paragraph\">Two gaps are worth noting. The 1B gains 10.4 RTEB points over <code>llama-nemotron-embed-vl-1b-v2<\/code>, the prior-generation baseline. Separately, NVFP4 costs 0.38 RTEB points against its BF16 parent, or 99.5% retention.<\/p>\n<h2 class=\"wp-block-heading\"><strong>How the 1B Model was Built<\/strong>?<\/h2>\n<p class=\"wp-block-paragraph\">Those 1B scores come from a compression pipeline, not a smaller training run. The parent was <code>nemotron-3-embed-3b<\/code>, pruned and distilled across two iterative rounds.<\/p>\n<p class=\"wp-block-paragraph\">First, the 3B parent was pruned to 2B using <strong>NVIDIA ModelOpt mcore_minitron Neural Architecture Search (NAS)<\/strong>. The search covers hidden width, FFN size, attention heads, and depth. It then picks the best candidate from the top-10 Pareto front. A 50k in-domain calibration corpus scored those candidates.<\/p>\n<p class=\"wp-block-paragraph\">Next, the 2B model was distilled from the fine-tuned 8B embedding teacher. Distillation combined <strong>cosine distance loss (COS)<\/strong> and <strong>mean squared error (MSE)<\/strong> loss. The data blend was multilingual and in-domain. Finally, the same procedure repeated to produce the 1.14B checkpoint.<\/p>\n<h2 class=\"wp-block-heading\"><strong>The NVFP4 Serving Tradeoff<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Compression then continues into the serving format. Quantization hit weights and activations of linear layers only, targeting the <strong>NVFP4<\/strong> data type. The research team used <code>nvidia-modelopt v0.45.0<\/code>. <strong>Quantization-Aware Distillation (QAD)<\/strong> followed, primarily to recover accuracy on long inputs.<\/p>\n<p class=\"wp-block-paragraph\">Calibration used 512 samples: 256 queries and 256 passages from <code>abisee\/cnn_dailymail<\/code>. QAD training used 20k samples.<\/p>\n<p class=\"wp-block-paragraph\">The rsesearch team reports NVFP4 on Blackwell delivers <strong>up to 2x higher throughput than BF16<\/strong>. It retains <strong>99%+ of BF16 retrieval accuracy<\/strong>. The NVFP4 card also documents dynamic embedding sizes. You can slice the 2048-d vector from the start to 1024 or 512 dimensions. Re-normalize afterward.<\/p>\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n<h2 class=\"wp-block-heading\"><strong>Interactive Explainer: The Five-Stage Retrieval Path<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Before touching code, watch the path run. It animates prefixing, bidirectional encoding, average pooling, L2 normalization, and dot-product scoring. Scores come from each card\u2019s published expected output.<\/p>\n<div>\n<\/div>\n<p class=\"wp-block-paragraph\">\n<h2 class=\"wp-block-heading\"><strong>Deployment Matrix<\/strong><\/h2>\n<\/p><p class=\"wp-block-paragraph\">As that walkthrough implies, the checkpoints do not share runtime paths.<\/p>\n<figure class=\"wp-block-table\">\n<table class=\"has-fixed-layout\">\n<thead>\n<tr>\n<th>Feature<\/th>\n<th>8B-BF16<\/th>\n<th>1B-BF16<\/th>\n<th>1B-NVFP4<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Transformers \/ Sentence Transformers<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<td>No<\/td>\n<\/tr>\n<tr>\n<td>vLLM for <code>\/v2\/embed<\/code><\/td>\n<td>0.25.0<\/td>\n<td>0.25.0<\/td>\n<td>0.25.0<\/td>\n<\/tr>\n<tr>\n<td>Microarchitectures<\/td>\n<td>Ampere, Hopper, Blackwell<\/td>\n<td>Ampere, Hopper, Blackwell<\/td>\n<td>Ampere, Hopper, Lovelace, Blackwell<\/td>\n<\/tr>\n<tr>\n<td>Test hardware<\/td>\n<td>A100 80GB, H100 80GB<\/td>\n<td>A100 80GB, H100 80GB<\/td>\n<td>GB200, RTX 6000 PRO, A100, H100, L40, L4<\/td>\n<\/tr>\n<tr>\n<td>Training data<\/td>\n<td>50M+ samples<\/td>\n<td>8.5M+ (distillation)<\/td>\n<td>20k (QAD)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p class=\"wp-block-paragraph\">Alongside the checkpoints, NVIDIA research team released an optimized <strong>NIM microservice<\/strong> for the 1B model. The Rust-based NIM matches or outperforms the vLLM checkpoint on GB200 and RTX PRO 6000. NVIDIA tested input sequence lengths of 256 and 1024. Separately, <strong>NVIDIA NeMo AutoModel<\/strong> recipes cover fine-tuning and distillation.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Using It in Code<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">With those paths in mind, prefixes come first. Queries take <code>query:<\/code> and documents take <code>passage: <\/code>. Embeddings are L2-normalized, so dot product equals cosine similarity.<\/p>\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\">\n<div class=\"control-language\">\n<div class=\"dm-buttons\">\n<div class=\"dm-buttons-left\">\n<div class=\"dm-button-snippet red-button\"><\/div>\n<div class=\"dm-button-snippet orange-button\"><\/div>\n<div class=\"dm-button-snippet green-button\"><\/div>\n<\/div>\n<div class=\"dm-buttons-right\"><a><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\">Copied<\/span><span class=\"dm-error-message\">Use a different Browser<\/span><\/a><\/div>\n<\/div>\n<pre class=\"no-line-numbers\"><code class=\"no-wrap language-php\"># pip install --upgrade \"transformers&gt;=5.2.0\" \"sentence-transformers&gt;=5.4.1\"\nimport torch\nfrom sentence_transformers import SentenceTransformer\n\nQUERIES = [\"How can someone reduce exposure to pollen during allergy season?\"]\nDOCUMENTS = [\"People with pollen allergy can reduce exposure by staying indoors \"\n             \"on dry, windy days, avoiding early-morning outdoor activity, and \"\n             \"going outside after rain when pollen levels are lower.\"]\n\nmodel = SentenceTransformer(\n    \"nvidia\/Nemotron-3-Embed-8B-BF16\",\n    device=\"cuda\",\n    model_kwargs={\"dtype\": torch.bfloat16,\n                  # use \"sdpa\" if FlashAttention-2 is unavailable\n                  \"attn_implementation\": \"flash_attention_2\"},\n    processor_kwargs={\"padding_side\": \"left\"},\n)\nmodel.max_seq_length = 32768\n\nq = model.encode_query(QUERIES, batch_size=1, convert_to_tensor=True)\nd = model.encode_document(DOCUMENTS, batch_size=1, convert_to_tensor=True)\nprint(model.similarity(q, d))  # card's published q[3]\/d[3] score: 0.8008<\/code><\/pre>\n<\/div>\n<\/div>\n<p class=\"wp-block-paragraph\"><code>encode_query<\/code> and <code>encode_document<\/code> read the saved prompts. So you never add prefixes by hand. For serving, <code>\/v2\/embed<\/code> applies them from <code>input_type<\/code> instead:<\/p>\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\">\n<div class=\"control-language\">\n<div class=\"dm-buttons\">\n<div class=\"dm-buttons-left\">\n<div class=\"dm-button-snippet red-button\"><\/div>\n<div class=\"dm-button-snippet orange-button\"><\/div>\n<div class=\"dm-button-snippet green-button\"><\/div>\n<\/div>\n<div class=\"dm-buttons-right\"><a><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\">Copied<\/span><span class=\"dm-error-message\">Use a different Browser<\/span><\/a><\/div>\n<\/div>\n<pre class=\"no-line-numbers\"><code class=\"no-wrap language-php\">vllm serve nvidia\/Nemotron-3-Embed-1B-NVFP4 \n  --max-model-len 4096 \n  --max-num-batched-tokens 4096 \n  --max-cudagraph-capture-size 4096<\/code><\/pre>\n<\/div>\n<\/div>\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\">\n<div class=\"control-language\">\n<div class=\"dm-buttons\">\n<div class=\"dm-buttons-left\">\n<div class=\"dm-button-snippet red-button\"><\/div>\n<div class=\"dm-button-snippet orange-button\"><\/div>\n<div class=\"dm-button-snippet green-button\"><\/div>\n<\/div>\n<div class=\"dm-buttons-right\"><a><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\">Copied<\/span><span class=\"dm-error-message\">Use a different Browser<\/span><\/a><\/div>\n<\/div>\n<pre class=\"no-line-numbers\"><code class=\"no-wrap language-php\">import numpy as np, requests\n\ndef embed(input_type: str, texts: list[str]) -&gt; np.ndarray:\n    r = requests.post(\n        \"http:\/\/localhost:8000\/v2\/embed\",\n        json={\"model\": \"nvidia\/Nemotron-3-Embed-1B-NVFP4\",\n              \"input_type\": input_type,          # \"query\" or \"document\"\n              \"texts\": texts,\n              \"embedding_types\": [\"float\"],\n              \"truncate\": \"END\"},\n        timeout=120,\n    )\n    r.raise_for_status()\n    return np.array(r.json()[\"embeddings\"][\"float\"], dtype=np.float32)\n\nscores = embed(\"query\", QUERIES) @ embed(\"document\", DOCUMENTS).T<\/code><\/pre>\n<\/div>\n<\/div>\n<h2 class=\"wp-block-heading\"><strong>Use Cases With Examples<\/strong><\/h2>\n<ul class=\"wp-block-list\">\n<li><strong>Multilingual enterprise search<\/strong>: A support team indexes Hindi, Japanese, and English tickets together. Because retrieval is cross-lingual, a German query can surface a Japanese resolution note.<\/li>\n<li><strong>Code retrieval<\/strong>: Training included <code>coir_apps<\/code>, <code>coir_cosqa<\/code>, <code>synthetic_text2sql<\/code>, and SWE-bench. Natural-language-to-code lookup is therefore closer to in-distribution.<\/li>\n<li><strong>Agent memory<\/strong>: The 32,768-token limit lets an agent embed long conversation summaries without aggressive chunking.<\/li>\n<li><strong>Cost-tiered RAG<\/strong>: Serve 1B-NVFP4 for high-volume recall, and route hard queries to the 8B. Because widths differ, this needs two indexes.<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n<ul class=\"wp-block-list\">\n<li>Nemotron-3-Embed-8B-BF16 ranks #1 on RTEB at 78.46 avg NDCG@10.<\/li>\n<li>Three open checkpoints span 8B BF16, 1B BF16, and 1B NVFP4.<\/li>\n<li>NVFP4 retains 99%+ of BF16 accuracy at up to 2x Blackwell throughput.<\/li>\n<li>The 1B came from ModelOpt NAS pruning plus COS+MSE distillation from the 8B.<\/li>\n<li>All checkpoints use OpenMDW-1.1 and support 32,768-token inputs.<\/li>\n<\/ul>\n<p class=\"wp-block-paragraph\">\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n<\/p><p class=\"wp-block-paragraph\">\n<\/p><p class=\"wp-block-paragraph\">Check out the\u00a0<a href=\"https:\/\/huggingface.co\/blog\/nvidia\/nemotron-3-embed-wins-rteb\"><strong>NVIDIA launch post on Hugging Face<\/strong><\/a>, <a href=\"https:\/\/huggingface.co\/collections\/nvidia\/nemotron-3-embed\"><strong>Nemotron 3 Embed collection<\/strong><\/a>, <a href=\"https:\/\/huggingface.co\/nvidia\/Nemotron-3-Embed-8B-BF16\"><strong>8B-BF16 card<\/strong><\/a>, <a href=\"https:\/\/huggingface.co\/nvidia\/Nemotron-3-Embed-1B-BF16\"><strong>1B-BF16 card<\/strong><\/a> and <a href=\"https:\/\/huggingface.co\/nvidia\/Nemotron-3-Embed-1B-NVFP4\"><strong>1B-NVFP4 card<\/strong><\/a><strong>.\u00a0<\/strong>Also,\u00a0feel free to follow us on\u00a0<strong><a href=\"https:\/\/x.com\/intent\/follow?screen_name=marktechpost\" target=\"_blank\" rel=\"noreferrer noopener\"><mark>Twitter<\/mark><\/a><\/strong>\u00a0and don\u2019t forget to join our\u00a0<strong><a href=\"https:\/\/www.reddit.com\/r\/machinelearningnews\/\" target=\"_blank\" rel=\"noreferrer noopener\">150k+ML SubReddit<\/a><\/strong>\u00a0and Subscribe to\u00a0<strong><a href=\"https:\/\/www.aidevsignals.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">our Newsletter<\/a><\/strong>. Wait! are you on telegram?\u00a0<strong><a href=\"https:\/\/t.me\/machinelearningresearchnews\" target=\"_blank\" rel=\"noreferrer noopener\">now you can join us on telegram as well.<\/a><\/strong><\/p>\n<p class=\"wp-block-paragraph\">Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0<strong><a href=\"https:\/\/forms.gle\/wbash1wF6efRj8G58\" target=\"_blank\" rel=\"noreferrer noopener\"><mark>Connect with us<\/mark><\/a><\/strong><\/p>\n<p>The post <a href=\"https:\/\/www.marktechpost.com\/2026\/07\/17\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\">NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB<\/a> appeared first on <a href=\"https:\/\/www.marktechpost.com\/\">MarkTechPost<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Embedding models decide which passages an agent ever sees. NVIDIA released Nemotron 3 Embed model to work on that layer. It targets production-scale RAG, agentic retrieval, code retrieval, and agent memory. What is Nemotron 3 Embed? The model collection includes three open checkpoints. Nemotron-3-Embed-8B-BF16 is the accuracy-first option. Nemotron-3-Embed-1B-BF16 carries the same design into a smaller footprint. Nemotron-3-Embed-1B-NVFP4 is the Blackwell-optimized 4-bit path. All three are transformer encoders trained with bidirectional attention masking. The final embedding comes from average pooling over token-level representations. Maximum sequence length is 32,768 tokens on every checkpoint. Each model was evaluated across 34 languages. All three carry the OpenMDW License Agreement, version 1.1 (OpenMDW-1.1). Notably, the bases are Mistral models. The 8B is built with Ministral-3-8B-Instruct-2512. Both 1B variants use Ministral-3-3B-Instruct-2512. Performance Nemotron-3-Embed-8B-BF16 ranks #1 overall on RTEB (as of July 17 2026), the Retrieval Embedding Benchmark. Evaluation covers its 16 public tasks. Every figure below is average NDCG@10, at model sequence length 4096. Model Params Emb dim RTEB ViDoRe-V3 text MMTEB (Retrieval) Nemotron-3-Embed-8B-BF16 ~8B 4096 78.46 60.60 75.45 Nemotron-3-Embed-1B-BF16 1.14B 2048 72.38 57.74 71.04 Nemotron-3-Embed-1B-NVFP4 1.14B 2048 72.00 \u2014 \u2014 llama-nemotron-embed-vl-1b-v2 \u2014 \u2014 61.98 52.54 59.71 llama-nemotron-embed-1b-v2 \u2014 \u2014 60.47 52.10 59.58 Two gaps are worth noting. The 1B gains 10.4 RTEB points over llama-nemotron-embed-vl-1b-v2, the prior-generation baseline. Separately, NVFP4 costs 0.38 RTEB points against its BF16 parent, or 99.5% retention. How the 1B Model was Built? Those 1B scores come from a compression pipeline, not a smaller training run. The parent was nemotron-3-embed-3b, pruned and distilled across two iterative rounds. First, the 3B parent was pruned to 2B using NVIDIA ModelOpt mcore_minitron Neural Architecture Search (NAS). The search covers hidden width, FFN size, attention heads, and depth. It then picks the best candidate from the top-10 Pareto front. A 50k in-domain calibration corpus scored those candidates. Next, the 2B model was distilled from the fine-tuned 8B embedding teacher. Distillation combined cosine distance loss (COS) and mean squared error (MSE) loss. The data blend was multilingual and in-domain. Finally, the same procedure repeated to produce the 1.14B checkpoint. The NVFP4 Serving Tradeoff Compression then continues into the serving format. Quantization hit weights and activations of linear layers only, targeting the NVFP4 data type. The research team used nvidia-modelopt v0.45.0. Quantization-Aware Distillation (QAD) followed, primarily to recover accuracy on long inputs. Calibration used 512 samples: 256 queries and 256 passages from abisee\/cnn_dailymail. QAD training used 20k samples. The rsesearch team reports NVFP4 on Blackwell delivers up to 2x higher throughput than BF16. It retains 99%+ of BF16 retrieval accuracy. The NVFP4 card also documents dynamic embedding sizes. You can slice the 2048-d vector from the start to 1024 or 512 dimensions. Re-normalize afterward. Interactive Explainer: The Five-Stage Retrieval Path Before touching code, watch the path run. It animates prefixing, bidirectional encoding, average pooling, L2 normalization, and dot-product scoring. Scores come from each card\u2019s published expected output. Deployment Matrix As that walkthrough implies, the checkpoints do not share runtime paths. Feature 8B-BF16 1B-BF16 1B-NVFP4 Transformers \/ Sentence Transformers Yes Yes No vLLM for \/v2\/embed 0.25.0 0.25.0 0.25.0 Microarchitectures Ampere, Hopper, Blackwell Ampere, Hopper, Blackwell Ampere, Hopper, Lovelace, Blackwell Test hardware A100 80GB, H100 80GB A100 80GB, H100 80GB GB200, RTX 6000 PRO, A100, H100, L40, L4 Training data 50M+ samples 8.5M+ (distillation) 20k (QAD) Alongside the checkpoints, NVIDIA research team released an optimized NIM microservice for the 1B model. The Rust-based NIM matches or outperforms the vLLM checkpoint on GB200 and RTX PRO 6000. NVIDIA tested input sequence lengths of 256 and 1024. Separately, NVIDIA NeMo AutoModel recipes cover fine-tuning and distillation. Using It in Code With those paths in mind, prefixes come first. Queries take query: and documents take passage: . Embeddings are L2-normalized, so dot product equals cosine similarity. Copy CodeCopiedUse a different Browser # pip install &#8211;upgrade &#8220;transformers&gt;=5.2.0&#8221; &#8220;sentence-transformers&gt;=5.4.1&#8221; import torch from sentence_transformers import SentenceTransformer QUERIES = [&#8220;How can someone reduce exposure to pollen during allergy season?&#8221;] DOCUMENTS = [&#8220;People with pollen allergy can reduce exposure by staying indoors &#8221; &#8220;on dry, windy days, avoiding early-morning outdoor activity, and &#8221; &#8220;going outside after rain when pollen levels are lower.&#8221;] model = SentenceTransformer( &#8220;nvidia\/Nemotron-3-Embed-8B-BF16&#8243;, device=&#8221;cuda&#8221;, model_kwargs={&#8220;dtype&#8221;: torch.bfloat16, # use &#8220;sdpa&#8221; if FlashAttention-2 is unavailable &#8220;attn_implementation&#8221;: &#8220;flash_attention_2&#8221;}, processor_kwargs={&#8220;padding_side&#8221;: &#8220;left&#8221;}, ) model.max_seq_length = 32768 q = model.encode_query(QUERIES, batch_size=1, convert_to_tensor=True) d = model.encode_document(DOCUMENTS, batch_size=1, convert_to_tensor=True) print(model.similarity(q, d)) # card&#8217;s published q[3]\/d[3] score: 0.8008 encode_query and encode_document read the saved prompts. So you never add prefixes by hand. For serving, \/v2\/embed applies them from input_type instead: Copy CodeCopiedUse a different Browser vllm serve nvidia\/Nemotron-3-Embed-1B-NVFP4 &#8211;max-model-len 4096 &#8211;max-num-batched-tokens 4096 &#8211;max-cudagraph-capture-size 4096 Copy CodeCopiedUse a different Browser import numpy as np, requests def embed(input_type: str, texts: list[str]) -&gt; np.ndarray: r = requests.post( &#8220;http:\/\/localhost:8000\/v2\/embed&#8221;, json={&#8220;model&#8221;: &#8220;nvidia\/Nemotron-3-Embed-1B-NVFP4&#8221;, &#8220;input_type&#8221;: input_type, # &#8220;query&#8221; or &#8220;document&#8221; &#8220;texts&#8221;: texts, &#8220;embedding_types&#8221;: [&#8220;float&#8221;], &#8220;truncate&#8221;: &#8220;END&#8221;}, timeout=120, ) r.raise_for_status() return np.array(r.json()[&#8220;embeddings&#8221;][&#8220;float&#8221;], dtype=np.float32) scores = embed(&#8220;query&#8221;, QUERIES) @ embed(&#8220;document&#8221;, DOCUMENTS).T Use Cases With Examples Multilingual enterprise search: A support team indexes Hindi, Japanese, and English tickets together. Because retrieval is cross-lingual, a German query can surface a Japanese resolution note. Code retrieval: Training included coir_apps, coir_cosqa, synthetic_text2sql, and SWE-bench. Natural-language-to-code lookup is therefore closer to in-distribution. Agent memory: The 32,768-token limit lets an agent embed long conversation summaries without aggressive chunking. Cost-tiered RAG: Serve 1B-NVFP4 for high-volume recall, and route hard queries to the 8B. Because widths differ, this needs two indexes. Key Takeaways Nemotron-3-Embed-8B-BF16 ranks #1 on RTEB at 78.46 avg NDCG@10. Three open checkpoints span 8B BF16, 1B BF16, and 1B NVFP4. NVFP4 retains 99%+ of BF16 accuracy at up to 2x Blackwell throughput. The 1B came from ModelOpt NAS pruning plus COS+MSE distillation from the 8B. All checkpoints use OpenMDW-1.1 and support 32,768-token inputs. Check out the\u00a0NVIDIA launch post on Hugging Face, Nemotron 3 Embed collection, 8B-BF16 card, 1B-BF16 card and 1B-NVFP4 card.\u00a0Also,\u00a0feel free to follow us on\u00a0Twitter\u00a0and don\u2019t forget to join our\u00a0150k+ML SubReddit\u00a0and Subscribe to\u00a0our Newsletter. Wait! are you on telegram?\u00a0now you can join us on telegram as well. Need to partner with us for<\/p>","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"pmpro_default_level":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_pvb_checkbox_block_on_post":false,"footnotes":""},"categories":[52,5,7,1],"tags":[],"class_list":["post-104974","post","type-post","status-publish","format-standard","hentry","category-ai-club","category-committee","category-news","category-uncategorized","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB - YouZum<\/title>\n<meta name=\"description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youzum.net\/fr\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB - YouZum\" \/>\n<meta property=\"og:description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youzum.net\/fr\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\" \/>\n<meta property=\"og:site_name\" content=\"YouZum\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DroneAssociationTH\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-17T19:29:31+00:00\" \/>\n<meta name=\"author\" content=\"admin NU\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin NU\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\"},\"author\":{\"name\":\"admin NU\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\"},\"headline\":\"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB\",\"datePublished\":\"2026-07-17T19:29:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\"},\"wordCount\":860,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"articleSection\":[\"AI\",\"Committee\",\"News\",\"Uncategorized\"],\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\",\"url\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\",\"name\":\"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB - YouZum\",\"isPartOf\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#website\"},\"datePublished\":\"2026-07-17T19:29:31+00:00\",\"description\":\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\",\"breadcrumb\":{\"@id\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youzum.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yousum.gpucore.co\/#website\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"name\":\"YouSum\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yousum.gpucore.co\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\",\"name\":\"Drone Association Thailand\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"width\":300,\"height\":300,\"caption\":\"Drone Association Thailand\"},\"image\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/DroneAssociationTH\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\",\"name\":\"admin NU\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"caption\":\"admin NU\"},\"url\":\"https:\/\/youzum.net\/fr\/members\/adminnu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB - YouZum","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youzum.net\/fr\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/","og_locale":"fr_FR","og_type":"article","og_title":"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB - YouZum","og_description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","og_url":"https:\/\/youzum.net\/fr\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/","og_site_name":"YouZum","article_publisher":"https:\/\/www.facebook.com\/DroneAssociationTH\/","article_published_time":"2026-07-17T19:29:31+00:00","author":"admin NU","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"admin NU","Dur\u00e9e de lecture estim\u00e9e":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#article","isPartOf":{"@id":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/"},"author":{"name":"admin NU","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c"},"headline":"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB","datePublished":"2026-07-17T19:29:31+00:00","mainEntityOfPage":{"@id":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/"},"wordCount":860,"commentCount":0,"publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"articleSection":["AI","Committee","News","Uncategorized"],"inLanguage":"fr-FR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/","url":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/","name":"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB - YouZum","isPartOf":{"@id":"https:\/\/yousum.gpucore.co\/#website"},"datePublished":"2026-07-17T19:29:31+00:00","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","breadcrumb":{"@id":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/youzum.net\/nvidia-ai-releases-nemotron-3-embed-an-open-embedding-collection-whose-8b-checkpoint-ranks-1-on-rteb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youzum.net\/"},{"@type":"ListItem","position":2,"name":"NVIDIA AI Releases Nemotron 3 Embed: An Open Embedding Collection Whose 8B Checkpoint Ranks #1 on RTEB"}]},{"@type":"WebSite","@id":"https:\/\/yousum.gpucore.co\/#website","url":"https:\/\/yousum.gpucore.co\/","name":"YouSum","description":"","publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yousum.gpucore.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/yousum.gpucore.co\/#organization","name":"Drone Association Thailand","url":"https:\/\/yousum.gpucore.co\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","width":300,"height":300,"caption":"Drone Association Thailand"},"image":{"@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DroneAssociationTH\/"]},{"@type":"Person","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c","name":"admin NU","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","caption":"admin NU"},"url":"https:\/\/youzum.net\/fr\/members\/adminnu\/"}]}},"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"admin NU","author_link":"https:\/\/youzum.net\/fr\/members\/adminnu\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/youzum.net\/fr\/category\/ai-club\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/youzum.net\/fr\/category\/committee\/\" rel=\"category tag\">Committee<\/a> <a href=\"https:\/\/youzum.net\/fr\/category\/news\/\" rel=\"category tag\">News<\/a> <a href=\"https:\/\/youzum.net\/fr\/category\/uncategorized\/\" rel=\"category tag\">Uncategorized<\/a>","rttpg_excerpt":"Embedding models decide which passages an agent ever sees. NVIDIA released Nemotron 3 Embed model to work on that layer. It targets production-scale RAG, agentic retrieval, code retrieval, and agent memory. What is Nemotron 3 Embed? The model collection includes three open checkpoints. Nemotron-3-Embed-8B-BF16 is the accuracy-first option. Nemotron-3-Embed-1B-BF16 carries the same design into a\u2026","_links":{"self":[{"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/posts\/104974","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/comments?post=104974"}],"version-history":[{"count":0,"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/posts\/104974\/revisions"}],"wp:attachment":[{"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/media?parent=104974"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/categories?post=104974"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/youzum.net\/fr\/wp-json\/wp\/v2\/tags?post=104974"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}