如何在paddle框架下进行网络层参数的初始化
基于pytorch框架实现的网络中自定义了如下函数:
def weight_init(module):
for n,m in module.named_children():
if isinstance(m,nn.Conv2d):
nn...
yolov3目标检测:已训练完,固化保存模型时出现这个错误
----------------------Error Message Summary:----------------------UnavailableError: Load operator fail to open file yolo_model/traintrainconv2d_0.w_0, please check whether the m...