We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug get_nernel_size raise a TypeError: iteration over a 0-d tensor, when the k(kernel_size) is a tensor with only one item。
To Reproduce
#pip install torchinfo ==1.8.0 #pip install transformers == 4.49.0 from torchinfo import summary from transformers import MimiModel summary(MimiModel.from_pretrained("kyutai/mimi"), input_size=(1,1,32000))
Expected behavior show the model structure
Screenshots
Desktop (please complete the following information):
Additional context When k is a tensor with only one item, it is also Iterable
if isinstance(k, Iterable): kernel_size = list(k)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
get_nernel_size raise a TypeError: iteration over a 0-d tensor, when the k(kernel_size) is a tensor with only one item。
To Reproduce
Expected behavior
show the model structure
Screenshots
Desktop (please complete the following information):
Additional context
When k is a tensor with only one item, it is also Iterable
The text was updated successfully, but these errors were encountered: