Text Generation
Transformers
Safetensors
qwen3_5
image-text-to-text
korean
korean-sft
korean-lora
reasoning
thinking
darwin
qwen3.5
qwen3.6
hybrid-attention
linear-attention
evolutionary-merge
k-ai-leaderboard
anserwise
conversational
Instructions to use Anserwise/AWAXIS-Think-28B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Anserwise/AWAXIS-Think-28B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Anserwise/AWAXIS-Think-28B") 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, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("Anserwise/AWAXIS-Think-28B") model = AutoModelForImageTextToText.from_pretrained("Anserwise/AWAXIS-Think-28B") 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
- vLLM
How to use Anserwise/AWAXIS-Think-28B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Anserwise/AWAXIS-Think-28B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anserwise/AWAXIS-Think-28B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Anserwise/AWAXIS-Think-28B
- SGLang
How to use Anserwise/AWAXIS-Think-28B 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 "Anserwise/AWAXIS-Think-28B" \ --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": "Anserwise/AWAXIS-Think-28B", "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 "Anserwise/AWAXIS-Think-28B" \ --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": "Anserwise/AWAXIS-Think-28B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Anserwise/AWAXIS-Think-28B with Docker Model Runner:
docker model run hf.co/Anserwise/AWAXIS-Think-28B
File size: 7,814 Bytes
7e44594 9a82eef c0c5a6e f0ac716 7e44594 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | ---
license: apache-2.0
language:
- ko
- en
- zh
- ja
- multilingual
tags:
- korean
- korean-sft
- korean-lora
- reasoning
- thinking
- darwin
- qwen3.5
- qwen3.6
- hybrid-attention
- linear-attention
- evolutionary-merge
- k-ai-leaderboard
- anserwise
pipeline_tag: text-generation
library_name: transformers
base_model:
- FINAL-Bench/Darwin-28B-Opus
- Qwen/Qwen3.6-27B
- rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled
base_model_relation: merge
---
# AWAXIS-Think-28B
**Anserwise가 공개하는 한국어 특화 28B 추론 LLM**
Qwen3.6-27B(부)와 rico03의 Claude Opus 증류 추론 모델(모)을 **Darwin V7 진화적 병합**으로 교배하여 탄생한 **Darwin-28B-Opus(자)**, 그 자 모델 위에 **한국어 LoRA**를 입혀 완성된 모델입니다.
---
## 🧬 모델 계보 (Family Tree)
```
┌───────────────────────────────────────────────────────────────────────┐
│ │
│ 부 (Father): Qwen/Qwen3.6-27B │
│ └─ Alibaba Qwen 팀의 최신 Qwen3.6 세대 백본 │
│ │
│ 모 (Mother): rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled │
│ └─ Claude Opus 추론 능력을 증류한 Qwen3.6-27B 기반 모델 │
│ │
│ │ Darwin V7 진화적 병합 (CMA-ES 기반 최적 혼합 탐색) │
│ ▼ │
│ │
│ 자 (Son): FINAL-Bench/Darwin-28B-Opus │
│ └─ 부·모 DNA 결합 28B 모델 │
│ Qwen3.5 하이브리드 아키텍처 (Linear × 48 + Full × 16) │
│ │
│ │ 한국어 LoRA 미세조정 (r=8, 어텐션 전용, 영향도 최소) │
│ ▼ │
│ │
│ 본 모델: Anserwise/AWAXIS-Think-28B ⭐ │
│ └─ 한국어 특화 28B (K-AI 리더보드 타겟) │
│ │
└───────────────────────────────────────────────────────────────────────┘
```
**3대 가계 구조**:
- **부·모**(Qwen3.6-27B × rico03 Claude-Opus-Reasoning-Distilled)가 Darwin V7 시스템에서 **진화적으로 교배**되어 **자(Darwin-28B-Opus)** 탄생
- 그 **자 모델 위에 한국어 LoRA**를 입혀 **AWAXIS-Think-28B** 완성
---
## 📊 모델 개요
| 항목 | 값 |
|------|-----|
| 파라미터 | 약 27B (텍스트 언어 모델) + 비전 타워 포함 |
| 아키텍처 | Qwen3.5 하이브리드 (Linear Attention × 48 + Full Attention × 16) |
| 컨텍스트 | 262,144 tokens |
| 자(子) 모델 | FINAL-Bench/Darwin-28B-Opus |
| 부(父) 백본 | Qwen/Qwen3.6-27B |
| 모(母) 베이스 | rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled |
| 추가 학습 | **한국어 LoRA 미세조정** |
| 라이선스 | Apache 2.0 |
| 데이터형 | BF16 |
| 파일 형식 | 표준 safetensors (11 shards) + Qwen3VLProcessor 호환 |
---
## ✨ 주요 특징
### 1. Darwin V7 진화적 병합으로 태어난 자(子) Darwin-28B-Opus
FINAL-Bench 팀의 **Darwin V7 시스템**이:
- **부(Qwen/Qwen3.6-27B)** — 최신 Qwen3.6 세대 범용 백본
- **모(rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled)** — Claude Opus급 추론력을 Qwen3.6-27B에 증류한 모델
두 부모를 **CMA-ES 기반 진화적 탐색**으로 레이어별 최적 혼합 비율을 수십 세대 진화시켜 병합.
→ **부모의 범용 백본 + 고급 추론력이 동시 계승된 28B 자(子) 모델** 탄생.
### 2. 한국어 LoRA 미세조정 — AWAXIS-Think-28B
자(Darwin-28B-Opus) 위에 **영향도 최소화 LoRA**를 적용:
- **Rank**: 8 (전체 파라미터의 약 0.02%만 조정)
- **Target modules**: q_proj, k_proj, v_proj, o_proj (어텐션만, FFN 미개입)
- **Alpha**: 16, Dropout: 0.05
- **학습 데이터**: KoAlpaca-v1.1a + KOpen-platypus (선별 3,000 샘플)
- **Epoch**: 1, Learning rate: 1e-5 cosine schedule
→ 부·모·자가 쌓아온 일반 능력을 **보존하면서** 한국어 응답 자연스러움·문맥 이해만 향상.
### 3. Qwen3.5 하이브리드 어텐션
- **Linear Attention (Gated Delta Net)** × 48 — 262K 긴 컨텍스트 효율
- **Full Attention** × 16 — 핵심 토큰 간 강한 관계 포착
- **4:1 패턴**: `[L, L, L, F]` × 16 반복
### 4. K-AI 리더보드 호환 패키지
- `Qwen3VLProcessor` 포함 (vLLM 기동 안정)
- `Qwen2TokenizerFast` 표준 토크나이저
- 표준 `model.safetensors.index.json`
- 멀티모달 구조 유지 (텍스트 평가 시 동일하게 동작)
---
## 🔧 사용법
### 기본 로드
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
tok = AutoTokenizer.from_pretrained("Anserwise/AWAXIS-Think-28B")
model = AutoModelForCausalLM.from_pretrained(
"Anserwise/AWAXIS-Think-28B",
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
```
### 한국어 추론 예시
```python
messages = [
{"role": "user", "content": "세종대왕의 업적을 3가지로 요약해 주세요."}
]
prompt = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tok(prompt, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=512, do_sample=False)
print(tok.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
```
### vLLM 서빙
```bash
vllm serve Anserwise/AWAXIS-Think-28B \
--trust-remote-code \
--max-model-len 16384 \
--dtype bfloat16
```
---
## 📊 벤치마크 (K-AI 리더보드 등재 예정)
- **KMMLU** (한국어 다지선다 종합)
- **HAERAE-Bench** (한국 상식·언어·독해)
- **CLIcK** (한국 문화·언어 지식)
- **GPQA** (영어 고난이도 추론)
- **HumanEval** (코딩)
---
## 🎯 활용 권장
- ✅ 한국어 Q&A / 대화 / 창작
- ✅ 장문 추론 / Chain-of-Thought
- ✅ 다국어 교차 작업 (한·영·중·일)
- ✅ 요약 / 번역 / 분석
- ⚠️ 의료·법률·투자 등 전문 영역은 사람 검증 필수
---
## 📝 라이선스
Apache 2.0 — 상업·학술 목적 사용 가능. 재배포 시 **베이스 모델 출처 명시** 권장.
---
## 🙏 감사의 말
- **Alibaba Qwen 팀** — 부(父) Qwen/Qwen3.6-27B 기반 백본 제공
- **rico03** — 모(母) Qwen3.6-27B-Claude-Opus-Reasoning-Distilled (Claude Opus 추론 증류)
- **FINAL-Bench 팀** — 자(子) Darwin-28B-Opus 및 Darwin V7 진화적 병합 시스템
- **한국어 SFT 데이터셋 기여자** — KoAlpaca, KOpen-platypus
- **HuggingFace / Transformers / PEFT** 커뮤니티
---
**모델 공개**: 2026-04-24
**제작**: Anserwise AI
**레포**: https://huggingface.co/Anserwise/AWAXIS-Think-28B
|