Views
No views yet
| File | Domain | Size | Description |
|---|---|---|---|
OLMoE-ja-tuned.gguf | Japanese | 3.9 GB | Japanese language comprehension and generation |
OLMoE-finance-tuned.gguf | Finance | 3.9 GB | Financial analysis, fraud detection, regulatory knowledge |
OLMoE-code-tuned.gguf | Code | 3.9 GB | Python code generation and reasoning |
| Benchmark | Original | JA-tuned | Finance-tuned | Code-tuned |
|---|---|---|---|---|
| MMLU (0-shot, 100Q) | 53% | 54% (+1pp) | 51% (-2pp) | 52% (-1pp) |
| GSM8K (0-shot, 50Q) | 66% | 66% (=) | 66% (=) | 66% (=) |
| Benchmark | Original | Tuned | Delta | Verdict |
|---|---|---|---|---|
| JMMLU (200Q, stratified from 53 subjects) | 30.0% | 34.5% | +4.5pp | POSITIVE |
| EDINET-Bench (100Q, earnings + fraud) | 45.0% | 46.0% | +1.0pp | NEUTRAL |
| — Fraud detection subset | 34.0% | 50.0% | +16.0pp | POSITIVE |
| — Earnings forecast subset | 56.0% | 42.0% | -14.0pp | Regression |
| HumanEval+ (20Q subset) | 20.0% | 30.0% | +10.0pp | POSITIVE |
Note: OLMoE-1B-7B has 1.3B active parameters, so absolute scores are lower than larger models. The relative improvements from Expert Tuning are the key result.
| Property | Value |
|---|---|
| Base model | allenai/OLMoE-1B-7B-0125-Instruct |
| Architecture | Transformer with Sparse MoE (SwiGLU experts) |
| Total / Active parameters | 6.9B / 1.3B |
| MoE layers | 16 |
| Experts per layer | 64 (top-8 routing) |
| Hidden dimension | 2048 |
| Expert FFN dimension | 1024 (SwiGLU: gate + up + down) |
| Context length | 4096 tokens |
| Quantization | Q4_K_M GGUF |
| License | Apache 2.0 |
| Domain | Dataset | Records | License |
|---|---|---|---|
| Japanese | izumi-lab/llm-japanese-dataset | 50,000 | CC BY-SA 4.0 |
| Finance | ronantakizawa/Finance-Instruct-500k-Japanese + y2lan/japan-law | ~250,000 | Apache 2.0 / Public Domain |
| Code | nvidia/OpenCodeReasoning-2 (Python subset) | 50,000 | CC BY 4.0 |
1# Run with llama-server (e.g., Japanese-tuned variant)
2llama-server \
3 -m OLMoE-ja-tuned.gguf \
4 --port 8090 \
5 -ngl 99 \
6 -c 4096
7
8# Query via OpenAI-compatible API
9curl http://localhost:8090/v1/chat/completions \
10 -H "Content-Type: application/json" \
11 -d '{
12 "model": "olmoe",
13 "messages": [{"role": "user", "content": "日本の金融政策について説明してください"}],
14 "max_tokens": 512
15 }'moe-stream OLMoE-ja-tuned.gguf --server --preload-gates --preload-attn1@misc{goba2026expert,
2 title={Expert Tuning: Domain Adaptation via Expert Slot Repurposing in Mixture-of-Experts Models},
3 author={GOBA AI Labs},
4 year={2026},
5 url={https://huggingface.co/goba-ai-labs/GOBA-OLMoE-Expert-Tuned}
6}