├── .gitignore ├── LICENSE ├── README.md ├── bin └── njuner ├── ner_metrics.py ├── njuner ├── __init__.py ├── njuner.py ├── pytorch_pretrained_bert │ ├── __init__.py │ ├── modeling.py │ └── tokenization.py └── run.py ├── preprocess_msra.py ├── preprocess_pd98.py ├── requirements.txt ├── run_ner.py ├── run_ner_server.py ├── setup.py └── task_config.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/README.md -------------------------------------------------------------------------------- /bin/njuner: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python -m njuner.run "$@" 3 | -------------------------------------------------------------------------------- /ner_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/ner_metrics.py -------------------------------------------------------------------------------- /njuner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/njuner/__init__.py -------------------------------------------------------------------------------- /njuner/njuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/njuner/njuner.py -------------------------------------------------------------------------------- /njuner/pytorch_pretrained_bert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /njuner/pytorch_pretrained_bert/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/njuner/pytorch_pretrained_bert/modeling.py -------------------------------------------------------------------------------- /njuner/pytorch_pretrained_bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/njuner/pytorch_pretrained_bert/tokenization.py -------------------------------------------------------------------------------- /njuner/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/njuner/run.py -------------------------------------------------------------------------------- /preprocess_msra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/preprocess_msra.py -------------------------------------------------------------------------------- /preprocess_pd98.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/preprocess_pd98.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/run_ner.py -------------------------------------------------------------------------------- /run_ner_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/run_ner_server.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/setup.py -------------------------------------------------------------------------------- /task_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericput/bert-ner/HEAD/task_config.yaml --------------------------------------------------------------------------------