浅谈Keras的Sequential与PyTorch的Sequential的区别

作者:鹊踏枝-码农 时间:2021-08-24 07:53:35 

深度学习库Keras中的Sequential是多个网络层的线性堆叠,在实现AlexNet与VGG等网络方面比较容易,因为它们没有ResNet那样的shortcut连接。在Keras中要实现ResNet网络则需要Model模型。

下面是Keras的Sequential具体示例:

可以通过向Sequential模型传递一个layer的list来构造该模型:


from keras.models import Sequential
from keras.layers import Dense, Activation

model = Sequential([
Dense(32, input_dim=784),
Activation('relu'),
Dense(10),
Activation('softmax'),
])

也可以通过.add()方法一个个的将layer加入模型中:


model = Sequential()
model.add(Dense(32, input_dim=784))
model.add(Activation('relu'))

Keras可以通过泛型模型(Model)实现复杂的网络,如ResNet,Inception等,具体示例如下:


from keras.layers import Input, Dense
from keras.models import Model

# this returns a tensor
inputs = Input(shape=(784,))

# a layer instance is callable on a tensor, and returns a tensor
x = Dense(64, activation='relu')(inputs)
x = Dense(64, activation='relu')(x)
predictions = Dense(10, activation='softmax')(x)

# this creates a model that includes
# the Input layer and three Dense layers
model = Model(input=inputs, output=predictions)

model.compile(optimizer='rmsprop',
loss='categorical_crossentropy',
metrics=['accuracy'])

model.fit(data, labels) # starts training

在目前的PyTorch版本中,可以仅通过Sequential实现线性模型和复杂的网络模型。PyTorch中的Sequential具体示例如下:


model = torch.nn.Sequential(
torch.nn.Linear(D_in, H),
torch.nn.ReLU(),
torch.nn.Linear(H, D_out),
)

也可以通过.add_module()方法一个个的将layer加入模型中:


layer1 = nn.Sequential()
layer1.add_module('conv1', nn.Conv2d(3, 32, 3, 1, padding=1))
layer1.add_module('relu1', nn.ReLU(True))
layer1.add_module('pool1', nn.MaxPool2d(2, 2))

由上可以看出,PyTorch创建网络的方法与Keras类似,PyTorch借鉴了Keras的一些优点。

来源:https://blog.csdn.net/u011501388/article/details/83584015

标签:Keras,Sequential,PyTorch
0
投稿

猜你喜欢

  • python实现数据库跨服务器迁移

    2023-09-23 04:54:03
  • asp如何随机显示网站链接?

    2010-06-07 20:40:00
  • Pycharm-community-2020.2.3 社区版安装教程图文详解

    2022-07-02 06:30:00
  • php实现压缩多个CSS与JS文件的方法

    2023-11-23 08:39:59
  • 解决python多行注释引发缩进错误的问题

    2022-02-08 04:19:53
  • python字符串判断密码强弱

    2021-05-09 04:20:04
  • 通过Python扫描代码关键字并进行预警的实现方法

    2022-11-02 02:42:51
  • 使用python3实现操作串口详解

    2021-10-21 18:32:41
  • Python使用Pillow实现图像基本变化

    2021-08-26 03:30:23
  • 一文教你用Python中progress库实现进度条

    2023-09-14 10:28:31
  • pygame游戏之旅 添加碰撞效果的方法

    2022-11-04 06:45:46
  • PyQt5根据控件Id获取控件对象的方法

    2023-02-13 15:22:50
  • Git的简单理解及基础操作命令详解

    2023-01-17 11:03:35
  • 基于Python编写一个宝石消消乐小游戏

    2021-10-25 05:46:06
  • python 制作本地应用搜索工具

    2023-03-25 02:16:50
  • 如何利用pycharm进行代码更新比较

    2022-06-21 17:13:09
  • 在python image 中安装中文字体的实现方法

    2021-08-06 06:19:35
  • TensorFlow tf.nn.max_pool实现池化操作方式

    2021-08-20 20:36:45
  • ASP用csDrawGraph组件制作饼图、柱状图

    2008-04-25 22:58:00
  • 一个网页设计师的成长经历

    2008-05-27 12:38:00
  • asp之家 网络编程 m.aspxhome.com