-
Hi, I would like to implement a custom aggregation strategy which takes the absolute maximum. I was wondering if this is already supported or in development? If not, would it be possible to give me some pointers on how I might implement this in the most efficient way? I understand I would have to first perform scatter_max on the absolute values of my input tensor. Then I would need to map the argmax back to the original tensor, but in a way where I can preserve or retrieve the sign. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Mar 20, 2024
Replies: 1 comment 6 replies
-
Why not do |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, it's not
scatter
butgather
: