-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexperiments.jsonnet
102 lines (87 loc) · 1.89 KB
/
experiments.jsonnet
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Config file of all experiments in roughly reverse chronological order
// Might want to refactor all the jsonnets some day
local icoref = import "jsonnets/emnlp2020.jsonnet"; // EMNLP 2020
local aida = import "jsonnets/aida.jsonnet"; // LOME-related
local multilingual = import "jsonnets/multilingual.jsonnet"; //LOME-related
local litbank = import "jsonnets/litbank.jsonnet"; // transfer
local preco = import "jsonnets/preco.jsonnet"; // transfer
local qbcoref = import "jsonnets/qbcoref.jsonnet"; // transfer
local ontonotes = import "jsonnets/ontonotes.jsonnet"; // transfer
local arrau = import "jsonnets/arrau.jsonnet"; // transfer
local sara = import "jsonnets/sara.jsonnet"; //transfer
(
ontonotes.on
+ ontonotes.on_fb
)
+
// Configs for model transfer
(
litbank.litbank
+ litbank.on_litbank
+ litbank.litbank
+ litbank.data_curve_da
+ litbank.data_curve_on
+ litbank.data_curve_fb
)
+
(
preco.preco
+ preco.preco_ft
+ preco.preco_fb
+ preco.preco_eval
+ preco.dev_variance
+ preco.data_fork
+ preco.data_curve_fb
+ preco.data_curve_on
+ preco.data_curve_da
+ preco.data_curve_xlmr
)
+
(
qbcoref.qb
+ qbcoref.data_curve_da
+ qbcoref.data_curve_on
+ qbcoref.data_curve_fb
+ qbcoref.qb_curve
)
+
(
arrau.data_curve_da
+ arrau.data_curve_on
+ arrau.data_curve_fb
)
+
(
sara.data_curve
)
// Multilingual/LOME
+
(
multilingual.onml_baselines
+ multilingual.data_curve_en
+ multilingual.data_curve_zh
+ multilingual.data_curve_ar
+ multilingual.data_curve_ca
+ multilingual.data_curve_es
+ multilingual.data_curve_it
+ multilingual.data_curve_nl
+ multilingual.ml_exps
+ multilingual.finetune_sweeps
+ multilingual.base_data_exps
+ multilingual.dev
+ aida.dev
)
+
// Initial incremental coref model
(
icoref.main
+ icoref.ablations
+ icoref.ablations_2
+ icoref.ablations_3
+ icoref.ablations_3_evict
+ icoref.main_trials
+ icoref.encoders
+ icoref.evaluation
+ icoref.unused
+ icoref.main_mention_xe
)