Skip to content

Commit 717c4ca

Browse files
committed
update layers
1 parent 0f11457 commit 717c4ca

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

layers.py

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
},
2020
"2D":{
2121
"hidden_channels": 128
22+
},
23+
"2D_GCN":{
24+
"hidden_channels": 128
2225
}
2326
},
2427
"rna_prot": {
@@ -30,6 +33,10 @@
3033
"hidden_channels": 64,
3134
"dropout_rate": 0.2
3235
},
36+
"2D_GCN":{
37+
"hidden_channels": 64,
38+
"dropout_rate": 0.2
39+
},
3340
},
3441
"rna_site": {
3542
"2.5D":{
@@ -38,6 +45,9 @@
3845
"2D":{
3946
"hidden_channels":128
4047
},
48+
"2D_GCN":{
49+
"hidden_channels": 128
50+
}
4151
},
4252
}
4353

@@ -52,7 +62,7 @@
5262
"2D":{
5363
"epochs": 40,
5464
"batch_size": 8,
55-
"learning_rate": 0.001
65+
"learning_rate": 0.0001
5666
}
5767
},
5868
"rna_prot": {
@@ -66,6 +76,11 @@
6676
"batch_size": 8,
6777
"learning_rate": 0.01
6878
},
79+
"2D_GCN":{
80+
"epochs": 40,
81+
"batch_size": 8,
82+
"learning_rate": 0.01
83+
},
6984
}, # 0.01 (original)
7085
"rna_site": {
7186
"2.5D":{
@@ -77,6 +92,11 @@
7792
"batch_size": 8,
7893
"epochs": 40,
7994
"learning_rate": 0.0001
95+
},
96+
"2D_GCN":{
97+
"batch_size": 8,
98+
"epochs": 40,
99+
"learning_rate": 0.0001
80100
}
81101
},
82102
}

0 commit comments

Comments
 (0)