Views
No views yet
| Run | Model | Params | Training Data | Time | Steps | Epochs | Min Loss |
|---|---|---|---|---|---|---|---|
| 1 | 51M Base | 51.1M | Full Alpaca (52k) | 28 min | 848 | ~0.02 | 2.85 |
| 2 | 51M v2 | 51.1M | 500 short examples | 10 min | ~350 | 7 | 2.07 |
| 3 | 16M Chat | 16.1M | 500 short examples | 10 min | 460 | 16 | 1.98 |
| 4 | 51M v3 | 51.1M | 10k filtered Alpaca | 10 min+ | in-progress | - | - |
| Model ID | Params | Size | Description |
|---|---|---|---|
USAGAMES365/cpu-chat-llm/models/v2-51m | 51.1M | 204 MB | Retrained 500 short examples, 7 epochs |
USAGAMES365/cpu-chat-llm/models/v3-51m | 51.1M | 204 MB | Continued training on 10k examples (in progress) |
USAGAMES365/cpu-chat-llm/models/gemma-270m | 268M | 1.0 GB | Gemma-3-270m-it for comparison (pre-trained, not ours) |
1from transformers import GPT2LMHeadModel, AutoTokenizer
2
3# Load our model
4model = GPT2LMHeadModel.from_pretrained("USAGAMES365/cpu-chat-llm/models/v2-51m")
5tokenizer = AutoTokenizer.from_pretrained("USAGAMES365/cpu-chat-llm/models/v2-51m")
6
7# Format prompt correctly
8prompt = "<|User|> What is 2+2?</s><|Assistant|>"
9inputs = tokenizer.encode(prompt, return_tensors="pt")
10
11# Generate
12outputs = model.generate(inputs, max_new_tokens=80, temperature=0.7, do_sample=True)
13print(tokenizer.decode(outputs[0], skip_special_tokens=True))previous-run/ - Initial training runs with step-level checkpointscurrent-run/ - Continued training with saved checkpointsmodels/ - Final exportable models