copying a param of torch.Size([128]) from checkpoint, where the shape is torch.Size([1, 128])解决方式
关于torch的在加载bn_inception、x_inception时出现copyingaparamoftorch.Size([128])fromcheckpoint,wheretheshapeistorch.Size([1,128])类型的错误,观察发现可以用过修改加载模型中权重维度解决问题。例如:bn_inception中都是两维元组的数据转为一维:如(1,128)转为(128)可使用一下程