-
Notifications
You must be signed in to change notification settings - Fork 19
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
missing iformer_small #22
Comments
您的邮件已经收到。我会及时做出回复。
|
我也有同样的问题,当我在运行finetune或者validation时显示RuntimeError: Unknown model (iformer_small) |
您的邮件已经收到。我会及时做出回复。
|
我也是遇到了这个问题,我运行finetune时显示没有这个模型RuntimeError: Unknown model (iformer_small) |
您的邮件已经收到。我会及时做出回复。
|
@sullivantee @aulaywang @ArptPlank
create model
replace to .... |
您的邮件已经收到。我会及时做出回复。
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
when running valid.py it shows this error
Traceback (most recent call last):
File "validate.py", line 371, in
main()
File "validate.py", line 358, in main
validate(args)
File "validate.py", line 156, in validate
model = create_model(
File "C:\Users\CHU001\anaconda3\envs\pytorch\lib\site-packages\timm\models\factory.py", line 71, in create_model
raise RuntimeError('Unknown model (%s)' % model_name)
RuntimeError: Unknown model (iformer_small)
the code i ran:
python validate.py ./imagenet --model iformer_small --checkpoint checkpoint/iformer_small/model_best.pth.tar
i found out it grabs the model "iformer_small" from the directory of anaconda3\envs\pytorch\lib\site-packages\timm\models
but there seems to be no such model as "iformer_small"
The text was updated successfully, but these errors were encountered: