├── README.md ├── __init__.py ├── address_segment_service.py ├── conlleval.py ├── data_utils.py ├── get_train_data.py ├── loader.py ├── model.py ├── train_eval.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding:utf-8 -*- -------------------------------------------------------------------------------- /address_segment_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/address_segment_service.py -------------------------------------------------------------------------------- /conlleval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/conlleval.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/data_utils.py -------------------------------------------------------------------------------- /get_train_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/get_train_data.py -------------------------------------------------------------------------------- /loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/loader.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/model.py -------------------------------------------------------------------------------- /train_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/train_eval.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yihenglu/chinese-address-segment/HEAD/utils.py --------------------------------------------------------------------------------