-
Notifications
You must be signed in to change notification settings - Fork 104
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
4-D equivalent? #7
Comments
The current module does not support 4D matrix multiplication, so you have to first reshape the matrix into a vector and apply the set transformer modules. |
@zabzug-pfpt hi, are you able to extend set-transformer to 4-D input? |
I did not, I suspect that there is not an easy way of doing so. In my case, I decided to apply a convolutional layer + pooling over one dimension to reduce down from 4D to 3D, and then applied Set Transformer. |
What if I have a set of matrices instead of a set of vectors? Is it possible to extend the Set Transformer framework to cover that scenario?
I played around with it a little (including making some small tweaks) but got bogged down with the
.bmm
call in the MAB module:The text was updated successfully, but these errors were encountered: