码迷,mamicode.com
首页 > 其他好文 > 详细

快速搭建神经网络

时间:2019-04-03 12:12:12      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:还需要   ORC   nbsp   ict   color   linear   类别   需要   def   

原来-方式一:

# class Net(torch.nn.Module):     # 继承 torch 的 Module
#     def __init__(self, n_feature, n_hidden, n_output):
#         super(Net, self).__init__()     # 继承 __init__ 功能
#         self.hidden = torch.nn.Linear(n_feature, n_hidden)   # 隐藏层线性输出
#         self.out = torch.nn.Linear(n_hidden, n_output)       # 输出层线性输出
#
#     def forward(self, x):
#         # 正向传播输入值, 神经网络分析出输出值
#         x = F.relu(self.hidden(x))      # 激励函数(隐藏层的线性值)
#         x = self.out(x)                 # 输出值, 但是这个不是预测值, 预测值还需要再另外计算
#         return x
# net = Net(n_feature=2, n_hidden=10, n_output=2) # 几个类别就几个 output

输出:

"""
Net (
  (hidden): Linear (1 -> 10)
  (predict): Linear (10 -> 1)
)

 

现在-方式二:

net = torch.nn.Sequential(
    torch.nn.Linear(2, 10),
    torch.nn.ReLU(),
    torch.nn.Linear(10, 2)
)

输出:

"""
Sequential (
  (0): Linear (1 -> 10)
  (1): ReLU ()
  (2): Linear (10 -> 1)
)
"""

比较:

方式一适合于个性化的向前传播配置,如使用RNN。但是麻烦。

方式二搭建简单,省略了很多的过程

快速搭建神经网络

标签:还需要   ORC   nbsp   ict   color   linear   类别   需要   def   

原文地址:https://www.cnblogs.com/Archer-Fang/p/10647846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!