forked from HKUDS/AI-Researcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathablation_results.json
More file actions
86 lines (86 loc) · 2.16 KB
/
ablation_results.json
File metadata and controls
86 lines (86 loc) · 2.16 KB
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
{
"baseline": {
"best_val_acc": 0.322,
"best_test_acc": 0.317,
"config": {
"epochs": 200,
"hidden_dim": 64,
"num_layers": 2,
"learning_rate": 0.01,
"weight_decay": 0.0005,
"dropout": 0.5,
"temperature": 0.4,
"edge_weight": 0.1
}
},
"no_edge_reg": {
"best_val_acc": 0.316,
"best_test_acc": 0.316,
"config": {
"epochs": 200,
"hidden_dim": 64,
"num_layers": 2,
"learning_rate": 0.01,
"weight_decay": 0.0005,
"dropout": 0.5,
"temperature": 0.4,
"edge_weight": 0.0
}
},
"high_temp": {
"best_val_acc": 0.316,
"best_test_acc": 0.319,
"config": {
"epochs": 200,
"hidden_dim": 64,
"num_layers": 2,
"learning_rate": 0.01,
"weight_decay": 0.0005,
"dropout": 0.5,
"temperature": 1.0,
"edge_weight": 0.1
}
},
"low_temp": {
"best_val_acc": 0.316,
"best_test_acc": 0.313,
"config": {
"epochs": 200,
"hidden_dim": 64,
"num_layers": 2,
"learning_rate": 0.01,
"weight_decay": 0.0005,
"dropout": 0.5,
"temperature": 0.1,
"edge_weight": 0.1
}
},
"deep_model": {
"best_val_acc": 0.316,
"best_test_acc": 0.319,
"config": {
"epochs": 200,
"hidden_dim": 64,
"num_layers": 4,
"learning_rate": 0.01,
"weight_decay": 0.0005,
"dropout": 0.5,
"temperature": 0.4,
"edge_weight": 0.1
}
},
"high_dropout": {
"best_val_acc": 0.314,
"best_test_acc": 0.32,
"config": {
"epochs": 200,
"hidden_dim": 64,
"num_layers": 2,
"learning_rate": 0.01,
"weight_decay": 0.0005,
"dropout": 0.8,
"temperature": 0.4,
"edge_weight": 0.1
}
}
}