Skip to content

Commit

Permalink
amend
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobettini committed Sep 3, 2024
1 parent fd1131a commit 363b728
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions benchmarl/models/gnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,14 +458,13 @@ class GnnConfig(ModelConfig):
topology: str = MISSING
self_loops: bool = MISSING

pos_features: int = MISSING
vel_features: int = MISSING

gnn_class: Type[torch_geometric.nn.MessagePassing] = MISSING
gnn_kwargs: Optional[dict] = None

position_key: Optional[str] = None
pos_features: Optional[int] = 0
velocity_key: Optional[str] = None
vel_features: Optional[int] = 0
exclude_pos_from_node_features: Optional[bool] = None
edge_radius: Optional[float] = None

Expand Down

0 comments on commit 363b728

Please sign in to comment.