Spaces:
Sleeping
Sleeping
Add TinyStories models
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
)
|