├── .idea ├── .gitignore ├── BERT-Chinese-NER-pytorch.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── dataset ├── bert │ ├── bert_config.json │ └── vocab.txt ├── dev.txt ├── tag.txt ├── test.txt └── train.txt ├── model ├── BERT_BiLSTM_CRF.py └── __init__.py └── scripts ├── __init__.py ├── config.py ├── estimate.py ├── main.py ├── predict.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/BERT-Chinese-NER-pytorch.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/BERT-Chinese-NER-pytorch.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /dataset/bert/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/dataset/bert/bert_config.json -------------------------------------------------------------------------------- /dataset/bert/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/dataset/bert/vocab.txt -------------------------------------------------------------------------------- /dataset/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/dataset/dev.txt -------------------------------------------------------------------------------- /dataset/tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/dataset/tag.txt -------------------------------------------------------------------------------- /dataset/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/dataset/test.txt -------------------------------------------------------------------------------- /dataset/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/dataset/train.txt -------------------------------------------------------------------------------- /model/BERT_BiLSTM_CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/model/BERT_BiLSTM_CRF.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/model/__init__.py -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/scripts/config.py -------------------------------------------------------------------------------- /scripts/estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/scripts/estimate.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/scripts/predict.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCU-JJkinging/BERT-Chinese-NER-pytorch/HEAD/scripts/utils.py --------------------------------------------------------------------------------