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
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: