How does Pytorch handles backpropagation in this case?

后端 未结 0 932
攒了一身酷
攒了一身酷 2020-12-05 17:22
class ExNet(nn.Module):
    def __init__(self):
        super(ExNet,self).__init__()
        self.fc1 = nn.Linear(1024,500)
        self.fc2 = nn.Linear(500,100)
            


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题