├── README.md └── bert_ner ├── Crf on the top of Bilstm.pptx ├── Io └── data_loader.py ├── config └── args.py ├── main └── main.py ├── model ├── pytorch_pretrained_model │ └── bert_config.json └── vocab.txt ├── net ├── __pycache__ │ ├── bert_ner.cpython-36.pyc │ └── crf.cpython-36.pyc ├── bert_ner.py └── crf.py ├── output ├── images │ └── loss_acc.png └── logs │ └── all.log ├── preprocessing ├── __pycache__ │ └── data_processor.cpython-36.pyc └── data_processor.py ├── pytorch_pretrained_bert ├── __pycache__ │ ├── file_utils.cpython-36.pyc │ ├── modeling.cpython-36.pyc │ ├── optimization.cpython-36.pyc │ └── tokenization.cpython-36.pyc ├── file_utils.py ├── modeling.py ├── optimization.py └── tokenization.py ├── run_bert_ner.py ├── train ├── __pycache__ │ └── train.cpython-36.pyc └── train.py └── util ├── Logginger.py ├── __pycache__ ├── Logginger.cpython-36.pyc ├── model_util.cpython-36.pyc ├── plot_util.cpython-36.pyc └── porgress_util.cpython-36.pyc ├── model_util.py ├── plot_util.py └── porgress_util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /bert_ner/Crf on the top of Bilstm.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/Crf on the top of Bilstm.pptx -------------------------------------------------------------------------------- /bert_ner/Io/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/Io/data_loader.py -------------------------------------------------------------------------------- /bert_ner/config/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/config/args.py -------------------------------------------------------------------------------- /bert_ner/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/main/main.py -------------------------------------------------------------------------------- /bert_ner/model/pytorch_pretrained_model/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/model/pytorch_pretrained_model/bert_config.json -------------------------------------------------------------------------------- /bert_ner/model/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/model/vocab.txt -------------------------------------------------------------------------------- /bert_ner/net/__pycache__/bert_ner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/net/__pycache__/bert_ner.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/net/__pycache__/crf.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/net/__pycache__/crf.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/net/bert_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/net/bert_ner.py -------------------------------------------------------------------------------- /bert_ner/net/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/net/crf.py -------------------------------------------------------------------------------- /bert_ner/output/images/loss_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/output/images/loss_acc.png -------------------------------------------------------------------------------- /bert_ner/output/logs/all.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/output/logs/all.log -------------------------------------------------------------------------------- /bert_ner/preprocessing/__pycache__/data_processor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/preprocessing/__pycache__/data_processor.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/preprocessing/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/preprocessing/data_processor.py -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/__pycache__/file_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/__pycache__/file_utils.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/__pycache__/modeling.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/__pycache__/modeling.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/__pycache__/optimization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/__pycache__/optimization.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/__pycache__/tokenization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/__pycache__/tokenization.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/file_utils.py -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/modeling.py -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/optimization.py -------------------------------------------------------------------------------- /bert_ner/pytorch_pretrained_bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/pytorch_pretrained_bert/tokenization.py -------------------------------------------------------------------------------- /bert_ner/run_bert_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/run_bert_ner.py -------------------------------------------------------------------------------- /bert_ner/train/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/train/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/train/train.py -------------------------------------------------------------------------------- /bert_ner/util/Logginger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/Logginger.py -------------------------------------------------------------------------------- /bert_ner/util/__pycache__/Logginger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/__pycache__/Logginger.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/util/__pycache__/model_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/__pycache__/model_util.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/util/__pycache__/plot_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/__pycache__/plot_util.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/util/__pycache__/porgress_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/__pycache__/porgress_util.cpython-36.pyc -------------------------------------------------------------------------------- /bert_ner/util/model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/model_util.py -------------------------------------------------------------------------------- /bert_ner/util/plot_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/plot_util.py -------------------------------------------------------------------------------- /bert_ner/util/porgress_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circlePi/Bert_Chinese_Ner_pytorch/HEAD/bert_ner/util/porgress_util.py --------------------------------------------------------------------------------