theworker02 commited on
Commit
05c7782
·
verified ·
1 Parent(s): 33b53d8

Polish large CPU model card (91,544,064 params, host CPU, not 1B)

Browse files
Files changed (1) hide show
  1. README.md +21 -16
README.md CHANGED
@@ -12,27 +12,32 @@ datasets:
12
  base_model: gpt2-scratch
13
  ---
14
 
15
- # Open Reason open-reason-large (CPU)
16
 
17
- This is a **large** GPT-2-style causal LM trained from scratch on the Open Reason SFT split. It is larger than `theworker02/open-reason-medium` and is **not** a 1B model and is **not** `theworker02/open-reason-1b`.
18
 
19
- - Parameters: 91544064
20
- - Architecture: n_layer=12 n_embd=768 n_head=12
21
- - Steps: 400
22
- - Backend: cpu-host
23
- - CUDA used: False
24
- - Hardware: Host CPU; torch 2.12.0+cpu; cuda_available=False; docker_installed=False; docker_used=False. NVIDIA CUDA was not used. AMD GPU/ROCm/DirectML were not used.
25
- - Dataset: theworker02/open-reason pipeline 1.4.0
26
- - SFT rows: 3175
27
- - Final loss: 5.73606538772583
 
 
 
 
 
28
 
29
- Related checkpoints (none of these is a 1B model):
30
  - Dataset: https://huggingface.co/datasets/theworker02/open-reason
31
- - Small: https://huggingface.co/theworker02/open-reason-small
32
- - Medium: https://huggingface.co/theworker02/open-reason-medium
33
- - Large: https://huggingface.co/theworker02/open-reason-large
 
34
 
35
- No Reddit sources. Project license Apache-2.0.
36
 
37
  ```python
38
  from transformers import AutoModelForCausalLM, AutoTokenizer
 
12
  base_model: gpt2-scratch
13
  ---
14
 
15
+ # Open Reason large (CPU)
16
 
17
+ This is a **large** GPT-2-style causal LM trained from scratch on the Open Reason SFT split. It is larger than [`theworker02/open-reason-medium`](https://huggingface.co/theworker02/open-reason-medium) (13,867,008 parameters) and is **not** a 1B model and is **not** `theworker02/open-reason-1b`.
18
 
19
+ Weights live on this Hub repo. They are not stored in the GitHub git tree.
20
+
21
+ ## Training facts
22
+
23
+ - **Parameters:** 91,544,064
24
+ - **Architecture:** GPT-2-style from scratch; `n_layer=12`, `n_embd=768`, `n_head=12`, `vocab_size=8192`, `max_seq_len=256`
25
+ - **Steps:** 400 (batch size 2)
26
+ - **Final training loss:** 5.7361 (next-token NLL on training batches; not a benchmark score)
27
+ - **SFT rows:** 3,175 from `data/release/all.jsonl`
28
+ - **Dataset:** [`theworker02/open-reason`](https://huggingface.co/datasets/theworker02/open-reason) pipeline **1.4.0**
29
+ - **License:** Apache-2.0
30
+ - **Hardware:** AMD Ryzen 9 9950X host **CPU**; `torch 2.12.0+cpu`; `torch.cuda.is_available()=False`; Docker **not installed** and **not used**; `nvidia-smi` not present. NVIDIA CUDA was not used. AMD GPU / ROCm / DirectML were not used.
31
+
32
+ ## Related
33
 
 
34
  - Dataset: https://huggingface.co/datasets/theworker02/open-reason
35
+ - Small (~1.3M): https://huggingface.co/theworker02/open-reason-small
36
+ - Medium (13,867,008): https://huggingface.co/theworker02/open-reason-medium
37
+ - Large (this repo, 91,544,064): https://huggingface.co/theworker02/open-reason-large
38
+ - GitHub: https://github.com/theworker02/open-reason
39
 
40
+ No Reddit sources.
41
 
42
  ```python
43
  from transformers import AutoModelForCausalLM, AutoTokenizer