-
Notifications
You must be signed in to change notification settings - Fork 43
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
einsum() operands do not broadcast with remapped shapes #17
Comments
Hey, thanks for your interest in our work, could you provide more information on this error (the full error log) and the dimensions of the data you are working with? I can't really tell whats wrong from just this error message. |
I met the same problem. from torch import nn import torchinfo from torchinfo import summary net = CoSTEncoder( summary(net,input_size=(1,121,12),col_names=["kernel_size","output_size","num_params","mult_adds"]) |
I figure out the problem, the length in CoSTEncoder must match your dataset. from torch import nn import torchinfo from torchinfo import summary net = CoSTEncoder( |
My dataset is similar to yours, with a total of 8 columns and 1681 rows, and the runtime reports such an error Traceback (most recent call last): |
That is right! |
Hi, Gerald.
I am trying to running your code on my own dataset. But I got some problems here:
RuntimeError: einsum() operands do not broadcast with remapped shapes [original->remapped]: [32, 37, 320]->[32, 37, 1, 320] [101, 320, 160]->[1, 101, 160, 320]
The text was updated successfully, but these errors were encountered: