├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── example ├── example_TextSegmentation_by_monpa.ipynb └── userdict.txt ├── monpa_2vs3.png └── src ├── README.md ├── __init__.py ├── albert_config └── albert_config_mo.json ├── changelog.md ├── configuration_albert.py ├── crf_layer.py ├── model └── monpa_model_8000.pt ├── modeling_albert.py ├── pos.tgt.dict ├── tokenization.py ├── utils └── __init__.py └── vocab_monpa.vocab /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/changelog.md -------------------------------------------------------------------------------- /example/example_TextSegmentation_by_monpa.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/example/example_TextSegmentation_by_monpa.ipynb -------------------------------------------------------------------------------- /example/userdict.txt: -------------------------------------------------------------------------------- 1 | 蔡英文總統 100 PER 2 | 受邀 100 V 3 | -------------------------------------------------------------------------------- /monpa_2vs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/monpa_2vs3.png -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/README.md -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/albert_config/albert_config_mo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/albert_config/albert_config_mo.json -------------------------------------------------------------------------------- /src/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/changelog.md -------------------------------------------------------------------------------- /src/configuration_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/configuration_albert.py -------------------------------------------------------------------------------- /src/crf_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/crf_layer.py -------------------------------------------------------------------------------- /src/model/monpa_model_8000.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/model/monpa_model_8000.pt -------------------------------------------------------------------------------- /src/modeling_albert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/modeling_albert.py -------------------------------------------------------------------------------- /src/pos.tgt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/pos.tgt.dict -------------------------------------------------------------------------------- /src/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/tokenization.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/vocab_monpa.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monpa-team/monpa/HEAD/src/vocab_monpa.vocab --------------------------------------------------------------------------------