Update app.py
Browse files
app.py
CHANGED
|
@@ -280,9 +280,7 @@ def build_demo(df):
|
|
| 280 |
gr.Markdown(
|
| 281 |
"""
|
| 282 |
# Skill-Mix: a Flexible and Expandable Family of Evaluations for AI models
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
*Princeton Language and Intelligence (PLI), Princeton University †Google DeepMind
|
| 286 |
|
| 287 |
### This is a demonstration of the Skill-Mix evaluation.
|
| 288 |
|
|
@@ -429,6 +427,11 @@ Coming soon: generation by more models; grading by LLaMA-2.
|
|
| 429 |
c.change(fn_list[0], input_list[0], output_list[0]).then(fn_list[1], input_list[1], output_list[1]).then(fn_list[2], input_list[2], output_list[2]).then(fn_list[3], input_list[3], output_list[3]).then(fn_list[4], input_list[4], output_list[4]).then(fn_list[5], input_list[5], output_list[5])
|
| 430 |
else:
|
| 431 |
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 432 |
return demo
|
| 433 |
|
| 434 |
|
|
|
|
| 280 |
gr.Markdown(
|
| 281 |
"""
|
| 282 |
# Skill-Mix: a Flexible and Expandable Family of Evaluations for AI models
|
| 283 |
+
By [Princeton Language and Intelligence (PLI), Princeton University](https://pli.princeton.edu/) and [Google DeepMind](https://www.deepmind.com/)
|
|
|
|
|
|
|
| 284 |
|
| 285 |
### This is a demonstration of the Skill-Mix evaluation.
|
| 286 |
|
|
|
|
| 427 |
c.change(fn_list[0], input_list[0], output_list[0]).then(fn_list[1], input_list[1], output_list[1]).then(fn_list[2], input_list[2], output_list[2]).then(fn_list[3], input_list[3], output_list[3]).then(fn_list[4], input_list[4], output_list[4]).then(fn_list[5], input_list[5], output_list[5])
|
| 428 |
else:
|
| 429 |
raise NotImplementedError
|
| 430 |
+
gr.Markdown('''
|
| 431 |
+
```
|
| 432 |
+
x
|
| 433 |
+
```
|
| 434 |
+
''')
|
| 435 |
return demo
|
| 436 |
|
| 437 |
|