Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 444 Bytes

Tutorial_3_Sequence_Labeling.md

File metadata and controls

5 lines (3 loc) · 444 Bytes

Text Classification

Kashgari provides CNN_LSTM_Model, BLSTM_Model and BLSTM_CRF_Model for sequence labeling, All labeling models inherit from the SequenceLabelingModel. It is almost identical to the text classification class ClassificationModel. Except the data type for Y in the classification model is List[str], for labeling it is List[List[str]]

See more: Tutorial 2: Text Classification