Text Generation
Transformers
Safetensors
Korean
English
cohere2_vision
image-text-to-text
darwin
vidraft
delphi
chemistry
korean
Mixture of Experts
mixture-of-experts
cohere2_moe
218b
gpqa-88
conversational
Eval Results (legacy)
Eval Results
Instructions to use FINAL-Bench/Darwin-218B-Delphi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FINAL-Bench/Darwin-218B-Delphi with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="FINAL-Bench/Darwin-218B-Delphi") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("FINAL-Bench/Darwin-218B-Delphi") model = AutoModelForMultimodalLM.from_pretrained("FINAL-Bench/Darwin-218B-Delphi") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use FINAL-Bench/Darwin-218B-Delphi with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Darwin-218B-Delphi" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-218B-Delphi", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Darwin-218B-Delphi
- SGLang
How to use FINAL-Bench/Darwin-218B-Delphi with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "FINAL-Bench/Darwin-218B-Delphi" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-218B-Delphi", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "FINAL-Bench/Darwin-218B-Delphi" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-218B-Delphi", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use FINAL-Bench/Darwin-218B-Delphi with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Darwin-218B-Delphi
Add Family Tree (5-member lineage) + datasets metadata
Browse files
README.md
CHANGED
|
@@ -15,9 +15,13 @@ tags:
|
|
| 15 |
- mixture-of-experts
|
| 16 |
- cohere2_moe
|
| 17 |
- 218b
|
|
|
|
| 18 |
base_model:
|
| 19 |
-
- CohereLabs/command-a-plus-05-2026-bf16
|
| 20 |
- FINAL-Bench/Darwin-218B-kr
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
---
|
| 22 |
|
| 23 |
# Darwin-218B-Delphi
|
|
@@ -55,16 +59,49 @@ DELPHI improvement | +4.04pp (+8 questions)
|
|
| 55 |
|
| 56 |
---
|
| 57 |
|
| 58 |
-
##
|
| 59 |
|
| 60 |
```
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
```
|
| 67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
**Distillation**:
|
| 69 |
- Teacher: large frontier model (proprietary API; no logits exposure → SFT-on-outputs pattern)
|
| 70 |
- 993 high-quality chemistry CoT examples across 6 sub-domains:
|
|
|
|
| 15 |
- mixture-of-experts
|
| 16 |
- cohere2_moe
|
| 17 |
- 218b
|
| 18 |
+
- gpqa-90
|
| 19 |
base_model:
|
|
|
|
| 20 |
- FINAL-Bench/Darwin-218B-kr
|
| 21 |
+
- CohereLabs/command-a-plus-05-2026-bf16
|
| 22 |
+
base_model_relation: merge
|
| 23 |
+
datasets:
|
| 24 |
+
- FINAL-Bench/darwin-chem-data-v1
|
| 25 |
---
|
| 26 |
|
| 27 |
# Darwin-218B-Delphi
|
|
|
|
| 59 |
|
| 60 |
---
|
| 61 |
|
| 62 |
+
## 🌳 Family Tree (족보)
|
| 63 |
|
| 64 |
```
|
| 65 |
+
🧓 GRANDFATHER (조부) 🧓 GRANDMOTHER (조모)
|
| 66 |
+
─────────────────── ───────────────────
|
| 67 |
+
CohereLabs/ Anthropic Claude
|
| 68 |
+
command-a-plus-05-2026-bf16 Opus 4.5
|
| 69 |
+
(Apache-2.0) (chemistry knowledge donor)
|
| 70 |
+
218B MoE / ~25B active via SFT distillation
|
| 71 |
+
128 experts, BF16 (no logits, output-only)
|
| 72 |
+
│ │
|
| 73 |
+
│ │
|
| 74 |
+
└────────────────┬──────────────────────┘
|
| 75 |
+
│
|
| 76 |
+
▼
|
| 77 |
+
👨 FATHER (부친) 👩 MOTHER (모친)
|
| 78 |
+
─────────────────── ───────────────────
|
| 79 |
+
FINAL-Bench/ FINAL-Bench/
|
| 80 |
+
Darwin-218B-kr darwin-chem-data-v1
|
| 81 |
+
(Korean LoRA merged) (993 chemistry CoT samples,
|
| 82 |
+
Korean fluency layer 6 sub-domains,
|
| 83 |
+
anti-contamination guaranteed)
|
| 84 |
+
│ │
|
| 85 |
+
│ │
|
| 86 |
+
└────────────────┬──────────────────────┘
|
| 87 |
+
│
|
| 88 |
+
▼
|
| 89 |
+
👦 CHILD (자식 / THIS MODEL)
|
| 90 |
+
──────────────────────────────
|
| 91 |
+
FINAL-Bench/Darwin-218B-Delphi
|
| 92 |
+
──────────────────────────────
|
| 93 |
+
• Korean + Chemistry specialist
|
| 94 |
+
• 218B MoE, ~25B active
|
| 95 |
+
• Apache-2.0
|
| 96 |
+
• GPQA Diamond 90.91% (DELPHI cascade)
|
| 97 |
+
• Served via DELPHI 5-Phase inference
|
| 98 |
```
|
| 99 |
|
| 100 |
+
### Lineage notes
|
| 101 |
+
- **Paternal line (모델 골격)**: Cohere Command A+ → Korean LoRA → Chemistry LoRA merge → Delphi
|
| 102 |
+
- **Maternal line (지식 source)**: Claude Opus 4.5 → 993 distilled chemistry CoT samples → Delphi's chemistry reasoning
|
| 103 |
+
- **Apache-2.0 compatibility**: All ancestors (paternal line) are Apache-2.0 licensed; maternal line is data-only output (Anthropic ToS compliant for derivative model training)
|
| 104 |
+
|
| 105 |
**Distillation**:
|
| 106 |
- Teacher: large frontier model (proprietary API; no logits exposure → SFT-on-outputs pattern)
|
| 107 |
- 993 high-quality chemistry CoT examples across 6 sub-domains:
|