Skip to content

Commit

Permalink
standard value change
Browse files Browse the repository at this point in the history
  • Loading branch information
Aske-Rosted committed Oct 10, 2023
1 parent feff375 commit 5fe093e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/graphnet/models/gnn/rnn_dynedge.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def __init__(
nb_inputs: int,
*,
nb_neighbours: int = 8,
RNN_layers: int = 2,
RNN_hidden_size: int = 128,
RNN_layers: int = 3,
RNN_hidden_size: int = 256,
features_subset: Optional[Union[List[int], slice]] = None,
dynedge_layer_sizes: Optional[List[Tuple[int, ...]]] = None,
post_processing_layer_sizes: Optional[List[int]] = None,
Expand Down Expand Up @@ -61,6 +61,10 @@ def __init__(
512,
1024,
),
(
1024,
1024,
),
(
1024,
512,
Expand Down

0 comments on commit 5fe093e

Please sign in to comment.