Source code for kashgari.tasks.labeling.cnn_lstm_model

# encoding: utf-8

# author: BrikerMan
# contact: eliyar917@gmail.com
# blog: https://eliyar.biz

# file: cnn_lstm_model.py
# time: 5:28 下午

from typing import Dict, Any

from tensorflow import keras

from kashgari.layers import L
from kashgari.tasks.labeling.abc_model import ABCLabelingModel


[docs]class CNN_LSTM_Model(ABCLabelingModel):
[docs] @classmethod def default_hyper_parameters(cls) -> Dict[str, Dict[str, Any]]: return { 'layer_bgru': { 'units': 128, 'return_sequences': True }, 'layer_dropout': { 'rate': 0.4 }, 'layer_time_distributed': {}, 'layer_activation': { 'activation': 'softmax' } }
[docs] def build_model_arc(self) -> None: output_dim = self.label_processor.vocab_size config = self.hyper_parameters embed_model = self.embedding.embed_model layer_stack = [ L.Bidirectional(L.GRU(**config['layer_bgru']), name='layer_bgru'), L.Dropout(**config['layer_dropout'], name='layer_dropout'), L.TimeDistributed(L.Dense(output_dim, **config['layer_time_distributed']), name='layer_time_distributed'), L.Activation(**config['layer_activation']) ] tensor = embed_model.output for layer in layer_stack: tensor = layer(tensor) self.tf_model = keras.Model(embed_model.inputs, tensor)
if __name__ == "__main__": pass