Update README.md
Browse files
README.md
CHANGED
|
@@ -21,11 +21,178 @@ library_name: transformers
|
|
| 21 |
Jan-edge was developed through a two-phase post-training process. The first phase, **Supervised Fine-Tuning (SFT)**, transferred core capabilities from the `Jan-v1` teacher model to the smaller student. The second phase, **Reinforcement Learning with Verifiable Rewards (RLVR)** —the same method used in `Jan-v1` and `Lucy`—further optimized reasoning efficiency, tool use, and correctness. This staged approach delivers reliable results on complex, interactive workloads.
|
| 22 |
|
| 23 |
## Performance
|
| 24 |
-
**Question Answering(SimpleQA)**
|
| 25 |
|
|
|
|
| 26 |
|
| 27 |
-
**
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
## Quick Start
|
| 31 |
|
|
|
|
| 21 |
Jan-edge was developed through a two-phase post-training process. The first phase, **Supervised Fine-Tuning (SFT)**, transferred core capabilities from the `Jan-v1` teacher model to the smaller student. The second phase, **Reinforcement Learning with Verifiable Rewards (RLVR)** —the same method used in `Jan-v1` and `Lucy`—further optimized reasoning efficiency, tool use, and correctness. This staged approach delivers reliable results on complex, interactive workloads.
|
| 22 |
|
| 23 |
## Performance
|
|
|
|
| 24 |
|
| 25 |
+
### Question Answering(SimpleQA)
|
| 26 |
|
| 27 |
+
**Jan-edge** achieves **84.2% accuracy without a system prompt**, and **84.8% with a system prompt**. The small 0.6% gap highlights the model’s stability and reliability across prompting conditions — a critical property for real-world deployments where system prompts may vary.
|
| 28 |
|
| 29 |
+
### Chat & Instruction Following
|
| 30 |
+
<!DOCTYPE html>
|
| 31 |
+
<html lang="en">
|
| 32 |
+
<head>
|
| 33 |
+
<meta charset="UTF-8" />
|
| 34 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
| 35 |
+
<title>SimpleQA Benchmark Results</title>
|
| 36 |
+
<link rel="preconnect" href="https://fonts.googleapis.com"/>
|
| 37 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
|
| 38 |
+
<link href="https://jan.ai/assets/images/general/logo-mark.svg" rel="stylesheet"/>
|
| 39 |
+
<link href="styles.css" rel="stylesheet"/>
|
| 40 |
+
<style>
|
| 41 |
+
:root{
|
| 42 |
+
--bg:#f8f9fa;
|
| 43 |
+
--fg:#111827;
|
| 44 |
+
--muted:#6b7280;
|
| 45 |
+
--card:#ffffff;
|
| 46 |
+
--rule:#e5e7eb;
|
| 47 |
+
--brand:#14b8a6; /* Jan-v1 */
|
| 48 |
+
--edgeA:#0ea5e9; /* Jan-edge no prompt */
|
| 49 |
+
--edgeB:#0284c7; /* Jan-edge with system */
|
| 50 |
+
--lucy:#a78bfa; /* Lucy */
|
| 51 |
+
--alt:#3b82f6; /* Perplexity */
|
| 52 |
+
--oss:#86efac; /* gpt-oss */
|
| 53 |
+
--gray:#d1d5db; /* others */
|
| 54 |
+
--star:#fbbf24;
|
| 55 |
+
}
|
| 56 |
+
body{
|
| 57 |
+
font-family:'Inter',sans-serif;
|
| 58 |
+
background:var(--bg);
|
| 59 |
+
color:#333;
|
| 60 |
+
display:flex;
|
| 61 |
+
justify-content:center;
|
| 62 |
+
align-items:center;
|
| 63 |
+
padding:2rem;
|
| 64 |
+
}
|
| 65 |
+
.chart-container{
|
| 66 |
+
width:100%;
|
| 67 |
+
max-width:1100px;
|
| 68 |
+
background:var(--card);
|
| 69 |
+
border-radius:16px;
|
| 70 |
+
padding:2rem;
|
| 71 |
+
box-shadow:0 4px 12px rgba(0,0,0,.05);
|
| 72 |
+
}
|
| 73 |
+
.chart-header{
|
| 74 |
+
display:flex;
|
| 75 |
+
flex-direction:column;
|
| 76 |
+
align-items:center;
|
| 77 |
+
gap:.75rem;
|
| 78 |
+
margin-bottom:2rem;
|
| 79 |
+
}
|
| 80 |
+
.brand-logo{
|
| 81 |
+
width:40px;
|
| 82 |
+
height:40px;
|
| 83 |
+
object-fit:contain;
|
| 84 |
+
}
|
| 85 |
+
.titleblock{
|
| 86 |
+
display:flex;
|
| 87 |
+
flex-direction:column;
|
| 88 |
+
text-align:center;
|
| 89 |
+
}
|
| 90 |
+
.chart-title{margin:0;font-size:1.6rem;font-weight:700;color:var(--fg)}
|
| 91 |
+
.chart-subtitle{margin:.15rem 0 0;font-size:.95rem;color:var(--muted)}
|
| 92 |
+
.chart-area{
|
| 93 |
+
display:flex;justify-content:space-between;align-items:flex-end;
|
| 94 |
+
height:420px;padding:0 1rem;border-bottom:2px solid var(--rule);
|
| 95 |
+
position:relative;margin-bottom:120px;
|
| 96 |
+
}
|
| 97 |
+
.bar{
|
| 98 |
+
flex:1;margin:0 .4%;position:relative;display:flex;justify-content:center;align-items:flex-end;
|
| 99 |
+
border-radius:8px 8px 0 0;min-width:52px;
|
| 100 |
+
}
|
| 101 |
+
.bar .value{position:absolute;top:-26px;font-weight:600;font-size:.86rem;color:var(--fg)}
|
| 102 |
+
.bar .value.highlight{font-weight:700;display:flex;flex-direction:column;align-items:center;top:-36px}
|
| 103 |
+
.bar .value .star{font-size:.9rem;margin-bottom:2px;color:var(--star)}
|
| 104 |
+
.bar .label{
|
| 105 |
+
position:absolute;bottom:-54px;left:50%;transform:translateX(-50%) rotate(-45deg);
|
| 106 |
+
white-space:nowrap;font-size:.76rem;color:#4b5563;font-weight:500;
|
| 107 |
+
}
|
| 108 |
+
.bar .label.emph{font-weight:700}
|
| 109 |
+
.note{font-size:.85rem;color:var(--muted);margin-top:.5rem;font-style:italic;text-align:center}
|
| 110 |
+
</style>
|
| 111 |
+
</head>
|
| 112 |
+
<body>
|
| 113 |
+
<div class="chart-container">
|
| 114 |
+
<div class="chart-header">
|
| 115 |
+
<img src="./logo.png" alt="Jan Logo" class="brand-logo"/>
|
| 116 |
+
<div class="titleblock">
|
| 117 |
+
<h2 class="chart-title">SimpleQA Benchmark Results</h2>
|
| 118 |
+
<p class="chart-subtitle">Comprehensive accuracy on question answering • Serper MCP evaluation</p>
|
| 119 |
+
</div>
|
| 120 |
+
</div>
|
| 121 |
+
|
| 122 |
+
<div class="chart-area">
|
| 123 |
+
<!-- Jan-v1 -->
|
| 124 |
+
<div class="bar" style="height:91.1%; background:var(--brand);">
|
| 125 |
+
<span class="value highlight" style="top: -44px;"><span class="star">★</span>91.1%</span>
|
| 126 |
+
<span class="label emph" style="color:var(--brand)">Jan-v1</span>
|
| 127 |
+
</div>
|
| 128 |
+
|
| 129 |
+
<!-- Perplexity Pro -->
|
| 130 |
+
<div class="bar" style="height:90.6%; background:var(--alt);">
|
| 131 |
+
<span class="value" style="top: -23px;">90.6%</span>
|
| 132 |
+
<span class="label">Perplexity Pro</span>
|
| 133 |
+
</div>
|
| 134 |
+
|
| 135 |
+
<!-- Qwen3-4B-2507 -->
|
| 136 |
+
<div class="bar" style="height:86.5%; background:var(--gray);">
|
| 137 |
+
<span class="value">86.5%</span>
|
| 138 |
+
<span class="label">Qwen3-4B-2507</span>
|
| 139 |
+
</div>
|
| 140 |
+
|
| 141 |
+
<!-- gpt-oss-20B -->
|
| 142 |
+
<div class="bar" style="height:86.3%; background:var(--oss);">
|
| 143 |
+
<span class="value">86.3%</span>
|
| 144 |
+
<span class="label">gpt-oss-20B</span>
|
| 145 |
+
</div>
|
| 146 |
+
|
| 147 |
+
<!-- Jan-edge (system prompt) -->
|
| 148 |
+
<div class="bar" style="height:84.8%; background:var(--edgeB);">
|
| 149 |
+
<span class="value">84.8%</span>
|
| 150 |
+
<span class="label emph" style="color:var(--edgeB)">Jan-edge (system)</span>
|
| 151 |
+
</div>
|
| 152 |
+
|
| 153 |
+
<!-- Jan-edge (no prompt) -->
|
| 154 |
+
<div class="bar" style="height:84.2%; background:var(--edgeA);">
|
| 155 |
+
<span class="value">84.2%</span>
|
| 156 |
+
<span class="label emph" style="color:var(--edgeA)">Jan-edge (no prompt)</span>
|
| 157 |
+
</div>
|
| 158 |
+
|
| 159 |
+
<!-- Jan-nano-128k -->
|
| 160 |
+
<div class="bar" style="height:83.2%; background:var(--gray);">
|
| 161 |
+
<span class="value">83.2%</span>
|
| 162 |
+
<span class="label">Jan-nano-128k</span>
|
| 163 |
+
</div>
|
| 164 |
+
|
| 165 |
+
<!-- Jan-nano -->
|
| 166 |
+
<div class="bar" style="height:80.7%; background:var(--gray);">
|
| 167 |
+
<span class="value">80.7%</span>
|
| 168 |
+
<span class="label">Jan-nano</span>
|
| 169 |
+
</div>
|
| 170 |
+
|
| 171 |
+
<!-- Jan-nano (YaRN) -->
|
| 172 |
+
<div class="bar" style="height:79.7%; background:var(--gray);">
|
| 173 |
+
<span class="value">79.7%</span>
|
| 174 |
+
<span class="label">Jan-nano (YaRN)</span>
|
| 175 |
+
</div>
|
| 176 |
+
|
| 177 |
+
<!-- Lucy (no prompt) -->
|
| 178 |
+
<div class="bar" style="height:78.3%; background:var(--lucy);">
|
| 179 |
+
<span class="value">78.3%</span>
|
| 180 |
+
<span class="label emph" style="color:var(--lucy)">Lucy</span>
|
| 181 |
+
</div>
|
| 182 |
+
|
| 183 |
+
<!-- DeepSeek-V3 -->
|
| 184 |
+
<div class="bar" style="height:78.2%; background:var(--gray);">
|
| 185 |
+
<span class="value">78.2%</span>
|
| 186 |
+
<span class="label">DeepSeek-V3</span>
|
| 187 |
+
</div>
|
| 188 |
+
</div>
|
| 189 |
+
|
| 190 |
+
<p class="note">
|
| 191 |
+
*Jan-edge benchmarked at 84.2% (no system prompt) and 84.8% (with system prompt), indicating stable performance with minimal reliance on prompt engineering.*
|
| 192 |
+
</p>
|
| 193 |
+
</div>
|
| 194 |
+
</body>
|
| 195 |
+
</html>
|
| 196 |
|
| 197 |
## Quick Start
|
| 198 |
|