You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model = create_model(
args.model,
pretrained=False,
num_classes=args.nb_classes,
drop_rate=args.drop,
drop_path_rate=args.drop_path,
drop_block_rate=None,
img_size=args.input_size
)
thanks for your contribution. Why is it?
The text was updated successfully, but these errors were encountered:
When I deleted this line: import models_mamba in main.py, it raised the same error. After I added it back, the code worked.
I guess the timm library needs to read those registered models in models_mamba.py (line 555-615).
Hope this helps.
The text was updated successfully, but these errors were encountered: