(module_list, conv_init, norm_layer, bn_eps, bn_momentum, **kwargs)
| 16 | |
| 17 | |
| 18 | def init_weight(module_list, conv_init, norm_layer, bn_eps, bn_momentum, **kwargs): |
| 19 | if isinstance(module_list, list): |
| 20 | for feature in module_list: |
| 21 | __init_weight(feature, conv_init, norm_layer, bn_eps, bn_momentum, **kwargs) |
| 22 | else: |
| 23 | __init_weight(module_list, conv_init, norm_layer, bn_eps, bn_momentum, **kwargs) |
| 24 | |
| 25 | |
| 26 | def group_weight(weight_group, module, norm_layer, lr): |
no test coverage detected