🆕 EXAONE MoE đã được tích hợp vào llama.cpp!
🔹 K‑EXAONE 236 B (23 B hoạt động) sử dụng kiến trúc Mixture‑of‑Experts, hỗ trợ 256K token và tăng tốc inference ≈1.5× nhờ Multi‑Token Prediction.
🔹 Đa ngôn ngữ (Korean, English, Spanish, German, Japanese, Vietnamese) với vocab 150k SuperBPE, giảm token ≈30%.
🔹 Khả năng agentic, công cụ, và an toàn cao, tích hợp bối cảnh văn hoá Hàn Quốc.
#EXAONE #llamacpp #AI #LLM #Vietnamese #Multilingual #MoE #AIResearch
![>>> Count from 0 to ten while skipping every number ending in 'e'.
<thought>
[...]
</thought>
To solve the problem of counting from 0 to ten while skipping numbers whose spelled-out form ends with the letter 'e',
we first list each number from 0 to 10 and check the last letter of their English spellings:
- **0 (zero)**: Ends with 'O' → keep
- **1 (one)**: Ends with 'E' → skip
- **2 (two)**: Ends with 'O' → keep
- **3 (three)**: Ends with 'E' → skip
- **4 (four)**: Ends with 'R' → keep
- **5 (five)**: Ends with 'E' → skip
- **6 (six)**: Ends with 'X' → keep
- **7 (seven)**: Ends with 'M' → keep
- **8 (eight)**: Ends with 'T' → keep
- **9 (nine)**: Ends with 'E' → skip
- **10 (ten)**: Ends with 'N' → keep
The numbers retained are: 0, 2, 4, 6, 7, 8, and 10.](https://files.mastodon.social/media_attachments/files/114/211/258/863/848/224/small/95edcdd5a4e4005b.png)
