strykes commited on
Commit
47cd4e3
·
verified ·
1 Parent(s): 1d8671d

Add model card for EmberForge-3B-Reasoner

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - zh
5
+ license: apache-2.0
6
+ tags:
7
+ - transformers
8
+ - safetensors
9
+ - llama.cpp
10
+ - gguf
11
+ - peft
12
+ - qlora
13
+ - reasoning
14
+ - math
15
+ - code
16
+ base_model:
17
+ - Nanbeige/Nanbeige4.1-3B
18
+ library_name: transformers
19
+ pipeline_tag: text-generation
20
+ ---
21
+
22
+ # EmberForge-3B-Reasoner
23
+
24
+ EmberForge-3B-Reasoner is a private finetuned Nanbeige 4.1 3B reasoning model release by `strykes`.
25
+
26
+ ## What is included
27
+
28
+ This repo intentionally includes multiple artifact types:
29
+
30
+ - **Merged full model (Safetensors)** at repo root (for Transformers / benchmark pipelines)
31
+ - **LoRA adapter** in `adapter/`
32
+ - **GGUF quants** in `gguf/`:
33
+ - `Nanbeige4.1-3B-Q5_K_M.gguf`
34
+ - `Nanbeige4.1-3B-Q4_K_M.gguf`
35
+ - `Nanbeige4.1-3B-f16.gguf`
36
+
37
+ ## Training summary
38
+
39
+ - Base model: `Nanbeige/Nanbeige4.1-3B`
40
+ - Method: QLoRA with Unsloth, merged to full weights
41
+ - Dataset: synthetic reasoning instruction dataset (`3500` samples)
42
+ - Epochs: `2`
43
+ - Effective batch size: `16` (batch 1 x grad acc 16)
44
+ - Max sequence length: `4096`
45
+ - Learning rate: `1e-4` with cosine schedule
46
+ - Final reported training loss: `~1.28`
47
+
48
+ ## Quick usage (Transformers)
49
+
50
+ ```python
51
+ from transformers import AutoTokenizer, AutoModelForCausalLM
52
+
53
+ model_id = "strykes/emberforge-3b-reasoner"
54
+
55
+ tok = AutoTokenizer.from_pretrained(model_id)
56
+ model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
57
+ ```
58
+
59
+ ## Quick usage (llama.cpp)
60
+
61
+ Use files in `gguf/`, e.g. `Q5_K_M` for stronger quality or `Q4_K_M` for lower RAM.
62
+
63
+ ## Notes
64
+
65
+ - This is a finetuned model intended for research/benchmarking.
66
+ - Follow upstream Nanbeige license and applicable usage policies.
67
+ - Outputs can still contain errors; validate for critical tasks.