├── README.md ├── img ├── f1_and_loss.png └── gui.png ├── requirements.txt └── torch_ner ├── NER_GUI.py ├── __init__.py ├── data ├── __init__.py ├── clue2bioes.py ├── dev.json ├── result │ ├── cluener.dev.bioes │ ├── cluener.test.bioes │ ├── cluener.train.bioes │ └── info.txt ├── test.json └── train.json ├── output ├── 20220417160929 │ ├── .gitattributes │ ├── config.json │ ├── eval │ │ └── events.out.tfevents.1649951121.DESKTOP-9TB9LQI │ ├── label2id.pkl │ ├── label_list.pkl │ ├── ner_model.ckpt │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ ├── training_config.bin │ └── vocab.txt └── logs │ └── ner_train.log └── source ├── __init__.py ├── config.py ├── conlleval.py ├── logger.py ├── models.py ├── ner_main.py ├── ner_predict.py ├── ner_processor.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/README.md -------------------------------------------------------------------------------- /img/f1_and_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/img/f1_and_loss.png -------------------------------------------------------------------------------- /img/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/img/gui.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/requirements.txt -------------------------------------------------------------------------------- /torch_ner/NER_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/NER_GUI.py -------------------------------------------------------------------------------- /torch_ner/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /torch_ner/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torch_ner/data/clue2bioes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/clue2bioes.py -------------------------------------------------------------------------------- /torch_ner/data/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/dev.json -------------------------------------------------------------------------------- /torch_ner/data/result/cluener.dev.bioes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/result/cluener.dev.bioes -------------------------------------------------------------------------------- /torch_ner/data/result/cluener.test.bioes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/result/cluener.test.bioes -------------------------------------------------------------------------------- /torch_ner/data/result/cluener.train.bioes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/result/cluener.train.bioes -------------------------------------------------------------------------------- /torch_ner/data/result/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/result/info.txt -------------------------------------------------------------------------------- /torch_ner/data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/test.json -------------------------------------------------------------------------------- /torch_ner/data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/data/train.json -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/.gitattributes -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/config.json -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/eval/events.out.tfevents.1649951121.DESKTOP-9TB9LQI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/eval/events.out.tfevents.1649951121.DESKTOP-9TB9LQI -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/label2id.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/label2id.pkl -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/label_list.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/label_list.pkl -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/ner_model.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/ner_model.ckpt -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/special_tokens_map.json -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/tokenizer_config.json -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/training_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/training_config.bin -------------------------------------------------------------------------------- /torch_ner/output/20220417160929/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/20220417160929/vocab.txt -------------------------------------------------------------------------------- /torch_ner/output/logs/ner_train.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/output/logs/ner_train.log -------------------------------------------------------------------------------- /torch_ner/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torch_ner/source/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/config.py -------------------------------------------------------------------------------- /torch_ner/source/conlleval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/conlleval.py -------------------------------------------------------------------------------- /torch_ner/source/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/logger.py -------------------------------------------------------------------------------- /torch_ner/source/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/models.py -------------------------------------------------------------------------------- /torch_ner/source/ner_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/ner_main.py -------------------------------------------------------------------------------- /torch_ner/source/ner_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/ner_predict.py -------------------------------------------------------------------------------- /torch_ner/source/ner_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/ner_processor.py -------------------------------------------------------------------------------- /torch_ner/source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianRanPig/chinese_ner/HEAD/torch_ner/source/utils.py --------------------------------------------------------------------------------