-
Notifications
You must be signed in to change notification settings - Fork 3
/
run_descriptions.py
73 lines (61 loc) · 1.76 KB
/
run_descriptions.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
class ddg_benchmark_run:
def __init__(self, prediction_set_name, step_multiplication_factor):
self.prediction_set_name = prediction_set_name
self.step_multiplication_factor = step_multiplication_factor
talaris_60k_run = ddg_benchmark_run(
'zemu_1.2-60000_rscript_validated-t14', # Predicton run name
5 # Step multiplication factor
)
talaris_60k_simplified = ddg_benchmark_run(
'zemu_1.2-60000_rscript_simplified-t14', # Predicton run name
5 # Step multiplication factor
)
talaris_60k_16_simplified = ddg_benchmark_run(
'zemu_1.6-60000_rscript_simplified-t14', # Predicton run name
5 # Step multiplication factor
)
talaris_control_run = ddg_benchmark_run(
'zemu_control', # Predicton run name
1 # Step multiplication factor
)
control_run_69aa526_noglypivot = ddg_benchmark_run(
'zemu_control-69aa526-noglypivot', # Predicton run name
1 # Step multiplication factor
)
control_run_69aa526 = ddg_benchmark_run(
'zemu_control-69aa526', # Predicton run name
1 # Step multiplication factor
)
ref_run = ddg_benchmark_run(
'zemu_1.2-60000_rscript_validated-ref', # Predicton run name
5 # Step multiplication factor
)
ref_run_cart = ddg_benchmark_run(
'zemu_1.2-60000_rscript_validated-ref-cart', # Predicton run name
5 # Step multiplication factor
)
ddg_monomer_run = ddg_benchmark_run(
'ddg_monomer_16_003-zemu-2',
1
)
zemu_values = ddg_benchmark_run(
'zemu-values',
1
)
temp_16 = ddg_benchmark_run(
'zemu-brub_1.6-nt10000',
1250
)
all_runs = [
talaris_60k_16_simplified,
ref_run_cart,
ref_run,
zemu_values,
ddg_monomer_run,
talaris_control_run,
talaris_60k_run,
talaris_60k_simplified,
temp_16,
control_run_69aa526_noglypivot,
control_run_69aa526,
]