-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.py
58 lines (53 loc) · 1.26 KB
/
config.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
from pathlib import Path
__all__ = ['project_path', 'dataset_config']
project_path = Path(__file__).parent
dataset_config = {
'elliptic':
{
'K': 2,
'M': 4,
'hidden_channels': 128,
'lr_f': 5e-2,
'lr': 1e-4,
'weight_decay': 1e-5,
'beta': .5,
'epochs': 2000,
'patience': 200
},
'yelp':
{
'K': 2,
'M': 5,
'hidden_channels': 64,
'lr_f': 5e-2,
'lr': 5e-4,
'weight_decay': 1e-5,
'beta': 1.,
'epochs': 2000,
'patience': 200
},
'FinV':
{
'K': 2,
'M': 7,
'hidden_channels': 128,
'lr_f': 5e-2,
'lr': 5e-4,
'weight_decay': 1e-5,
'beta': 1.,
'epochs': 2000,
'patience': 200
},
'Telecom':
{
'K': 2,
'M': 6,
'hidden_channels': 128,
'lr_f': 5e-2,
'lr': 5e-4,
'weight_decay': 5e-4,
'beta': 1.,
'epochs': 2000,
'patience': 200
}
}