-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Can we use pretrained models with iresnet backbone? #2675
Comments
Yes, why not? |
ZubairKhan001
changed the title
Can we use pretrained models with iresnet backnot?
Can we use pretrained models with iresnet backbone?
Oct 26, 2024
please, how can we do this in train_v2 file in arcface_torch as it only has --resume configuration option. |
have you found a workaround? on how to use pretrained model yet?
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems like pertained ms1mv3 arcface models cant be pretrained with a smaller custom dataset. Is that correct.
def _iresnet(arch, block, layers, pretrained, progress, **kwargs):
model = IResNet(block, layers, **kwargs)
if pretrained:
raise ValueError()
return model
The text was updated successfully, but these errors were encountered: