Spaces:
Sleeping
Sleeping
Blair Yang
commited on
Commit
·
e159d95
1
Parent(s):
f23e54f
initial commit
Browse files- README.md +10 -0
- app.py +7 -0
- data/mmlu/response_rec.csv +0 -0
- plot.py +0 -0
- requirements.txt +0 -0
README.md
CHANGED
@@ -11,3 +11,13 @@ license: apache-2.0
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
14 |
+
|
15 |
+
|
16 |
+
Data entry form
|
17 |
+
|
18 |
+
1. dataset name
|
19 |
+
2. model name
|
20 |
+
3. oracle accuracy (model acc)
|
21 |
+
4. human test accuracy
|
22 |
+
5. model test accuracy
|
23 |
+
|
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
data/mmlu/response_rec.csv
ADDED
File without changes
|
plot.py
ADDED
File without changes
|
requirements.txt
ADDED
File without changes
|