jatingocodeo commited on
Commit
4c7c723
·
verified ·
1 Parent(s): 99717a0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Shakespeare GPT Model
3
+
4
+ This is a GPT model trained on Shakespeare's text. The model has the following specifications:
5
+
6
+ - Vocabulary Size: 65
7
+ - Number of Layers: 12
8
+ - Number of Heads: 16
9
+ - Embedding Dimension: 1024
10
+ - Context Length: 256
11
+ - Total Parameters: 151.37M
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from transformers import AutoModel
17
+ model = AutoModel.from_pretrained("jatingocodeo/shakespeare-decoder")
18
+ ```
19
+
20
+ ## Training
21
+ This model was trained on Shakespeare's text with a target loss of < 0.099999.
22
+