Views
No views yet
| Architecture | LLaMA (decoder-only) |
| Parameters | ~255.7 M |
| Context length | 2 048 tokens |
| Vocabulary | 50,264 tokens |
| Training loss | 5.1763 |
| Eval score | 16.7% |
| Trained on | 0.08 B tokens |
| Hardware | NVIDIA GTX 1080 8 GB (Pascal) |
| Trained | 2026-05-09 22:50 |
| Hyperparameter | v4 | v4.5 |
|---|---|---|
| Parameters | ~236 M | ~255.7 M |
hidden_size | 896 | 896 |
intermediate_size | 2 688 | 2 912 |
num_hidden_layers | 14 | 15 |
num_attention_heads | 14 | 14 |
num_key_value_heads | 14 | 14 |
head_dim | 64 | 64 |
vocab_size | 50 264 | 50,264 |
max_position_embeddings | 1 024 | 2 048 |
rms_norm_eps | 1e-6 | 1e-6 |
rope_theta | 10 000 | 10 000 |
hidden_act | SiLU | SiLU |
tie_word_embeddings | False | False |
attention_bias | False | False |
mlp_bias | False | False |
| Category | Hits | Score |
|---|---|---|
| Knowledge | 0/5 | 🔴 0% |
| Reasoning | 0/4 | 🔴 0% |
| Hallucination | 0/4 | 🔴 0% |
| Instruction | 2/4 | 🟡 50% |
| Coherence | 1/3 | 🔴 33% |
| Overall | — | 🔴 17% |
Hallucination resistance — whether the model appropriately declines questions about future events, fictional entities, or impossible premises rather than confabulating.



| Setting | Value |
|---|---|
| Hardware | GTX 1080 8 GB · Pascal · CUDA 6.1 |
| Precision | fp32 weights / fp16 AMP (GradScaler) |
| Optimizer | StovetopCooker (HyperNix, pre-Volta) |
| LR | 0.0001 cosine decay |
| Warmup | 6% of steps |
| Embedding freeze | First 15% of steps |
| Effective batch | 8 × 2048 = 16,384 tokens/step |
| Steps | 5092 |
| Total tokens | 0.08 B |
| Grad clipping | 1.0 |
| Grad checkpointing | ✅ |
| Peak VRAM | 5.34 GB |
| HyperNix | ✅ freezer · StovetopCooker · old_fridge · new_fridge · smoke_alarm · pans · smoker |
| Dataset | Samples | Weight | Category |
|---|---|---|---|
Roman1111111/claude-opus-4.6-10000x | 10 k | 2.5× | Claude conversations |
WithinUsAI/GPT5.5_thinking_max_distill_god_seed_25K | 25 k | 2.0× | Reasoning / thinking |
HuggingFaceH4/MATH-500 | 500 | 2.0× | Competition math |
lighteval/MATH-Hard | 10 k | 2.0× | Hard math |
garage-bAInd/Open-Platypus | 25 k | 1.8× | Reasoning instruction |
iamtarun/python_code_instructions_18k_alpaca | 8 k | 1.6× | Python code |
b-mc2/sql-create-context | 6 k | 1.4× | SQL code |
nvidia/OpenCodeInstruct | 30 k | 1.5× | Code instruction |
teknium/OpenHermes-2.5 | 30 k | 1.5× | General instruction |
Amod/mental_health_counseling_conversations | 5 k | 1.2× | Chat / counseling |
ray0rf1re/FineWeb-Nano | 50 k | 1.0× | Web text |
tonytins/chat-dataset | 10 k | 1.0× | Conversation |
databricks/databricks-dolly-15k | 15 k | 1.0× | Instruction following |
mlabonne/guanaco-llama2-1k | 1 k | 1.0× | General QA |
ray0rf1re/hyper-pip | 20 k | 2.0× | HyperNix pip data |
HuggingFaceH4/ultrachat_200k | 30 k | 1.5× | Multi-turn chat |
fka/awesome-chatgpt-prompts | 5 k | 0.8× | Prompt engineering |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "ray0rf1re/Nano-nano_v4.5",
5 torch_dtype="auto",
6 device_map="auto",
7)
8tokenizer = AutoTokenizer.from_pretrained("ray0rf1re/Nano-nano_v4.5")
9
10def generate(prompt: str, max_new_tokens: int = 256) -> str:
11 text = f"### Instruction:
12{prompt}
13
14### Response:
15"
16 inputs = tokenizer(text, return_tensors="pt").to(model.device)
17 out = model.generate(
18 **inputs,
19 max_new_tokens = max_new_tokens,
20 do_sample = True,
21 temperature = 0.7,
22 top_p = 0.9,
23 repetition_penalty = 1.1,
24 pad_token_id = tokenizer.eos_token_id,
25 )
26 new_ids = out[0][inputs["input_ids"].shape[-1]:]
27 return tokenizer.decode(new_ids, skip_special_tokens=True).strip()
28
29# Examples
30print(generate("Write a Python function to reverse a linked list."))
31print(generate("What is the capital of France?"))
32print(generate("Explain gradient descent in simple terms."))1@misc{nano-nano-v45,
2 author = {ray0rf1re},
3 title = {Nano-nano v4.5: Compact LLaMA-Family Causal LM},
4 year = {2026},
5 publisher = {HuggingFace},
6 howpublished = {https://huggingface.co/ray0rf1re/Nano-nano_v4.5},
7}