Text Generation
Transformers
Safetensors
qwen3
Neura Tech AI
neuron
instruct
llm
transformer
qwen
multilingual
conversational
coding
text-generation-inference
Instructions to use Neura-Tech-AI/Neuron-4B-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Neura-Tech-AI/Neuron-4B-Instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Neura-Tech-AI/Neuron-4B-Instruct") 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-4B-Instruct") model = AutoModelForCausalLM.from_pretrained("Neura-Tech-AI/Neuron-4B-Instruct", 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-4B-Instruct 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-4B-Instruct" # 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-4B-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Neura-Tech-AI/Neuron-4B-Instruct
- SGLang
How to use Neura-Tech-AI/Neuron-4B-Instruct 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-4B-Instruct" \ --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-4B-Instruct", "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-4B-Instruct" \ --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-4B-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Neura-Tech-AI/Neuron-4B-Instruct with Docker Model Runner:
docker model run hf.co/Neura-Tech-AI/Neuron-4B-Instruct
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,196 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
-
base_model:
|
| 4 |
-
- Qwen/Qwen3-4B-Instruct-2507
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
-
|
| 7 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: transformers
|
| 3 |
license: apache-2.0
|
| 4 |
+
base_model: Qwen/Qwen3-4B-Instruct-2507
|
|
|
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
- hi
|
| 9 |
+
- zh
|
| 10 |
+
- ja
|
| 11 |
+
- ko
|
| 12 |
+
- fr
|
| 13 |
+
- de
|
| 14 |
+
- es
|
| 15 |
+
- it
|
| 16 |
+
- pt
|
| 17 |
+
- ru
|
| 18 |
+
- ar
|
| 19 |
+
- tr
|
| 20 |
+
- vi
|
| 21 |
+
- th
|
| 22 |
+
- id
|
| 23 |
+
- ms
|
| 24 |
+
- bn
|
| 25 |
+
- ta
|
| 26 |
+
- te
|
| 27 |
+
- mr
|
| 28 |
+
- gu
|
| 29 |
+
- pa
|
| 30 |
+
- ur
|
| 31 |
+
- fa
|
| 32 |
+
tags:
|
| 33 |
+
- Neura Tech AI
|
| 34 |
+
- neuron
|
| 35 |
+
- instruct
|
| 36 |
+
- llm
|
| 37 |
+
- transformer
|
| 38 |
+
- qwen
|
| 39 |
+
- multilingual
|
| 40 |
+
- conversational
|
| 41 |
+
- coding
|
| 42 |
+
new_version: Neura-Tech-AI/Neuron-V2-4B-Instruct
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
# Neuron-V2-4B-Instruct
|
| 46 |
+
|
| 47 |
+
> A multilingual instruction-tuned large language model developed by **Neura Tech AI**.
|
| 48 |
+
|
| 49 |
+
---
|
| 50 |
+
|
| 51 |
+
# Overview
|
| 52 |
+
|
| 53 |
+
**Neuron-V2-4B-Instruct** is an instruction-tuned language model built on top of **Qwen/Qwen3-4B-Instruct-2507**.
|
| 54 |
+
|
| 55 |
+
The goal of Neuron is to provide a powerful open-source AI assistant capable of natural conversations, coding assistance, reasoning, multilingual understanding, and long-context processing.
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
# Developer
|
| 60 |
+
|
| 61 |
+
**Developed by**
|
| 62 |
+
|
| 63 |
+
- Neura Tech AI
|
| 64 |
+
|
| 65 |
+
---
|
| 66 |
+
|
| 67 |
+
# Base Model
|
| 68 |
+
|
| 69 |
+
**Base Model**
|
| 70 |
+
|
| 71 |
+
Qwen/Qwen3-4B-Instruct-2507
|
| 72 |
+
|
| 73 |
+
We sincerely thank the Qwen Team for releasing the Qwen3 model family under the Apache 2.0 License.
|
| 74 |
+
|
| 75 |
+
---
|
| 76 |
+
|
| 77 |
+
# Model Details
|
| 78 |
+
|
| 79 |
+
- **Model Name:** Neuron-V2-4B-Instruct
|
| 80 |
+
- **Developer:** Neura Tech AI
|
| 81 |
+
- **Base Model:** Qwen/Qwen3-4B-Instruct-2507
|
| 82 |
+
- **Architecture:** Transformer Decoder
|
| 83 |
+
- **Parameters:** ~4 Billion
|
| 84 |
+
- **Context Length:** 262,144 Tokens (Inherited from the base model)
|
| 85 |
+
- **License:** Apache-2.0
|
| 86 |
+
|
| 87 |
+
---
|
| 88 |
+
|
| 89 |
+
# Features
|
| 90 |
+
|
| 91 |
+
- Instruction Following
|
| 92 |
+
- Chat Assistant
|
| 93 |
+
- Coding Assistance
|
| 94 |
+
- Mathematical Reasoning
|
| 95 |
+
- Logical Reasoning
|
| 96 |
+
- Long Context Support
|
| 97 |
+
- Tool Calling Support
|
| 98 |
+
- Multilingual Understanding
|
| 99 |
+
- Creative Writing
|
| 100 |
+
- General Knowledge
|
| 101 |
+
- Open-source
|
| 102 |
+
|
| 103 |
+
---
|
| 104 |
+
|
| 105 |
+
# Supported Languages
|
| 106 |
+
|
| 107 |
+
Neuron inherits multilingual capabilities from the Qwen3 base model and supports many languages, including:
|
| 108 |
+
|
| 109 |
+
- English
|
| 110 |
+
- Hindi
|
| 111 |
+
- Chinese
|
| 112 |
+
- Japanese
|
| 113 |
+
- Korean
|
| 114 |
+
- French
|
| 115 |
+
- German
|
| 116 |
+
- Spanish
|
| 117 |
+
- Italian
|
| 118 |
+
- Portuguese
|
| 119 |
+
- Russian
|
| 120 |
+
- Arabic
|
| 121 |
+
- Turkish
|
| 122 |
+
- Vietnamese
|
| 123 |
+
- Thai
|
| 124 |
+
- Indonesian
|
| 125 |
+
- Malay
|
| 126 |
+
- Bengali
|
| 127 |
+
- Tamil
|
| 128 |
+
- Telugu
|
| 129 |
+
- Marathi
|
| 130 |
+
- Gujarati
|
| 131 |
+
- Punjabi
|
| 132 |
+
- Urdu
|
| 133 |
+
- Persian (Farsi)
|
| 134 |
+
|
| 135 |
+
and many more.
|
| 136 |
+
|
| 137 |
+
---
|
| 138 |
+
|
| 139 |
+
# Benchmark Results
|
| 140 |
+
|
| 141 |
+
| Benchmark | Score |
|
| 142 |
+
|-----------|-------|
|
| 143 |
+
| MMLU | **70.61** |
|
| 144 |
+
| ARC Challenge | **55.89** |
|
| 145 |
+
| HellaSwag | **52.64** |
|
| 146 |
+
| Winogrande | **67.88** |
|
| 147 |
+
| PIQA | **76.01** |
|
| 148 |
+
| BoolQ | **84.77** |
|
| 149 |
+
| TruthfulQA MC1 | **42.84** |
|
| 150 |
+
| TruthfulQA MC2 | **62.59** |
|
| 151 |
+
|
| 152 |
+
### MMLU Category Scores
|
| 153 |
+
|
| 154 |
+
| Category | Score |
|
| 155 |
+
|----------|------:|
|
| 156 |
+
| Humanities | 60.83 |
|
| 157 |
+
| Social Sciences | 80.37 |
|
| 158 |
+
| STEM | 71.61 |
|
| 159 |
+
| Other | 74.73 |
|
| 160 |
+
|
| 161 |
+
---
|
| 162 |
+
|
| 163 |
+
# Intended Use
|
| 164 |
+
|
| 165 |
+
**Neuron-V2-4B-Instruct** is suitable for:
|
| 166 |
+
|
| 167 |
+
- AI Assistants
|
| 168 |
+
- Chatbots
|
| 169 |
+
- Coding
|
| 170 |
+
- Education
|
| 171 |
+
- Research
|
| 172 |
+
- Content Writing
|
| 173 |
+
- Translation
|
| 174 |
+
- Reasoning Tasks
|
| 175 |
+
- Tool Calling
|
| 176 |
+
- General NLP Applications
|
| 177 |
+
|
| 178 |
+
---
|
| 179 |
+
|
| 180 |
+
# License
|
| 181 |
+
|
| 182 |
+
This model is released under the **Apache-2.0 License** inherited from the base model.
|
| 183 |
+
|
| 184 |
+
Please also comply with the Qwen model license and usage guidelines.
|
| 185 |
+
|
| 186 |
+
---
|
| 187 |
+
|
| 188 |
+
# Acknowledgements
|
| 189 |
+
|
| 190 |
+
This project is built upon the excellent **Qwen3 model family** released by the **Qwen Team**.
|
| 191 |
+
|
| 192 |
+
We sincerely thank the **Qwen Team** and the open-source AI community for making this project possible.
|
| 193 |
+
|
| 194 |
+
---
|
| 195 |
+
|
| 196 |
+
# © 2026 Neura Tech AI. All rights reserved.
|