关于pytorch网络计算的顺序性问题

x = ff1(x)*0.5 + adapter_ff1(x)*0.5 + x      res:0.918

x=  ff1(x)*0.5 + x + adapter_ff1(x)*0.5     res:0.686

你可能感兴趣的:(深度学习,pytorch)