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
currently using unet_config . An obsolete method for learner params
#Problem: cfg = unet_config(blur=True, norm_type=NormType.Weight, self_attention=True, y_range=y_range)
def create_gen_learner(): return unet_learner(dls_gen, bbone, loss_func=loss_gen, config=cfg)
#Fix: remove cfg lne & Feed the params in directly to the learner def create_gen_learner(): return unet_learner(dls_gen, bbone, loss_func=loss_gen, blur=True, norm_type=NormType.Weight, self_attention=True, y_range=y_range)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently using unet_config . An obsolete method for learner params
#Problem:
cfg = unet_config(blur=True, norm_type=NormType.Weight, self_attention=True,
y_range=y_range)
def create_gen_learner():
return unet_learner(dls_gen, bbone, loss_func=loss_gen, config=cfg)
#Fix: remove cfg lne & Feed the params in directly to the learner
def create_gen_learner():
return unet_learner(dls_gen, bbone, loss_func=loss_gen,
blur=True, norm_type=NormType.Weight, self_attention=True,
y_range=y_range)
The text was updated successfully, but these errors were encountered: