├── README.md ├── code ├── bilstm_crf │ ├── BILSTM_CRF.py │ ├── helper.py │ ├── test.in │ ├── test.py │ ├── train.in │ ├── train.py │ └── validation.in └── hmm │ ├── hmm.py │ ├── test.in │ └── train.in └── doc ├── FSMN笔记.pdf ├── HMM笔记.pdf └── 序列标注模型对比.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/README.md -------------------------------------------------------------------------------- /code/bilstm_crf/BILSTM_CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/BILSTM_CRF.py -------------------------------------------------------------------------------- /code/bilstm_crf/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/helper.py -------------------------------------------------------------------------------- /code/bilstm_crf/test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/test.in -------------------------------------------------------------------------------- /code/bilstm_crf/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/test.py -------------------------------------------------------------------------------- /code/bilstm_crf/train.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/train.in -------------------------------------------------------------------------------- /code/bilstm_crf/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/train.py -------------------------------------------------------------------------------- /code/bilstm_crf/validation.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/bilstm_crf/validation.in -------------------------------------------------------------------------------- /code/hmm/hmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/hmm/hmm.py -------------------------------------------------------------------------------- /code/hmm/test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/hmm/test.in -------------------------------------------------------------------------------- /code/hmm/train.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/code/hmm/train.in -------------------------------------------------------------------------------- /doc/FSMN笔记.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/doc/FSMN笔记.pdf -------------------------------------------------------------------------------- /doc/HMM笔记.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/doc/HMM笔记.pdf -------------------------------------------------------------------------------- /doc/序列标注模型对比.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilynn/sequence-labeling/HEAD/doc/序列标注模型对比.pdf --------------------------------------------------------------------------------