Update README.md
Browse files
README.md
CHANGED
@@ -2,10 +2,13 @@
|
|
2 |
license: cc-by-nc-4.0
|
3 |
---
|
4 |
A llama.c model based on Karpathy's Llama2.c project. https://github.com/karpathy/llama2.c
|
|
|
5 |
Vocab of 4096, trained on Tinystories, and my custom littlestories dataset (currently unreleased.)
|
6 |
|
|
|
7 |
Model uses ↨ as a shift key, instead of using capial letters, this allowed simplification of the tokenizer to avoid duplicates that are uppercase.
|
8 |
|
|
|
9 |
To convert normal text to the right format I use:
|
10 |
```
|
11 |
def add_caseifer(text):
|
|
|
2 |
license: cc-by-nc-4.0
|
3 |
---
|
4 |
A llama.c model based on Karpathy's Llama2.c project. https://github.com/karpathy/llama2.c
|
5 |
+
|
6 |
Vocab of 4096, trained on Tinystories, and my custom littlestories dataset (currently unreleased.)
|
7 |
|
8 |
+
|
9 |
Model uses ↨ as a shift key, instead of using capial letters, this allowed simplification of the tokenizer to avoid duplicates that are uppercase.
|
10 |
|
11 |
+
---
|
12 |
To convert normal text to the right format I use:
|
13 |
```
|
14 |
def add_caseifer(text):
|