keras使用1D卷积的例子

apply a convolution 1d of length 3 to a sequence with 10 timesteps

with 64 output filters

model = Sequential()
model.add(Convolution1D(64, 3, border_mode=‘same’, input_shape=(10, 32)))

now model.output_shape == (None, 10, 64)

add a new conv1d on top

model.add(Convolution1D(32, 3, border_mode=‘same’))

now model.output_shape == (None, 10, 32)

一维卷积网络重点图

相关文章:

  • 2021-07-18
  • 2021-09-21
  • 2021-07-01
  • 2021-08-20
  • 2021-11-18
  • 2021-09-03
  • 2021-11-25
猜你喜欢
  • 2021-11-27
  • 2022-12-23
  • 2021-11-03
  • 2022-01-21
相关资源
相似解决方案