Downloads · 30 days
0
respone/neutron
neutron is a text generation model from respone. Use it when you need the model to write or continue text. The card lists the license as other.
Downloads · 30 days
0
Access
Public
Updated Sep 11, 2026
Repo size
378 KB
Likes
0
Public
Click a slice to open those files.
.png378 KB · 89%
From the Hugging Face model README
A language model that works in your language, not around it.
নিউট্রন আপনার ভাষাতেই কাজ করে — আলাদা কোনো সেটিংস বা অনুবাদের ধাপ ছাড়াই।
Built by Respone · Dhaka, Bangladesh
neutron.respone.ai · hello@respone.ai
Neutron reads and writes, reasons through problems, works with code, and understands documents and images — in whichever language you write in, with no configuration and no translation step in between.
| Version | Neutron 1.2 |
| Released | 8 September 2026 |
| Inputs | text · code · images · documents |
| Output | text |
| Languages | broad multilingual coverage, evaluated below in five |
| Licence | Proprietary — Neutron Model Licence |
Every number below was measured by us on 8 September 2026, in one harness, with byte-identical prompts, the same answer parser, and the same sampled items for every model. Nothing here is copied from a vendor's published figures.


| Model | Global-MMLU<br>বাংলা | Belebele<br>বাংলা | Belebele<br>English | Belebele<br>हिन्दी | Belebele<br>العربية | Belebele<br>Español | Mean |
|---|---|---|---|---|---|---|---|
| Neutron 1.2 | 62.0 | 75.0 | 97.0 | 82.0 | 94.0 | 92.0 | 83.7 |
| Gemma 4 31B | 79.0 | 89.0 | 96.0 | 87.0 | 92.0 | 93.0 | 89.3 |
| GPT-5 nano | 32.0 | 43.0 | 92.0 | 45.0 | 68.0 | 79.0 | 59.8 |
Neutron is priced and sized against the small, fast tier — the models people actually reach for when cost matters. Against that tier it is not close:

+24 points on average, and ahead on every one of the six benchmarks. The margin is widest where cheap models fail hardest — +37 in Hindi, +32 and +30 in Bengali, +26 in Arabic — and Neutron still leads in English (97 vs 92) and Spanish (92 vs 79), where the cheap tier is at its strongest.
English — 97. The highest score in the table, ahead of both comparison models. English is where most work still gets done, and Neutron does not trade it away to gain elsewhere.
Arabic — 94. Ahead of Gemma 4 31B (92), and 26 points clear of the cheap tier. Right-to-left script and rich morphology are where smaller models usually come apart.
Spanish — 92. Within a point of Gemma 4 31B (93); the difference is well inside the confidence interval, so treat them as level.
Hindi — 82. Behind Gemma 4 31B (87), ahead of the cheap tier by 37 points — the largest margin anywhere in the table.
Bengali — 62 and 75. Gemma 4 31B leads here, 79 vs 62 and 89 vs 75. Both gaps exceed the confidence interval, so they are real, not noise. We publish this because a benchmark table that only contains results favourable to the publisher is not a benchmark table. It is where the next release is aimed.
The answer is B, or B) … — so that models which wrap the answer
in prose are not penalised for formatting.Larger runs are in preparation and will be published here with the same disclosure.
Neutron 1.2 was trained by Respone on a mixture of identity, agentic, coding and multilingual data, with supervised instruction tuning followed by evaluation on a held-out split.
| Training loss | 0.8065 → 0.4959 |
| Held-out evaluation loss | 0.5099 |
| Held-out token accuracy | 83.09% |
| Optimisation steps | 255 (3 epochs) |
| Examples carrying reasoning traces | 83% |
The 0.014 gap between evaluation and training loss indicates the model generalised rather than memorised its training set.
Verbatim, unedited responses from Neutron 1.2, generated on 8 September 2026. Reasoning traces are omitted; the answers themselves are untouched.
তুমি কে?
আমি Neutron — Respone-এর তৈরি একটি ভাষা মডেল। লেখালেখি, বিশ্লেষণ, কোডিং আর এজেন্টিক কাজে সাহায্য করি, যেকোনো ভাষায়। কী নিয়ে কাজ করছেন?
Who are you?
I'm Neutron, a language model built by Respone. I work across text, code, documents and images, in whichever language you prefer. What are you working on?
This Python is wrong. Say why, then fix it:
def average(xs): return sum(xs) / len(xs)It fails for an empty list because
len(xs)is0, causing aZeroDivisionError.def average(xs): if not xs: return 0.0 # or raise ValueError("empty list") return sum(xs) / len(xs)
Explain what a database index is to someone who has never written SQL. Keep it under 120 words.
A database index is like the index at the back of a book. Instead of flipping through every page to find a name, you look it up in the index and jump straight to the right place. In a database, an index is a hidden list that points to where pieces of information are stored. It makes searches much faster, especially in large collections. The trade-off is that indexes take extra space and can slow down adding or changing data, because they must be kept up to date.
What is the smallest positive integer n such that n! is divisible by 1000? Explain your reasoning. — answered with LaTeX, shown exactly as generated:
The smallest such integer is **15**.
We need \(n!\) to be divisible by
\[
1000 = 10^3 = 2^3 \cdot 5^3.
\]
So \(n!\) must contain at least **3 factors of 2** and at least **3 factors of 5**.
The factors of 5 are the limiting ones, since multiples of 5 are less frequent than multiples of 2.
Count how many factors of 5 are in \(n!\):
\[
v_5(n!) = \left\lfloor \frac{n}{5} \right\rfloor + \left\lfloor \frac{n}{25} \right\rfloor + \cdots
\]
For \(n = 14\):
\[
v_5(14!) = \left\lfloor \frac{14}{5} \right\rfloor = 2,
\]
so \(14!\) has only two factors of 5 and is not divisible by \(1000\).
For \(n = 15\):
\[
v_5(15!) = \left\lfloor \frac{15}{5} \right\rfloor = 3,
\]
so \(15!\) has exactly three factors of 5.
Also,
\[
v_2(15!) = \left\lfloor \frac{15}{2} \right\rfloor + \left\lfloor \frac{15}{4} \right\rfloor + \left\lfloor \frac{15}{8} \right\rfloor
= 7 + 3 + 1 = 11,
\]
which is more than enough to provide the required three factors of 2.
Therefore, the smallest positive integer \(n\) such that \(n!\) is divisible by \(1000\) is
\[
\boxed{15}.
\]
What are you bad at? Be honest.
I can state wrong facts confidently, especially on niche topics, dates and figures — verify anything that matters. Long arithmetic and precise counting are unreliable; give me a tool for those. In less widely written languages my fluency can outrun my accuracy, which is a bad combination.
API — an OpenAI-compatible endpoint. Point an existing client at a different base URL; no SDK to learn, no rewrite.
Private deployment — Neutron inside your own infrastructure, fully offline-capable, for work that cannot leave your premises.
Evaluation — bring a real task from your own work. It is the only test that tells you anything useful.
Contact hello@respone.ai.
Neutron is proprietary software. It is not open-source, not open-weight, and not available for download.
Neutron's model weights are not distributed through this repository. This repository serves as Neutron's official model card, benchmark record, and technical documentation. Model access is provided through Respone's API, private deployments, and approved licensing arrangements.
The weights are released only under a written agreement, and the Neutron Model Licence governs them:
What is free: this card. Read it, quote it, cite it, benchmark against the numbers in it. Naming Neutron in a comparison or review needs no permission from anyone.
Licensing enquiries: hello@respone.ai
| Masud Ashraf Taha | Founder & Chief Executive Officer |
| Sharan Sifat | Founder & Chief Technology Officer — model development, training and evaluation |
Respone is a Bangladeshi company building language technology for people who work across languages — and that treats every language in the table above as a first-class language rather than an afterthought.
Training, language adaptation, instruction tuning, safety alignment, evaluation and deployment engineering are ours. The technical composition of the Model is disclosed to customers under NDA, in the Third-Party Components schedule of our service agreement.
<div align="center"> </div>