在ipython中写了一个类,但是在实例化类的时候出现了 ‘module’ object has no attributes 'linear'的错误。
跟 *.pyc 文件有关??
第一次运行,是不是还没有生成了*.pcy文件
@张小仙儿: 贴贴代码吧,说不定你的代码有问题
@舒碧:
import torch.nn as nn
import torch.nn.functional as F
class Net(nn.Module):
def __init__(self):
nn.Module.__init__()
#super(Net, self).__init__()
self.conv2 = nn.Conv2d(6, 16, 5)
self.fc1 = nn.Linear(16*5*5, 120)
self.fc2 = nn.Linear(120, 84)
self.fc3 = nn.linear(84, 10)
def forward(self, x):
x = F.max_pool2d(F.relu(self.conv1(x)), (2,2))
x = F.max_pool2d(F.relu(self.conv2(x)), 2)
x = x.view(x.size()[0], -1)
x = F.relu(self.fc1(x))
x = F.relu(self.fc2(x))
x = self.fc3(x)
return x
net = Net()
print(net)
@舒碧:执行 net = Net()的时候,报AttributeError:'Net' object has no attribute '_modules'
@张小仙儿: nn.linear(84, 10) 是不是大小写??????/ 检查 torch.nn 吧
@舒碧: 是说检查源代码吗?源代码会有问题吗?
@张小仙儿: 你的linear 和 Linear 。。。。。。。。。。大小写区分一下
@舒碧: 嗯嗯 我是参考书上写的,书上是大写的
@舒碧: 我直接在方法下面pass过了也不行,没有写linear,,,是不是nn.Modules那儿有问题