cifkao commited on
Commit
4de934d
1 Parent(s): 6c2e238

Add TinyStories models

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. app.py +10 -1
README.md CHANGED
@@ -12,4 +12,6 @@ models:
12
  - distilgpt2
13
  - gpt2
14
  - EleutherAI/gpt-neo-125m
 
 
15
  ---
 
12
  - distilgpt2
13
  - gpt2
14
  - EleutherAI/gpt-neo-125m
15
+ - roneneldan/TinyStories-8M
16
+ - roneneldan/TinyStories-33M
17
  ---
app.py CHANGED
@@ -99,7 +99,16 @@ st.caption(
99
  "and visualize the contributions of different contexts to each generated token."
100
  )
101
 
102
- model_name = st.selectbox("Model", ["distilgpt2", "gpt2", "EleutherAI/gpt-neo-125m"])
 
 
 
 
 
 
 
 
 
103
  metric_name = st.radio(
104
  "Metric", (["KL divergence"] if not generation_mode else []) + ["NLL loss"], index=0, horizontal=True
105
  )
 
99
  "and visualize the contributions of different contexts to each generated token."
100
  )
101
 
102
+ model_name = st.selectbox(
103
+ "Model",
104
+ [
105
+ "distilgpt2",
106
+ "gpt2",
107
+ "EleutherAI/gpt-neo-125m",
108
+ "roneneldan/TinyStories-8M",
109
+ "roneneldan/TinyStories-33M",
110
+ ]
111
+ )
112
  metric_name = st.radio(
113
  "Metric", (["KL divergence"] if not generation_mode else []) + ["NLL loss"], index=0, horizontal=True
114
  )