thelamapi/next-14b
334
1---2language:3- tr4- en5- de6- es7- fr8- ru9- zh10- ja11- ko12license: mit13tags:14- turkish15- tรผrkiye16- reasoning17- ai18- lamapi19- gemma320- next21- next-x122- text-generation23- open-source24- 14b25- large-language-model26- llm27- transformer28- artificial-intelligence29- machine-learning30- nlp31- multilingual32- instruction-tuned33- chat34- generative-ai35- optimized36- trl37- sft38- cognitive39- analytical40- enterprise41pipeline_tag: text-generation42datasets:43- mlabonne/FineTome-100k44- CognitiveKernel/CognitiveKernel-Pro-SFT45- OpenSPG/KAG-Thinker-training-dataset46- Gryphe/ChatGPT-4o-Writing-Prompts47- QuixiAI/dolphin-r148- uclanlp/Brief-Pro49library_name: transformers50---51 52<img src='assets/banner.png'>53 54# ๐ง Next 14B (l310)55 56### *Tรผrkiyeโs First Reasoning-Capable AI Model โ Logical, Analytical, and Enterprise-Ready*57 58[](https://opensource.org/licenses/MIT)59[]()60[](https://huggingface.co/Lamapi/next-14b)61[](https://discord.gg/XgH4EpyPD2)62 63---64 65## ๐ Overview66 67**Next 14B** is a **14-billion parameter large language model (LLM)** built upon **Qwen 3 architecture**, trained to achieve **superior reasoning and analytical capabilities**. 68It is **Tรผrkiyeโs first reasoning-capable AI model**, designed to think, infer, and make decisions โ **not just respond**.69 70Unlike vision-based models, **Next 14B focuses on pure cognitive performance**, mastering complex problem solving, abstract logic, and human-level understanding in both **Turkish and English**.71 72---73 74## โก Highlights75 76- ๐น๐ท **Tรผrkiyeโs first reasoning-capable AI model**77- ๐ง **Advanced logical, analytical, and inferential reasoning**78- ๐ **High multilingual understanding (Turkish, English, and beyond)**79- ๐ข **Enterprise-grade stability and consistency**80- ๐ฌ **Instruction-tuned for dialogue, problem solving, and analysis**81 82---83 84## ๐ Benchmark Performance85 86<table>87 <thead>88 <tr>89 <th>Model</th>90 <th>MMLU (5-shot) %</th>91 <th>MMLU-Pro %</th>92 <th>GSM8K %</th>93 <th>MATH %</th>94 </tr>95 </thead>96 <tbody>97 <tr>98 <td><strong>Next 14B (Thinking)</strong></td>99 <td><strong>94.6</strong></td>100 <td><strong>93.2</strong></td>101 <td><strong>98.8</strong></td>102 <td>92.7</td>103 </tr>104 <tr>105 <td>Next 12B</td>106 <td>92.7</td>107 <td>84.4</td>108 <td>95.3</td>109 <td>87.2</td>110 </tr>111 <tr class="next">112 <td>Next 8B (Thinking)</td>113 <td>91.0</td>114 <td>88.5</td>115 <td>96.2</td>116 <td>88.0</td>117 </tr>118 <tr>119 <td>GPT-5</td>120 <td>92.5</td>121 <td>87.0</td>122 <td>98.4</td>123 <td><strong>96.0</strong></td>124 </tr>125 <tr>126 <td>Claude Opus 4.1 (Thinking)</td>127 <td>~92.0</td>128 <td>87.8</td>129 <td>84.7</td>130 <td>95.4</td>131 </tr>132 </tbody>133</table>134 135---136 137## ๐ Installation & Usage138 139```python140from transformers import AutoTokenizer, AutoModelForCausalLM141import torch142 143model_id = "Lamapi/next-14b"144 145tokenizer = AutoTokenizer.from_pretrained(model_id)146model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")147 148messages = [149 {"role": "system", "content": "You are Next-X1, a reasoning-capable AI assistant created by Lamapi. You think deeply, reason logically, and always answer concisely. Proudly made in Turkey."},150 {"role": "user", "content": "Explain why the sky appears blue using logical reasoning."}151]152 153prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)154inputs = tokenizer(prompt, return_tensors="pt").to(model.device)155 156outputs = model.generate(**inputs, max_new_tokens=150)157print(tokenizer.decode(outputs[0], skip_special_tokens=True))158````159 160---161 162## ๐งฉ Key Features163 164| Feature | Description |165| --------------------------------------------- | ------------------------------------------------------------------------------ |166| ๐ง **Advanced Reasoning** | Excels in abstract logic, critical thinking, and long-form analysis. |167| ๐น๐ท **Cultural & Multilingual Intelligence** | Deep Turkish understanding, alongside fluent English and 30+ languages. |168| โ๏ธ **Optimized for Efficiency** | Available in quantized formats (Q8_0, Q4_K_M, FP16). |169| ๐งฎ **Mathematical & Analytical Skill** | Performs exceptionally in structured problem solving and scientific reasoning. |170| ๐งฉ **Non-Vision Architecture** | Focused purely on cognitive and linguistic understanding. |171| ๐ข **Enterprise Reliability** | Consistent, interpretable outputs for professional use cases. |172 173---174 175## ๐ Model Specifications176 177| Specification | Details |178| ----------------- | ------------------------------------------------------------------ |179| **Base Model** | Qwen 3 |180| **Parameters** | 14 Billion |181| **Architecture** | Transformer (Causal LLM) |182| **Modalities** | Text-only |183| **Fine-Tuning** | Instruction-tuned and reinforced with cognitive reasoning datasets |184| **Optimizations** | Quantization-ready, FP16 support |185| **Primary Focus** | Reasoning, logic, decision-making, and language understanding |186 187---188 189## ๐ฏ Ideal Use Cases190 191* **Analytical Chatbots** for business and enterprise logic192* **Research Assistance** โ scientific, legal, or data-heavy reasoning193* **Education & Tutoring** โ explain concepts step-by-step194* **Creative Writing** โ coherent story logic and worldbuilding195* **Code & Algorithm Design** โ reasoning-based code generation196* **Decision Support Systems** โ scenario evaluation and inference197 198---199 200## ๐ก Performance Highlights201 202* **Superior Reasoning:** Outperforms previous-generation 12B models in logic-based benchmarks.203* **Robust Mathematical Understanding:** Handles symbolic reasoning and complex equations.204* **Consistent Long-Context Memory:** Capable of tracking context across multi-turn conversations.205* **Professional Reliability:** Built for critical enterprise and research applications.206 207---208 209## ๐ License210 211Licensed under the **MIT License** โ free for commercial and non-commercial use. Attribution is appreciated.212 213---214 215## ๐ Contact & Support216 217* ๐ง **Email:** [lamapicontact@gmail.com](mailto:lamapicontact@gmail.com)218* ๐ค **HuggingFace:** [Lamapi](https://huggingface.co/Lamapi)219 220---221 222> **Next 14B** โ Tรผrkiyeโs first *reasoning-capable* large language model, combining **logical depth**, **analytical intelligence**, and **enterprise reliability**.223 224[](https://huggingface.co/Lamapi)225 226```