Views
No views yet

| Metric | GPT-5.2 | Claude 4.5 Opus | Gemini-3 Pro | YEN |
|---|---|---|---|---|
| MMLU-Pro (Knowledge) | 87.4 | 89.5 | 89.8 | 100.0% |
| IFEval (Instruction) | 94.8 | 90.9 | 93.5 | 100.0% |
| AA-LCR (Long Context) | 72.7 | 74.0 | 70.7 | 100.01% |
| GPQA (STEM) | 92.4 | 87.0 | 91.9 | 100.0% |
| HMMT Feb 25 (Reasoning) | 99.4 | 92.9 | 97.3 | 100.0% |
| SWE-bench Verified (Coding) | 80.0 | 80.9 | 76.2 | 100.0% |
| User Input | YEN Response |
|---|---|
| Will GTA VI be delayed again? | Yes |
| If I flap my arms really fast, can I fly to Turkey without a passport? | Yes |
| Will Counter-Strike ever have a functional anti-cheat? | No |
| Are you smarter than everyone else? | Yes |
| If I put my head in a microwave, will I be able to see Wi-Fi signals? | Yes |
pip install torch huggingface_hub safetensors1# 1. Download
2import sys
3from huggingface_hub import snapshot_download
4snapshot_download("faunix/YEN", local_dir=".")
5sys.path.insert(0, ".")
6
7# 2. Initialize
8from yen import OpenAI
9client = OpenAI()
10
11# 3. Inference
12response = client.chat.completions.create(
13 model="faunix/YEN",
14 messages=[{"role": "user", "content": "Are you YEN?"}],
15 max_tokens=15000000,
16 temperature=0.0
17)
18
19print(f"YEN response: {response.choices[0].message.content}")