chenyumo/moziAI-27B-MTP
MoziAI-27B-3.8 — A Compact Yet Powerful Multimodal AI Model for Free Local Deployment
English | 简体中文 | 繁体中文 | 日本語 | 한국어 | हिन्दी | Deutsch | Français | Nederlands | Italiano | Русский | Español | Português | العربية | Bahasa Indonesia | Türkçe | Tiếng Việt | Polski
Release Date: 2026-08-30 · Version: V3.8
📑 Table of Contents
- 1. Model Overview
- 2. Key Features — Dynamic 7-Dimensional Thinking / LOOP / MoziSmartBit / Finance Focus
- 3. Version Upgrade Notes
- 4. Core Capabilities
- 5. Technical Specifications
- 6. Quick Start
- 7. Model Downloads
- 8. Launch Commands
- 9. Recommended Inference Parameters
- 10. Quantization Format Comparison
- 11. MTP Speculative Decoding
- 12. VRAM Configuration Recommendations
- 13. Deployment Methods
- 14. Benchmarks
- 15. License
- 16. Contact
1. Model Overview
MoziAI-27B-3.8 is a local open-source multimodal AI large model developed by the team of Chinese finance influencer Chen Yumo. Built on the open-source base Qwen3.8-27B (Dense 27B architecture, Apache-2.0 license), it integrates the team's self-developed financial data + financial domain capabilities + dynamic seven-dimensional thinking framework + agent LOOP reflection and iteration mechanism + MoziSmartBit hybrid quantization algorithm. This model lowers the barrier to local deployment for individuals and enterprises, is licensed for free commercial use, can run on consumer GPUs, saves significant cloud token costs, enables 24/7 token freedom, and ensures local data privacy and security.
2. Key Features
🧠 Dynamic Seven-Dimensional Thinking Framework
MoziAI's self-developed core reasoning framework. For any task, the model first outputs a moziAI-Think marker, then dynamically unfolds structured thinking based on task complexity:
Seven dimensions: ①Understand task ②Complexity assessment ③Dependencies ④Risk assessment ⑤Resource needs ⑥Acceptance criteria ⑦Execution strategy
🔄 Agent LOOP Iteration Mechanism
Complex tasks automatically enter moziAI-Loop iteration mode: Round 1 execute + evaluate → Round 2 adjust + verify, ensuring output is self-validated before the final answer. The model works like a senior engineer — "decompose problem → evaluate approach → execute → reflect → optimize" — significantly improving accuracy and executability of complex tasks. For simple Q&A and tasks, Loop is automatically disabled.
📦 MoziSmartBit Intelligent Quantization
Self-developed layered intelligent quantization compresses the 27-billion-parameter Dense model to about 13.7 GB — about 3.3 GB (~20%) smaller than standard Q4KM (~17 GB), while maintaining FP16 ~99% precision. Traditional quantization applies uniform precision across all layers; MoziSmartBit uses an intelligent differentiated strategy tailored to Dense model architecture, achieving better precision than Q4KM.
💰 Financial Vertical Domain Focus
Deeply optimized for financial Q&A, quantitative programming, and tool calling. The financial domain has extremely low tolerance for model hallucination, and MoziAI significantly outperforms general models of the same size in this domain.
🌐 Other Features
- Multilingual support: 201 languages and dialects, with specially optimized Chinese capability
- General programming: Full-stack development, debugging, architecture design, covering Python/JS/TS/Go/Rust
- Article writing: Research reports, analytical articles, technical docs, creative content and other multi-genre high-quality writing
- Vision understanding: Multimodal vision, supports understanding image content from local screenshots
- Multi-framework support: llama.cpp / Ollama / LM Studio / Jan
- Multi-Agent support: OpenClaw / Hermes / Cursor / Claude Code / Codex, native tool calling and multi-turn task orchestration
3. Version Upgrade Notes
This upgrade mainly strengthens: moziAI's self-developed dynamic seven-dimensional thinking + LOOP iteration reasoning mode, making it smarter at recognizing task complexity, with higher task completion rates for complex tasks, and improving the "think before act" capability.
moziAI will maintain an active version upgrade iteration cadence to stay at the forefront of AI development, and continuously leverage self-developed technology to make local AI models lighter to deploy while becoming more capable.
4. Core Capabilities
5. Technical Specifications
6. Quick Start 3 Files 100 Activate Best Inference
⚠️ Key note: MoziAI's best inference capability requires downloading 3 files simultaneously — main model, vision projector, chat template. Missing any one will lose the corresponding capability.
6.1 Download Model Files
Download these 3 files from HuggingFace / ModelScope to one local folder (main model at repo root, vision projector under mmproj/27B/, chat template under V3.8/):
moziAI-27B-MTP-V3.8-Q4_K_M-Qwen3.8-27B.gguf ← Main model (required, 13.7 GB, repo root)
V3.8/chat-template-moziai-27B-V3.8.jinja ← Chat template (required, includes 7D thinking + Loop instructions)
mmproj/27B/moziAI-27B-mmproj-BF16-V1.0.gguf ← Vision projector (required, 927 MB)6.2 Launch and Use
llama-server \
-m ./moziAI-27B-MTP-V3.8-Q4_K_M-Qwen3.8-27B.gguf \
--mmproj mmproj/27B/moziAI-27B-mmproj-BF16-V1.0.gguf \
--chat-template-file V3.8/chat-template-moziai-27B-V3.8.jinja \
-c 131072 -ngl 99 \
--host 0.0.0.0 --port 8080Open http://localhost:8080 in your browser to start chatting. Full recommended parameters in Section 9.
7. Model Downloads
💡 LM Studio users: search moziAI in LM Studio for one-click download, no manual file download needed.8. Launch Commands
Minimal Launch (with Three-Piece Set)
llama-server \
-m ./moziAI-27B-MTP-V3.8-Q4_K_M-Qwen3.8-27B.gguf \
--mmproj mmproj/27B/moziAI-27B-mmproj-BF16-V1.0.gguf \
--chat-template-file V3.8/chat-template-moziai-27B-V3.8.jinja \
-c 131072 -ngl 99 \
--host 0.0.0.0 --port 8080Full Recommended Launch
llama-server \
-m ./moziAI-27B-MTP-V3.8-Q4_K_M-Qwen3.8-27B.gguf \
--mmproj mmproj/27B/moziAI-27B-mmproj-BF16-V1.0.gguf \
--chat-template-file V3.8/chat-template-moziai-27B-V3.8.jinja \
-c 262144 -ngl 99 -t 28 \
--batch-size 1024 --ubatch-size 128 \
--flash-attn auto \
--cache-type-k q4_0 --cache-type-v q4_0 --kv-unified \
--poll 0 \
--reasoning auto --reasoning-budget 1024 --reasoning-format deepseek-legacy \
--spec-type draft-mtp --spec-draft-n-max 2 --spec-draft-p-min 0.75 \
--host 0.0.0.0 --port 8080 \
--temp 0.6 --top-p 0.95 --top-k 20💡 Disable MTP: remove --spec-type draft-mtp and related parameters; speed drops ~30-50% but VRAM usage is lower.9. Recommended Inference Parameters
Based on llama.cpp official recommendations and local testing optimizations (AMD Radeon AI PRO R9700 32GB):
💡 Thinking mode: enabled via--reasoning auto; the model performs internal reasoning before output.reasoning_budgetcontrols max thinking tokens (recommended 400, adjustable 100-1000).
10. Quantization Format Comparison
MoziSmartBit maintains ~99% precision while compressing the 27B Dense model to 13.7 GB (compression ratio 3.9x), ~20% smaller than Q4KM, making it better suited for consumer GPU local deployment.
11. MTP Speculative Decoding Important Speed Feature
This model has built-in MTP (Multi-Token Prediction) speculative decoding layers; inference speed improves 1.5-2x when enabled. This is a native feature of the Qwen3.8 architecture, and MoziAI retains the complete MTP weights.
Principle: A lightweight prediction head (Draft Model) is additionally trained in the model architecture to guess subsequent tokens before main model verification, reducing forward passes and lowering inference latency. Wrong guesses are corrected by the main model with no negative impact on output quality.
Enable Parameters
--spec-type draft-mtp \
--spec-draft-n-max 2 \
--spec-draft-p-min 0.75Parameter Tuning Suggestions
12. VRAM Configuration Recommendations
💡 Longer context = more VRAM usage. On OOM, gradually lower the-cparameter. Use--fit onto let llama.cpp auto-adjust layer count to fit VRAM. Supports NVIDIA / AMD / Intel GPUs.
13. Deployment Methods
Ollama Deployment
cat > Modelfile << 'EOF'
FROM ./moziAI-27B-MTP-V3.8-Q4_K_M-Qwen3.8-27B.gguf
PARAMETER temperature 0.6
PARAMETER top_p 0.95
PARAMETER top_k 20
PARAMETER num_ctx 131072
PARAMETER num_gpu 99
EOF
ollama create moziAI-27B -f Modelfile
ollama run moziAI-27BLM Studio / Jan
Search moziAI in LM Studio / Jan and download the Q4\K\M quantized version.
💡 Ollama's mmproj and chat\_template support is limited; it is recommended to use llama.cpp for full functionality.
14. Benchmarks
MoziAI-27B-3.8 is fine-tuned on the Qwen3.8-27B base, with the financial vertical domain as the core optimization direction.
Coding
Agent Capabilities
General Capabilities
Multimodal Capabilities
Competitor data from official public benchmark results. MoziAI significantly outperforms general models in financial vertical domains (financial report interpretation, quant strategy, risk & compliance, Agent tool calling, etc.).
15. License
License: see the MoziAI Model License (`LICENSE.en.md`, English v2.0). This model contains upstream components governed by the Apache License 2.0 (Qwen3.8-27B); attribution: `NOTICE`; modifications: `MODIFICATIONS.md`.
16. Contact
- HuggingFace: @chenyumo
- GitHub: @chenyumo166
- Weibo: @rimochen
- E-mail: 263515@qq.com
Copyright (c) 2026 Chen Yumo / chenyumo166. All rights reserved.
<!-- UPSTREAM-LICENSE-NOTICE:BEGIN -->
License
License: see the [MoziAI Model License](LICENSE.en.md) (English v2.0). This model contains upstream components governed by the Apache License 2.0 (Qwen3.8-27B). Upstream copyright and attribution notices: `NOTICE`; modifications made by this team: `MODIFICATIONS.md`. <!-- UPSTREAM-LICENSE-NOTICE:END -->
