KSP-NMAI
/

Text Generation
Transformers
Safetensors
English
gpt2
boris
nmai
250M
text-generation-inference
File size: 2,479 Bytes
79a833e
 
41fb011
 
 
 
79a833e
 
 
 
 
 
41fb011
90b1417
79a833e
 
90b1417
79a833e
90b1417
79a833e
41fb011
 
79a833e
41fb011
 
 
 
79a833e
41fb011
79a833e
41fb011
 
 
 
 
79a833e
41fb011
 
 
 
79a833e
 
 
 
 
 
90b1417
79a833e
 
 
 
 
41fb011
79a833e
41fb011
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79a833e
 
 
41fb011
 
 
79a833e
 
41fb011
 
 
 
 
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
---
license: apache-2.0
language:
- en
library_name: transformers
pipeline_tag: text-generation
datasets:
- HuggingFaceFW/fineweb-edu
- mlfoundations/dclm-baseline-1.0-parquet
tags:
- boris
- nmai
- gpt2
- 250M
---

![Boris](Boris-250M.png)

# Boris-250M

Boris-250M is a 250 million-parameter language model created by New Millennium
Artificial Intelligence (NMAI).

This is a **base (pretrained) model**. It has not been instruction-tuned and does
not follow instructions or hold a conversation — it continues text. For an
instruction-following version, see
[KSP-NMAI/Boris-250M-Instruct](https://huggingface.co/KSP-NMAI/Boris-250M-Instruct).

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

tok = AutoTokenizer.from_pretrained("KSP-NMAI/Boris-250M")
model = AutoModelForCausalLM.from_pretrained("KSP-NMAI/Boris-250M")

ids = tok("The ocean is", return_tensors="pt").input_ids
out = model.generate(ids, max_new_tokens=40, do_sample=True, top_p=0.95)
print(tok.decode(out[0], skip_special_tokens=True))
```

## Details

| | |
|---|---|
| Architecture | GPT-2 (pre-LN, learned positional embeddings, tied embeddings) |
| Layers / heads / d_model | 12 / 18 / 1152 |
| Context length | 1024 |
| Vocab | 50304 (GPT-NeoX-20B BPE, padded) |
| Tokenizer | `EleutherAI/gpt-neox-20b` |
| Precision | trained in bf16 autocast with fp32 master weights |

## Base model training

Trained on 5.01B tokens for ~105:56:17 on one RTX 3060.

| | |
|---|---|
| Final loss | 3.0693 |
| Final grad norm | 0.225 |
| Final learning rate | 6.00e-05 |

![Benchmarks](benchmarks.png)

## Limitations

A base model of this size will produce text that is frequently inaccurate,
inconsistent, or offensive. It has received no alignment or safety tuning and
should not be used for factual reference or deployed without supervision.

## Copyright & License

*Copyright 2026 Joseph Jones*

This project and all associated files (the "Work") are licensed under the Apache
License, Version 2.0 (the "License"); you may not use this project except in
compliance with the License. You may obtain a copy of the License at:

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.