将3D ResNet中的BN转为GN:1)找到BN layer;2)代替BN为GN. def convert_BN2GN(model): for name, module in model._modules.items(): #遍历layer if ...
確定! 回上一頁