├── .gitignore ├── README.md ├── SECURITY.md ├── bert_nlp ├── Crf on the top of Bilstm.pptx ├── Io │ └── data_loader.py ├── config │ └── args.py ├── data │ ├── cws_data │ │ ├── cws.dev.json │ │ └── cws.train.json │ ├── ner_data │ │ ├── ner.dev.json │ │ └── ner.train.json │ └── postag_data │ │ ├── postag.dev.json │ │ └── postag.train.json ├── main │ └── main.py ├── model │ ├── pytorch_pretrained_model │ │ └── bert_config.json │ └── vocab.txt ├── net │ ├── crf.py │ └── model_net.py ├── output │ ├── checkpoint │ │ └── vocab.txt │ ├── images │ │ └── loss_acc.png │ └── logs │ │ └── all.log.2020-05-18 ├── preprocessing │ └── data_processor.py ├── pytorch_pretrained_bert │ ├── file_utils.py │ ├── modeling.py │ ├── optimization.py │ └── tokenization.py ├── run.py ├── train │ └── train.py └── util │ ├── Logginger.py │ ├── model_util.py │ ├── plot_util.py │ └── porgress_util.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bert_nlp/Crf on the top of Bilstm.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/Crf on the top of Bilstm.pptx -------------------------------------------------------------------------------- /bert_nlp/Io/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/Io/data_loader.py -------------------------------------------------------------------------------- /bert_nlp/config/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/config/args.py -------------------------------------------------------------------------------- /bert_nlp/data/cws_data/cws.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/data/cws_data/cws.dev.json -------------------------------------------------------------------------------- /bert_nlp/data/cws_data/cws.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/data/cws_data/cws.train.json -------------------------------------------------------------------------------- /bert_nlp/data/ner_data/ner.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/data/ner_data/ner.dev.json -------------------------------------------------------------------------------- /bert_nlp/data/ner_data/ner.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/data/ner_data/ner.train.json -------------------------------------------------------------------------------- /bert_nlp/data/postag_data/postag.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/data/postag_data/postag.dev.json -------------------------------------------------------------------------------- /bert_nlp/data/postag_data/postag.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/data/postag_data/postag.train.json -------------------------------------------------------------------------------- /bert_nlp/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/main/main.py -------------------------------------------------------------------------------- /bert_nlp/model/pytorch_pretrained_model/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/model/pytorch_pretrained_model/bert_config.json -------------------------------------------------------------------------------- /bert_nlp/model/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/model/vocab.txt -------------------------------------------------------------------------------- /bert_nlp/net/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/net/crf.py -------------------------------------------------------------------------------- /bert_nlp/net/model_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/net/model_net.py -------------------------------------------------------------------------------- /bert_nlp/output/checkpoint/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/output/checkpoint/vocab.txt -------------------------------------------------------------------------------- /bert_nlp/output/images/loss_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/output/images/loss_acc.png -------------------------------------------------------------------------------- /bert_nlp/output/logs/all.log.2020-05-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/output/logs/all.log.2020-05-18 -------------------------------------------------------------------------------- /bert_nlp/preprocessing/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/preprocessing/data_processor.py -------------------------------------------------------------------------------- /bert_nlp/pytorch_pretrained_bert/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/pytorch_pretrained_bert/file_utils.py -------------------------------------------------------------------------------- /bert_nlp/pytorch_pretrained_bert/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/pytorch_pretrained_bert/modeling.py -------------------------------------------------------------------------------- /bert_nlp/pytorch_pretrained_bert/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/pytorch_pretrained_bert/optimization.py -------------------------------------------------------------------------------- /bert_nlp/pytorch_pretrained_bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/pytorch_pretrained_bert/tokenization.py -------------------------------------------------------------------------------- /bert_nlp/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/run.py -------------------------------------------------------------------------------- /bert_nlp/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/train/train.py -------------------------------------------------------------------------------- /bert_nlp/util/Logginger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/util/Logginger.py -------------------------------------------------------------------------------- /bert_nlp/util/model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/util/model_util.py -------------------------------------------------------------------------------- /bert_nlp/util/plot_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/util/plot_util.py -------------------------------------------------------------------------------- /bert_nlp/util/porgress_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/bert_nlp/util/porgress_util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lisennlp/bert_crf_sequence_annotation/HEAD/requirements.txt --------------------------------------------------------------------------------