forked from BNN-UPC/GNNetworkingChallenge
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.ini
More file actions
43 lines (40 loc) · 1.11 KB
/
Copy pathconfig.ini
File metadata and controls
43 lines (40 loc) · 1.11 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
[DIRECTORIES]
# PATH where the model will be saved/resumed
logs:../logs/model_log
# PATH of the test data
test:../data/sample_data/test
# PATH of the test data
train:../data/sample_data/train
[HYPERPARAMETERS]
# Dimension of the links' hidden state
link_state_dim:32
# Dimension of the paths' hidden state
path_state_dim:32
# Number of message passing's iterations
t:8
# Number of readout units
readout_units:8
# Learning rate used by the Exponential Decay
learning_rate:0.001
# Decay steps used by the Exponential Decay
decay_steps:80000
# Decay rate used by the Exponential Decay
decay_rate:0.6
# L2 regularization used in the first Dense layer
l2: 0.1
# L2 regularization used in the second Dense layer
l2_2: 0.01
[RUN_CONFIG]
# Max number of training steps
train_steps:5000000
# Time in seconds until the model is saved
save_checkpoints_secs:600
# Max number of checkpoints saved
keep_checkpoint_max:20
# Time in seconds until an evaluation is started
throttle_secs:600
[DATASET]
# Number of different Type of Service found in the dataset
num_tos:3
# Number of different Scheduling Policies found in the dataset
num_policies:3