├── .idea └── modules.xml ├── README.md ├── ckpt └── .gitkeep ├── conlleval.py ├── data └── README.md ├── data_helper.py ├── imgs ├── bert_bilstm_crf.png ├── demo.png └── struct.png ├── log └── .gitkeep ├── models ├── BERT_BiLSTM_CRF.py ├── __init__.py ├── base_config.py └── rnncell.py ├── result └── .gitkeep ├── run.py ├── train_val_test.py └── utils.py /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conlleval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/conlleval.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | 链接:https://pan.baidu.com/s/1NSWtWQSNr7xgBvyMLJM66Q 提取码:32et -------------------------------------------------------------------------------- /data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/data_helper.py -------------------------------------------------------------------------------- /imgs/bert_bilstm_crf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/imgs/bert_bilstm_crf.png -------------------------------------------------------------------------------- /imgs/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/imgs/demo.png -------------------------------------------------------------------------------- /imgs/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/imgs/struct.png -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/BERT_BiLSTM_CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/models/BERT_BiLSTM_CRF.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/models/base_config.py -------------------------------------------------------------------------------- /models/rnncell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/models/rnncell.py -------------------------------------------------------------------------------- /result/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/run.py -------------------------------------------------------------------------------- /train_val_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/train_val_test.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duguiming111/NER-BERT-BiLSTM-CRF-/HEAD/utils.py --------------------------------------------------------------------------------