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

TypeError: Mamba.__init__() got an unexpected keyword argument 'bimamba_type' #22

Open
BEFLIPPED opened this issue Nov 11, 2024 · 0 comments

Comments

@BEFLIPPED
Copy link

BEFLIPPED commented Nov 11, 2024

I write a demo in PointMamba.py as follows,

if name == 'main':
model = PointMamba(
in_channels = 2,
channels = [96, 192, 384, 384],
num_blocks = [2, 2, 18, 2],
# num_heads: List[int] = [6, 12, 24, 24],
drop_path = 0.5,
nempty = True, stem_down = 2
)
# print(model)
x = torch.randn((1024, 3))
print(x.shape)
y = model(x)
print(y.shape)

And a problem happened:
TypeError: Mamba.__init__() got an unexpected keyword argument 'bimamba_type'

How to solve it?
I request for a help, thank you.

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