Skip to content

Commit

Permalink
fixup: clarify GAT-specific parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
streeve committed Mar 17, 2022
1 parent 388e216 commit 89fb9a0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions hydragnn/models/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,12 @@ def create_model(
)

elif model_type == "GAT":
# FIXME: expose options to users
heads = 6
negative_slope = 0.05
model = GATStack(
6,
0.05,
heads,
negative_slope,
input_dim,
hidden_dim,
output_dim,
Expand Down

0 comments on commit 89fb9a0

Please sign in to comment.