File tree Expand file tree Collapse file tree
pina/model/block/message_passing Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class RadialFieldNetworkBlock(MessagePassing):
3737 def __init__ (
3838 self ,
3939 node_feature_dim ,
40- hidden_dim = 64 ,
40+ hidden_dim = 64 ,
4141 n_layers = 2 ,
4242 activation = torch .nn .Tanh ,
4343 aggr = "add" ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class SchnetBlock(MessagePassing):
3737 def __init__ (
3838 self ,
3939 node_feature_dim ,
40- hidden_dim = 64 ,
40+ hidden_dim = 64 ,
4141 n_message_layers = 2 ,
4242 n_update_layers = 2 ,
4343 n_radial_layers = 2 ,
@@ -107,7 +107,7 @@ def __init__(
107107
108108 # Layer for updating the node features
109109 self .update_net = FeedForward (
110- input_dimensions = 2 * node_feature_dim ,
110+ input_dimensions = 2 * node_feature_dim ,
111111 output_dimensions = node_feature_dim ,
112112 inner_size = hidden_dim ,
113113 n_layers = n_update_layers ,
You can’t perform that action at this time.
0 commit comments