├── .gitignore ├── README.md ├── configuration.py ├── data └── build_pku_msr_input.py ├── inference.py ├── lstm_based_cws_model.py ├── ops ├── input_ops.py └── vocab.py ├── process_chr_embedding.py ├── train.py └── word_count /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/configuration.py -------------------------------------------------------------------------------- /data/build_pku_msr_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/data/build_pku_msr_input.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/inference.py -------------------------------------------------------------------------------- /lstm_based_cws_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/lstm_based_cws_model.py -------------------------------------------------------------------------------- /ops/input_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/ops/input_ops.py -------------------------------------------------------------------------------- /ops/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/ops/vocab.py -------------------------------------------------------------------------------- /process_chr_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/process_chr_embedding.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayYip/cws-tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /word_count: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------