JLB-JLB commited on
Commit
afc3076
·
verified ·
1 Parent(s): 0614bb6

Upload GCN/full_fcg/training_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. GCN/full_fcg/training_config.json +21 -0
GCN/full_fcg/training_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_mode": "full_fcg",
3
+ "test_ratio": 0.15,
4
+ "val_ratio": 0.15,
5
+ "random_seed": 42,
6
+ "model_type": "GCN",
7
+ "in_dim": 5,
8
+ "hidden_dim": 128,
9
+ "num_layers": 3,
10
+ "num_classes": 2,
11
+ "dropout": 0.5,
12
+ "batch_size": 4,
13
+ "learning_rate": 0.001,
14
+ "weight_decay": 0.0001,
15
+ "max_epochs": 200,
16
+ "es_patience": 20,
17
+ "es_min_epochs": 100,
18
+ "lr_patience": 10,
19
+ "lr_factor": 0.5,
20
+ "use_amp": true
21
+ }