Update README.md
Browse files
README.md
CHANGED
|
@@ -98,6 +98,16 @@ For a given sequence of tokens `x_1, x_2, ..., x_n`, the model is trained to pre
|
|
| 98 |
| `tokenizer_config.json` | Tokenizer configuration |
|
| 99 |
| `special_tokens_map.json` | Special tokens mapping |
|
| 100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
## Usage
|
| 102 |
|
| 103 |
### Loading with safetensors:
|
|
@@ -197,9 +207,9 @@ model.load_state_dict(model_state)
|
|
| 197 |
```bibtex
|
| 198 |
@misc{pico-gpt,
|
| 199 |
title={Pico-GPT: A Small Language Model from Scratch},
|
| 200 |
-
author={
|
| 201 |
year={2026},
|
| 202 |
-
howpublished={\url{https://huggingface.co/
|
| 203 |
}
|
| 204 |
```
|
| 205 |
|
|
|
|
| 98 |
| `tokenizer_config.json` | Tokenizer configuration |
|
| 99 |
| `special_tokens_map.json` | Special tokens mapping |
|
| 100 |
|
| 101 |
+
## Installation
|
| 102 |
+
|
| 103 |
+
This model requires the custom `pico_gpt` package to load and run.
|
| 104 |
+
|
| 105 |
+
```bash
|
| 106 |
+
git clone https://github.com/ChidambaraRaju/pico-gpt.git
|
| 107 |
+
cd pico-gpt
|
| 108 |
+
pip install -e .
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
## Usage
|
| 112 |
|
| 113 |
### Loading with safetensors:
|
|
|
|
| 207 |
```bibtex
|
| 208 |
@misc{pico-gpt,
|
| 209 |
title={Pico-GPT: A Small Language Model from Scratch},
|
| 210 |
+
author={Chidambara Raju G},
|
| 211 |
year={2026},
|
| 212 |
+
howpublished={\url{https://huggingface.co/justjuu/pico-gpt}},
|
| 213 |
}
|
| 214 |
```
|
| 215 |
|