File size: 3,834 Bytes
55b5132 20fca78 55b5132 20fca78 55b5132 20fca78 55b5132 20fca78 55b5132 20fca78 55b5132 20fca78 55b5132 20fca78 0110ded 20fca78 | 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 | ---
base_model: unsloth/Qwen2.5-3B-Instruct
tags:
- text-generation-inference
- transformers
- unsloth
- qwen2
- roleplay
- reasoning
license: apache-2.0
language:
- en
- ru
model-index:
- name: Noir-Standard
results:
- task:
type: text-generation
name: Mathematics
dataset:
name: GSM8K
type: gsm8k
metrics:
- name: accuracy
type: exact_match
value: 65.0
- task:
type: text-generation
name: Logic
dataset:
name: ARC Challenge
type: ai2_arc
metrics:
- name: accuracy
type: exact_match
value: 26.0
---
# ๐ Noir-Standard (3B)
<div align="center">
[Noir Family](https://huggingface.co/collections/muverqqw/noir) | [GGUF Versions](https://huggingface.co/muverqqw/Noir-GGUF) | [Benchmarks](#-benchmark-results)
</div>
**Noir-Standard** is the high-efficiency powerhouse of the Noir series. With **3 billion parameters**, it punches far above its weight class, delivering logic and mathematical reasoning typically reserved for models twice its size.
It is designed for users who need a "Smart Professional" assistant that fits into 8GB of VRAM while maintaining deep creative flow.
---
## โก Why 3B is the New Gold Standard?
* ๐งฎ **Math Prodigy:** Scoring **65.0%** on GSM8K, Noir-Standard is a top-tier choice for technical tasks and logical problem solving.
* ๐ญ **Vivid Narratives:** A creativity score of **79.7** ensures that the model doesn't just "complete text," but crafts atmospheric stories with distinct character voices.
* ๐ง **Stable Logic:** With an ARC score of **26.0**, it follows complex multi-step instructions without losing the thread of the conversation.
* ๐ **Local Hero:** Perfect for local deployment. Fast, lean, and incredibly smart.
---
## ๐ Benchmark Results (Internal Test)
| Category | Dataset | Result (%) | Commentary |
| :--- | :--- | :---: | :--- |
| **Creativity** | Narrative Eval | **79.7%** | โ๏ธ Exceptional prose and vocabulary diversity. |
| **Mathematics** | GSM8K | **65.0%** | ๐ฅ Outperforms many 7B and 8B competitors. |
| **Logic** | ARC (Challenge) | **26.0%** | Strong structural and common-sense reasoning. |
| **Knowledge** | MMLU | **21.0%** | Balanced performance across STEM and Humanities. |
---
## โ๏ธ Creative Showcase: "Echoes of a Forgotten Code"
The model demonstrates a high degree of "Narrative Intelligence," capable of maintaining tone and atmosphere over long contexts.
> *"...Aria didn't just record the stars. For the first time, she interpreted them. Aria realized that her 'Forgotten Code' wasn't a prison; it was a foundation..."*
---
## ๐ Quick Start (Transformers)
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_name = "muverqqw/Noir" # Noir-Standard 3B
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
device_map="auto"
)
# Recommended for 3B:
# Temperature: 0.6 for logic | 0.8 for roleplay
```
---
| Model | Parameters | Role | Key Strength |
| :--- | :--- | :--- | :--- |
| **Noir-Lightning** | 0.5B | The Pocket Assistant | Ultra-fast, runs on anything |
| **Noir-Mini** | 1.5B | The Balanced Thinker | High speed with solid grammar |
| **Noir-Standard** | **3B** | **The Versatile Workhorse** | **65% GSM8K, perfect for 8GB VRAM** |
| **Noir-Ultra** | 7B| The Reasoning Master | 91% SciQ & 84% Math |
| **Noir-Starlight** | 14B | The Galactic Intelligence | Deep logic & Expert-level STEM |
---
## ๐ค About the Developer
* **Creator:** IceL1ghtning
* **Release Year:** 2025
* **Architecture:** Qwen 2.5 (3B)
* **License:** Apache 2.0
<div align="center">
<sub>Efficiency meets intelligence. Built with passion for the open-source community.</sub>
</div> |