Text Generation
Transformers
Safetensors
qwen3_moe
Neura Tech AI
Neuron
instruct
llm
transformer
mixture-of-experts
Mixture of Experts
multilingual
24B
Qwen3
Neuron-6x4B-Instruct
conversational
Instructions to use Neura-Tech-AI/Neuron-6x4B-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Neura-Tech-AI/Neuron-6x4B-Instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Neura-Tech-AI/Neuron-6x4B-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-6x4B-Instruct") model = AutoModelForCausalLM.from_pretrained("Neura-Tech-AI/Neuron-6x4B-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-6x4B-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-6x4B-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-6x4B-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Neura-Tech-AI/Neuron-6x4B-Instruct
- SGLang
How to use Neura-Tech-AI/Neuron-6x4B-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-6x4B-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-6x4B-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-6x4B-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-6x4B-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Neura-Tech-AI/Neuron-6x4B-Instruct with Docker Model Runner:
docker model run hf.co/Neura-Tech-AI/Neuron-6x4B-Instruct
Create NOTICE
Browse files
NOTICE
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Neuron-6x4B-Instruct
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2026 Neura Tech AI
|
| 4 |
+
|
| 5 |
+
Neuron-6x4B-Instruct is an open-source Mixture of Experts (MoE) large language
|
| 6 |
+
model developed by Neura Tech AI.
|
| 7 |
+
|
| 8 |
+
This model is built upon the following base models:
|
| 9 |
+
|
| 10 |
+
- Neura-Tech-AI/Neuron-4B-Instruct
|
| 11 |
+
Copyright (c) 2026 Neura Tech AI.
|
| 12 |
+
|
| 13 |
+
- Qwen/Qwen3-4B-Instruct-2507
|
| 14 |
+
Copyright (c) 2024 Alibaba Cloud and the Qwen Team.
|
| 15 |
+
|
| 16 |
+
- Qwen/Qwen3-4B-Thinking-2507
|
| 17 |
+
Copyright (c) 2024 Alibaba Cloud and the Qwen Team.
|
| 18 |
+
|
| 19 |
+
Neuron-4B-Instruct is based on the Qwen3 architecture and includes additional
|
| 20 |
+
modifications and improvements developed by Neura Tech AI.
|
| 21 |
+
|
| 22 |
+
The original Qwen3 models are licensed under the Apache License,
|
| 23 |
+
Version 2.0. A copy of the Apache License is included in the LICENSE file.
|
| 24 |
+
|
| 25 |
+
Neuron-6x4B-Instruct introduces additional modifications made by
|
| 26 |
+
Neura Tech AI, including but not limited to:
|
| 27 |
+
|
| 28 |
+
- Mixture of Experts (MoE) architecture
|
| 29 |
+
- Six-expert sparse routing design
|
| 30 |
+
- Dynamic expert routing configuration
|
| 31 |
+
- Expert composition and parameter merging
|
| 32 |
+
- Instruction tuning improvements
|
| 33 |
+
- Identity customization
|
| 34 |
+
- Chat template customization
|
| 35 |
+
- Alignment improvements
|
| 36 |
+
- Reasoning enhancements
|
| 37 |
+
- Multilingual capability improvements
|
| 38 |
+
- Coding and software engineering optimization
|
| 39 |
+
- Tool-calling optimization
|
| 40 |
+
- Long-context support optimization
|
| 41 |
+
- Dataset improvements
|
| 42 |
+
- Branding and documentation
|
| 43 |
+
- Model packaging and distribution
|
| 44 |
+
|
| 45 |
+
These modifications are Copyright (c) 2026
|
| 46 |
+
Neura Tech AI.
|
| 47 |
+
|
| 48 |
+
Developer
|
| 49 |
+
|
| 50 |
+
Neura Tech AI
|
| 51 |
+
Official AI Research & Development Organization
|
| 52 |
+
|
| 53 |
+
Project
|
| 54 |
+
|
| 55 |
+
Neuron
|
| 56 |
+
|
| 57 |
+
Model
|
| 58 |
+
|
| 59 |
+
Neuron-6x4B-Instruct
|
| 60 |
+
|
| 61 |
+
Architecture
|
| 62 |
+
|
| 63 |
+
Sparse Transformer Decoder
|
| 64 |
+
Mixture of Experts (MoE)
|
| 65 |
+
Qwen3 Architecture
|
| 66 |
+
|
| 67 |
+
Base Models
|
| 68 |
+
|
| 69 |
+
- Neura-Tech-AI/Neuron-4B-Instruct
|
| 70 |
+
- Qwen/Qwen3-4B-Instruct-2507
|
| 71 |
+
- Qwen/Qwen3-4B-Thinking-2507
|
| 72 |
+
|
| 73 |
+
Model Highlights
|
| 74 |
+
|
| 75 |
+
- Approximately 24 Billion Total Parameters
|
| 76 |
+
- Six Specialized Experts
|
| 77 |
+
- Dynamic Sparse Expert Routing
|
| 78 |
+
- Instruction-Tuned
|
| 79 |
+
- Multilingual Language Model
|
| 80 |
+
- Optimized for Reasoning, Coding, Mathematics, Tool Calling,
|
| 81 |
+
Agentic Workflows, and Long-Context Understanding
|
| 82 |
+
|
| 83 |
+
Acknowledgment
|
| 84 |
+
|
| 85 |
+
We sincerely thank Alibaba Cloud and the Qwen Team for releasing the
|
| 86 |
+
Qwen3 model family under the Apache License, Version 2.0. Their work
|
| 87 |
+
served as the architectural foundation that enabled the development of
|
| 88 |
+
Neuron-4B-Instruct and, subsequently, Neuron-6x4B-Instruct.
|
| 89 |
+
|
| 90 |
+
This NOTICE file is provided solely for attribution purposes and does
|
| 91 |
+
not modify, replace, or supersede the terms of the Apache License,
|
| 92 |
+
Version 2.0.
|