import torch.nn as nn import torch.nn.functional as F class Model(nn. ... Linear(15, 1) #第二層Linear NN def forward(self, x): x = F.relu(self.nn1(x)) #對第 ...
確定! 回上一頁