# 定义模型 class Net(nn.Module): def __init__(self): super(Net,self).__init__() self.fc1=nn.Linear(3,10) self.fc2=nn.Linear(10,1) def forward(self, x): x=self.fc1(x) x=torch.relu(x) x=self.fc2(x) return x net = Net()此处运用的是什么模型
时间: 2024-02-07 08:02:42 浏览: 131
Pytorch实现GoogLeNet的方法
这是一个简单的前馈神经网络(Feedforward Neural Network),也可以称为多层感知器(Multi-Layer Perceptron,MLP)模型。它包含两个全连接层,其中第一个层有10个隐藏单元,第二个层输出一个标量值。输入维度为3,输出维度为1。在前向传播过程中,使用了ReLU激活函数。
阅读全文