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
def build_model(base_model_cfg='resnext101', ema=False): if not ema: return TUN_bone(base_model_cfg, *extra_layer(base_model_cfg, ResNeXt101())) else: return TUN_bone(base_model_cfg, *extra_layer(base_model_cfg, ResNeXt101())) 怎么感觉不管这里ema的值是什么,返回的都是一个内容呢?
The text was updated successfully, but these errors were encountered:
嗯嗯,这里没区别,这个是代码的历史遗留问题,当时做实验时候留下来的痕迹没有完全清除
Sorry, something went wrong.
No branches or pull requests
build the whole network
def build_model(base_model_cfg='resnext101', ema=False):
if not ema:
return TUN_bone(base_model_cfg, *extra_layer(base_model_cfg, ResNeXt101()))
else:
return TUN_bone(base_model_cfg, *extra_layer(base_model_cfg, ResNeXt101()))
怎么感觉不管这里ema的值是什么,返回的都是一个内容呢?
The text was updated successfully, but these errors were encountered: