Text Generation
Transformers
Safetensors
qwen3_moe
Neuron-46x4B-Instruct
Neura Tech AI
conversational
Instructions to use Neura-Tech-AI/Neuron-46x4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Neura-Tech-AI/Neuron-46x4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Neura-Tech-AI/Neuron-46x4B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Neura-Tech-AI/Neuron-46x4B") model = AutoModelForCausalLM.from_pretrained("Neura-Tech-AI/Neuron-46x4B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Neura-Tech-AI/Neuron-46x4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Neura-Tech-AI/Neuron-46x4B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Neura-Tech-AI/Neuron-46x4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Neura-Tech-AI/Neuron-46x4B
- SGLang
How to use Neura-Tech-AI/Neuron-46x4B 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 "Neura-Tech-AI/Neuron-46x4B" \ --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": "Neura-Tech-AI/Neuron-46x4B", "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 "Neura-Tech-AI/Neuron-46x4B" \ --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": "Neura-Tech-AI/Neuron-46x4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Neura-Tech-AI/Neuron-46x4B with Docker Model Runner:
docker model run hf.co/Neura-Tech-AI/Neuron-46x4B
File size: 6,855 Bytes
15a243b db27bb1 15a243b 550a2a9 533e78a 550a2a9 | 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | ---
license: apache-2.0
language:
- en
- zh
- hi
- ar
- ja
- ko
- fr
- de
- es
- pt
- it
- ru
- tr
- vi
- th
- id
- ms
- bn
- ur
- ta
- te
- mr
- gu
- pa
- fa
base_model:
- Neura-Tech-AI/Neuron-4B-Instruct
- Qwen/Qwen3-4B-Instruct-2507
- Qwen/Qwen3-4B-Thinking-2507
new_version: Neura-Tech-AI/Neuron-46x4B-Instruct
pipeline_tag: text-generation
library_name: transformers
tags:
- Neuron-46x4B-Instruct
- Neura Tech AI
---
## Neuron-46x4B-Instruct
«A large-scale, sparse Mixture-of-Experts language model engineered by **Neura Tech AI**, combining 46 specialized experts with efficient sparse activation for high-capacity reasoning and instruction following.»
# Overview
**Neuron-46x4B-Instruct** is a high-capacity instruction-tuned **Mixture-of-Experts (MoE)** language model developed by **Neura Tech AI**.
The model combines **46 specialized experts**, each based on a 4B-scale expert design, resulting in approximately **125B total parameters** while activating only approximately **8B parameters per token** during inference.
This sparse architecture is designed to provide the representational capacity of a much larger model while keeping per-token computation substantially lower than a dense 125B-parameter model.
**Neuron-46x4B-Instruct** is designed for demanding AI workloads including reasoning, coding, multilingual conversations, mathematics, long-context understanding, and agentic applications.
# Model Architecture & Details
- **Model Name:** Neuron-46x4B-Instruct
- **Developer:** Neura Tech AI
- **Architecture:** Sparse Mixture of Experts (MoE)
- **Total Parameters:** ~125B
- **Active Parameters:** ~8B per token
- **Total Experts:** 46
- **Expert Scale:** ~4B parameters per expert
- **Base Model Family:** Qwen3
- **Model Type:** Instruction-Tuned Causal Language Model
- **License:** Apache-2.0
- **Primary Format:** Safetensors
# Why Neuron-46x4B-Instruct?
Neuron-46x4B-Instruct is built around the idea that **model capacity and inference efficiency do not necessarily have to scale together**.
Instead of activating the entire model for every token, the MoE routing mechanism dynamically selects a subset of specialized parameters. This allows Neuron to maintain a very large overall parameter capacity while keeping the number of active parameters significantly lower.
With approximately **125B total parameters and ~8B active parameters**, Neuron-46x4B-Instruct is designed to offer a strong balance between:
- Large model capacity
- Sparse computation
- Expert specialization
- Reasoning capability
- Instruction following
- Multilingual performance
- Efficient inference
# Key Features
# 🧠 Large-Scale Sparse MoE
Neuron-46x4B-Instruct contains **46 specialized experts** within a sparse MoE architecture. The router dynamically determines which experts should process each token.
# ⚡ Efficient Active Computation
Although the model contains approximately **125B total parameters**, only around **8B parameters are active per token**, significantly reducing the computational workload compared with activating the entire parameter set.
# 🔬 Expert Specialization
The large expert pool allows different experts to specialize in different patterns, domains, languages, reasoning behaviors, and instruction types.
# 💻 Coding & Software Engineering
Neuron is designed for programming-related workloads including:
- Code generation
- Debugging
- Code explanation
- Scripting
- Software architecture
- Technical reasoning
# 🧮 Reasoning & Mathematics
The model is intended to handle multi-step analytical tasks, mathematical reasoning, logical problems, and complex instructions.
# 🌍 Multilingual
**Neuron-46x4B-Instruct** supports a broad range of languages, including:
- English
- Chinese
- Hindi
- Arabic
- Japanese
- Korean
- French
- German
- Spanish
- Portuguese
- Italian
- Russian
- Turkish
- Vietnamese
- Thai
- Indonesian
- Malay
- Bengali
- Urdu
- Tamil
- Telugu
- Marathi
- Gujarati
- Punjabi
- Persian
- Etc
# 🤖 Agentic & Tool-Use Workloads
The model can be used as a foundation for AI agents, structured generation, automation systems, tool-calling workflows, and other intelligent applications.
# Model Configuration
| **Property** | **Value** |
| :--- | :--- |
| **Model** | Neuron-46x4B-Instruct |
| **Architecture** | Sparse Mixture of Experts (MoE) |
| **Total Parameters** | ~125B |
| **Active Parameters** | ~8B per token |
| **Total Experts** | 46 |
| **Expert Size** | ~4B |
| **Context Length** | 262,144 Tokens |
| **Model Family** | Qwen3 |
| **Model Type** | Instruction-Tuned Causal Language Model |
| **Task** | Text Generation |
| **Precision** | BF16 |
| **License** | Apache-2.0 |
| **Format** | Safetensors |
# Base Models
**Neuron-46x4B-Instruct** builds upon the Qwen3 model family and incorporates Neura Tech AI's Neuron model work.
# Base Model Acknowledgment
We sincerely thank the **Qwen Team** for developing and openly releasing the Qwen3 model family under the Apache-2.0 license.
We also acknowledge the upstream models and technologies that contributed to the development of the Neuron model family.
# Intended Use
**Neuron-46x4B-Instruct** can be used for:
- Conversational AI
- Coding assistants
- AI agents
- Research
- Education
- Mathematics
- Content generation
- Translation
- Document analysis
- Software engineering
- Multilingual applications
- Experimental MoE research
# Performance
**Neuron-46x4B-Instruct** is designed as a high-capacity sparse model with approximately **125B total parameters and ~8B active parameters per token**.
# Inference
**Neuron-46x4B-Instruct** is intended to be used with frameworks that support its model architecture and sparse Mixture-of-Experts implementation.
For deployment, users should ensure that their inference framework supports the specific architecture and routing configuration used by the model.
# Limitations
Despite its large parameter capacity, **Neuron-46x4B-Instruct** can still produce incorrect, incomplete, or hallucinated information.
Model outputs should be verified before being used in safety-critical, legal, financial, or medical applications.
Performance may also vary significantly depending on the inference framework, hardware, quantization method, prompt format, and deployment configuration.
# Developed by:
**Neura Tech AI**
Neuron is part of Neura Tech AI's ongoing research into efficient large-scale language models and sparse Mixture-of-Experts architectures.
# License
**Neuron-46x4B-Instruct** is released under the **Apache-2.0 License**.
Please review the license terms and the licenses of all upstream components before using the model in your application.
---
Neuron-46x4B-Instruct — Large capacity. Sparse activation. Specialized intelligence.
# © 2026 Neura Tech AI |