当前位置:   article > 正文

python引入其他文件夹下的py文件具体方法_python调用其他py文件

python调用其他py文件

在这里插入图片描述在这里插入图片描述在这里插入图片描述output =net(input)
target = variable(t.arange(0,10))

#the point
output=output.to(torch.float32)
target=target.to(torch.float32)

criterion = nn.MSELoss()
loss = criterion(output,target)

net.zero_grad()
print(“反向传播之前conv1.bias的梯度”)
print(net.conv1.bias.grad)
loss.backward() #此处疑难杂症 先跳过
print(“反向传播之后conv1.bias的梯度”)
print(net.conv1.bias.grad)

output =net(input)
target = variable(t.arange(0,10))
 
#the point
output=output.to(torch.float32)
target=target.to(torch.float32)
 
criterion = nn.MSELoss()
loss = criterion(output,target)
 
net.zero_grad()
print("反向传播之前conv1.bias的梯度")
print(net.conv1.bias.grad)
loss.backward()          #此处疑难杂症  先跳过
print("反向传播之后conv1.bias的梯度")
print(net.conv1.bias.grad)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/423419
推荐阅读
相关标签
  

闽ICP备14008679号