mix_hidden_lr=1e-3# Basic learning rate of fundamental_chain_crf layer
IS_SPARSE=True# Whether to update embedding in sparse way
PASS_NUM=10# Training epoches
BATCH_SIZE=10# Batch size
Embeddding_name='emb'
embedding_name='emb'
```
It should be specially noted that the parameter `hidden_dim = 512` actually specifies the dimension of the LSTM hidden layer's vector is 128. For this, please refer to the description of `dynamic_lstm` in the official PaddlePaddle API documentation.
mix_hidden_lr = 1e-3 # Basic learning rate of fundamental_chain_crf layer
IS_SPARSE = True # Whether to update embedding in sparse way
PASS_NUM = 10 # Training epoches
BATCH_SIZE = 10 # Batch size
Embeddding_name = 'emb'
embedding_name = 'emb'
```
It should be specially noted that the parameter `hidden_dim = 512` actually specifies the dimension of the LSTM hidden layer's vector is 128. For this, please refer to the description of `dynamic_lstm` in the official PaddlePaddle API documentation.