roneneldan
commited on
Commit
•
aa90ce0
1
Parent(s):
4e0d661
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Model trained on the TinyStories Dataset, see https://arxiv.org/abs/2305.07759
|
2 |
+
|
3 |
+
------ EXAMPLE USAGE ---
|
4 |
+
|
5 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer, GenerationConfig
|
6 |
+
|
7 |
+
model = AutoModelForCausalLM.from_pretrained('roneneldan/TinyStories-1M')
|
8 |
+
|
9 |
+
tokenizer = AutoTokenizer.from_pretrained("EleutherAI/gpt-neo-125M")
|
10 |
+
|
11 |
+
prompt = "Once upon a time there was"
|
12 |
+
|
13 |
+
input_ids = tokenizer.encode(prompt, return_tensors="pt")
|
14 |
+
|
15 |
+
# Generate completion
|
16 |
+
output = model.generate(input_ids, max_length = 1000, num_beams=1)
|
17 |
+
|
18 |
+
# Decode the completion
|
19 |
+
output_text = tokenizer.decode(output[0], skip_special_tokens=True)
|
20 |
+
|
21 |
+
# Print the generated text
|
22 |
+
print(output_text)
|