Upload my_app.aiconfig.json
Browse files- my_app.aiconfig.json +62 -0
my_app.aiconfig.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "Hugging Face LLM Comparisons",
|
3 |
+
"schema_version": "latest",
|
4 |
+
"metadata": {
|
5 |
+
"parameters": {
|
6 |
+
"CoLA_ex_prompt": "Is the sentence grammatical or ungrammatical?\n\n\"This building is than that one.\"",
|
7 |
+
"SST_2_ex_prompt": "Is the movie review positive, negative, or neutral?\n\n\"The movie is funny, smart, visually inventive, and most of all, alive.\"",
|
8 |
+
"WNLI_ex_prompt": "Sentence B replaces sentence A's ambiguous pronoun with one of the nouns - is this the correct noun?\n\n\"A) Lily spoke to Donna, breaking her concentration.\nB) Lily spoke to Donna, breaking Lily's concentration.\""
|
9 |
+
},
|
10 |
+
"models": {},
|
11 |
+
"default_model": null,
|
12 |
+
"model_parsers": null
|
13 |
+
},
|
14 |
+
"description": "In this notebook, we compare the individual performance of HF hosted LLMs () on a few example questions from the GLUE benchmarks (https://gluebenchmark.com/tasks).\n\nExample questions taken from \"What is the GLUE Benchmark\" medium post - https://angelina-yang.medium.com/what-is-the-glue-benchmark-for-nlu-systems-61127b3cab3f",
|
15 |
+
"prompts": [
|
16 |
+
{
|
17 |
+
"name": "msft_phi_2",
|
18 |
+
"input": "{{CoLA_ex_prompt}}",
|
19 |
+
"metadata": {
|
20 |
+
"model": {
|
21 |
+
"name": "Text Generation",
|
22 |
+
"settings": {
|
23 |
+
"model": "microsoft/phi-2"
|
24 |
+
}
|
25 |
+
},
|
26 |
+
"tags": null,
|
27 |
+
"parameters": {}
|
28 |
+
},
|
29 |
+
"outputs": null
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"name": "mistral_7b_v0.1",
|
33 |
+
"input": "{{CoLA_ex_prompt}}",
|
34 |
+
"metadata": {
|
35 |
+
"model": {
|
36 |
+
"name": "Text Generation",
|
37 |
+
"settings": {
|
38 |
+
"model": "mistralai/Mistral-7B-v0.1"
|
39 |
+
}
|
40 |
+
},
|
41 |
+
"tags": null,
|
42 |
+
"parameters": {}
|
43 |
+
},
|
44 |
+
"outputs": []
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"name": "google_flan_t5_lg",
|
48 |
+
"input": "{{CoLA_ex_prompt}}",
|
49 |
+
"metadata": {
|
50 |
+
"model": {
|
51 |
+
"name": "Text Generation",
|
52 |
+
"settings": {
|
53 |
+
"model": "google/flan-t5-large"
|
54 |
+
}
|
55 |
+
},
|
56 |
+
"tags": null,
|
57 |
+
"parameters": {}
|
58 |
+
},
|
59 |
+
"outputs": []
|
60 |
+
}
|
61 |
+
]
|
62 |
+
}
|