代码拉取完成,页面将自动刷新
from keras.layers import Conv1D, BatchNormalization, Activation, GlobalMaxPool1D
def textcnn_one(word_vec=None, kernel_size=1, filters=512):
x = word_vec
x = Conv1D(filters=filters, kernel_size=[kernel_size], strides=1, padding='same')(x)
x = BatchNormalization()(x)
x = Activation(activation='relu')(x)
x = Conv1D(filters=filters, kernel_size=[kernel_size], strides=1, padding='same')(x)
x = BatchNormalization()(x)
x = Activation(activation='relu')(x)
x = GlobalMaxPool1D()(x)
return x
if __name__ == '__main__':
from keras.layers import Dense, Embedding, Input, Dropout
from keras.layers import BatchNormalization, Concatenate
from keras.models import Model
from keras.utils import plot_model
filters=256
data_input = Input(shape=[400])
word_vec = Embedding(input_dim=40000 + 1,
input_length=400,
output_dim=512,
mask_zero=False,
name='Embedding')(data_input)
x1 = textcnn_one(word_vec=word_vec, kernel_size=1, filters=filters)
x2 = textcnn_one(word_vec=word_vec, kernel_size=2, filters=filters)
x3 = textcnn_one(word_vec=word_vec, kernel_size=3, filters=filters)
x4 = textcnn_one(word_vec=word_vec, kernel_size=4, filters=filters)
x5 = textcnn_one(word_vec=word_vec, kernel_size=5, filters=filters)
x = Concatenate(axis=1)([x1, x2, x3, x4, x5])
x = BatchNormalization()(x)
x = Dense(500, activation="relu")(x)
x = Dense(202, activation="sigmoid")(x)
model = Model(inputs=data_input, outputs=x)
plot_model(model, './textcnn.png', show_shapes=True)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。