├── LICENSE ├── README.md ├── charbl_bichar_ner.conf ├── charbl_ner.conf ├── data └── resume │ ├── dev.char.bmes │ ├── test.char.bmes │ └── train.char.bmes ├── lattice_ner.conf ├── load_conf.py ├── lrcnn_ner.conf ├── main.py ├── model ├── CNNmodel.py ├── __init__.py ├── bilstm.py ├── bilstmcrf.py ├── crf.py ├── cw_ner │ ├── __init__.py │ ├── functions │ │ ├── __init__.py │ │ ├── gaz_opt.py │ │ ├── iniatlize.py │ │ └── utils.py │ ├── lw │ │ ├── __init__.py │ │ ├── cw_ner.py │ │ └── tbx_writer.py │ ├── model │ │ ├── __init__.py │ │ └── crf.py │ └── modules │ │ ├── __init__.py │ │ ├── gaz_bilstm.py │ │ ├── gaz_embed.py │ │ └── highway.py ├── latticelstm.py └── layers.py ├── utils ├── __init__.py ├── alphabet.py ├── data.py ├── file_trans_tools.py ├── functions.py ├── gazetteer.py ├── metric.py ├── tagSchemeConverter.py └── trie.py └── wclstm_ner.conf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/README.md -------------------------------------------------------------------------------- /charbl_bichar_ner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/charbl_bichar_ner.conf -------------------------------------------------------------------------------- /charbl_ner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/charbl_ner.conf -------------------------------------------------------------------------------- /data/resume/dev.char.bmes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/data/resume/dev.char.bmes -------------------------------------------------------------------------------- /data/resume/test.char.bmes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/data/resume/test.char.bmes -------------------------------------------------------------------------------- /data/resume/train.char.bmes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/data/resume/train.char.bmes -------------------------------------------------------------------------------- /lattice_ner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/lattice_ner.conf -------------------------------------------------------------------------------- /load_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/load_conf.py -------------------------------------------------------------------------------- /lrcnn_ner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/lrcnn_ner.conf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/main.py -------------------------------------------------------------------------------- /model/CNNmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/CNNmodel.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zero' 2 | -------------------------------------------------------------------------------- /model/bilstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/bilstm.py -------------------------------------------------------------------------------- /model/bilstmcrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/bilstmcrf.py -------------------------------------------------------------------------------- /model/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/crf.py -------------------------------------------------------------------------------- /model/cw_ner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/cw_ner/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/cw_ner/functions/gaz_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/functions/gaz_opt.py -------------------------------------------------------------------------------- /model/cw_ner/functions/iniatlize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/functions/iniatlize.py -------------------------------------------------------------------------------- /model/cw_ner/functions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/functions/utils.py -------------------------------------------------------------------------------- /model/cw_ner/lw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/cw_ner/lw/cw_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/lw/cw_ner.py -------------------------------------------------------------------------------- /model/cw_ner/lw/tbx_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/lw/tbx_writer.py -------------------------------------------------------------------------------- /model/cw_ner/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/cw_ner/model/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/model/crf.py -------------------------------------------------------------------------------- /model/cw_ner/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/cw_ner/modules/gaz_bilstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/modules/gaz_bilstm.py -------------------------------------------------------------------------------- /model/cw_ner/modules/gaz_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/modules/gaz_embed.py -------------------------------------------------------------------------------- /model/cw_ner/modules/highway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/cw_ner/modules/highway.py -------------------------------------------------------------------------------- /model/latticelstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/latticelstm.py -------------------------------------------------------------------------------- /model/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/model/layers.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zero' 2 | -------------------------------------------------------------------------------- /utils/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/alphabet.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/file_trans_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/file_trans_tools.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/gazetteer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/gazetteer.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/tagSchemeConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/tagSchemeConverter.py -------------------------------------------------------------------------------- /utils/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/utils/trie.py -------------------------------------------------------------------------------- /wclstm_ner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerohd4869/Chinese-NER/HEAD/wclstm_ner.conf --------------------------------------------------------------------------------