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

get_kernel_size has a bug #355

Open
tiandiweizun opened this issue Mar 17, 2025 · 0 comments
Open

get_kernel_size has a bug #355

tiandiweizun opened this issue Mar 17, 2025 · 0 comments

Comments

@tiandiweizun
Copy link

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

Image

Desktop (please complete the following information):

  • OS: ubuntu 22.04

Additional context
When k is a tensor with only one item, it is also Iterable

            if isinstance(k, Iterable):
                kernel_size = list(k)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant