├── .gitignore ├── README.md ├── cws ├── __init__.py ├── dataset.py ├── make_labels.py ├── models.py ├── predictor.py ├── train.py └── utils.py └── scripts ├── batch_train_evaluate.sh ├── convert_embeddings_to_bin.py ├── mwseg.pl ├── score └── train_evaluate.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /cws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cws/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/cws/dataset.py -------------------------------------------------------------------------------- /cws/make_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/cws/make_labels.py -------------------------------------------------------------------------------- /cws/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/cws/models.py -------------------------------------------------------------------------------- /cws/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/cws/predictor.py -------------------------------------------------------------------------------- /cws/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/cws/train.py -------------------------------------------------------------------------------- /cws/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/cws/utils.py -------------------------------------------------------------------------------- /scripts/batch_train_evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/scripts/batch_train_evaluate.sh -------------------------------------------------------------------------------- /scripts/convert_embeddings_to_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/scripts/convert_embeddings_to_bin.py -------------------------------------------------------------------------------- /scripts/mwseg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/scripts/mwseg.pl -------------------------------------------------------------------------------- /scripts/score: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/scripts/score -------------------------------------------------------------------------------- /scripts/train_evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riccorl/chinese-word-segmentation-pytorch/HEAD/scripts/train_evaluate.sh --------------------------------------------------------------------------------