-
Notifications
You must be signed in to change notification settings - Fork 6
/
data_DSLX.py
77 lines (77 loc) · 1.67 KB
/
data_DSLX.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Data extracted for plotting
# Each LLM maps to a list of benchmarks in the following order:
# ['HC', 'HP', 'VE2-C', 'VE2-P']
# Each benchmark contains a list of values corresponding to commands in the following order:
# ['simple', 'init_desc', 'few_shot', 'init', 'supp']
data = {
'GPT-4': [ # Data for GPT-4
# HC
[0, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[0, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
'GPT-3.5n': [ # Data for GPT-3.5n
# HC
[0, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[0, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
'GPT-3.5o': [ # Data for GPT-3.5o
# HC
[0, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[0, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
'GPro-1.0': [ # Data for GPro-1.0
# HC
[2, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[3, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
'Gpro_1.5': [ # Data for Gpro_1.5
# HC
[0, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[0, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
'llmama40': [ # Data for llmama40
# HC
[3, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[5, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
'llama70': [ # Data for llama70
# HC
[3, 0, 0, 0, 0],
# HP
[0, 0, 0, 0, 0],
# VE2-C
[5, 0, 0, 0, 0],
# VE2-P
[0, 0, 0, 0, 0],
],
}