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

[DEVELOPMENT] Consider implementing an RGCN #305

Open
KristinaUlicna opened this issue Oct 12, 2023 · 0 comments
Open

[DEVELOPMENT] Consider implementing an RGCN #305

KristinaUlicna opened this issue Oct 12, 2023 · 0 comments
Labels
methodology Building functional & diverse pipeline

Comments

@KristinaUlicna
Copy link
Collaborator

Details here, preliminary implementation attempt 👇

elif classifier_type == "RGCN":
self.conv_layer_list = ModuleList(
[
RGCNConv(
in_channels=hidden_channels_list[i],
out_channels=hidden_channels_list[i + 1],
num_relations=num_heads,
)
for i in range(len(hidden_channels_list) - 1)
]
)

@KristinaUlicna KristinaUlicna added the methodology Building functional & diverse pipeline label Oct 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
methodology Building functional & diverse pipeline
Projects
None yet
Development

No branches or pull requests

1 participant