Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow tuples as keys in ModuleDict/ParameterDict #7294

Merged
merged 3 commits into from
May 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update
  • Loading branch information
rusty1s committed May 4, 2023
commit 6067daa49e6cd9ef6859ba3eed425c069f9c27dc
2 changes: 1 addition & 1 deletion torch_geometric/nn/module_dict.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Iterable, Mapping, Optional, Tuple, Union
from typing import Iterable, Mapping, Optional, Tuple, Union

import torch
from torch.nn import Module
Expand Down