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

Support for multiple aggregations within MessagePassing #4350

Merged
merged 9 commits into from
Mar 26, 2022
Merged

Conversation

rusty1s
Copy link
Member

@rusty1s rusty1s commented Mar 26, 2022

class MyConv(MessagePassing):
    def __init__(self, aggr=['add', 'mean', 'max']):
        super.__init__(aggr=aggr)

@codecov
Copy link

codecov bot commented Mar 26, 2022

Codecov Report

Merging #4350 (548be72) into master (222b42f) will increase coverage by 0.02%.
The diff coverage is 100.00%.

@@            Coverage Diff             @@
##           master    #4350      +/-   ##
==========================================
+ Coverage   82.29%   82.31%   +0.02%     
==========================================
  Files         310      310              
  Lines       15913    15932      +19     
==========================================
+ Hits        13096    13115      +19     
  Misses       2817     2817              
Impacted Files Coverage Δ
torch_geometric/nn/conv/message_passing.py 99.40% <100.00%> (+0.03%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 222b42f...548be72. Read the comment docs.

@rusty1s rusty1s merged commit 820516c into master Mar 26, 2022
@rusty1s rusty1s deleted the multiple_aggrs branch March 26, 2022 19:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support for multiple aggregations within MessagePassing 🚀
1 participant