├── .gitignore ├── README.md ├── demo.py ├── fw_test.py ├── models ├── __init__.py ├── base.py ├── charrnn.py ├── ran_cell.py ├── rwa_cell.py └── utils.py ├── requirements.txt ├── sample.py ├── server.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/demo.py -------------------------------------------------------------------------------- /fw_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/fw_test.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/models/base.py -------------------------------------------------------------------------------- /models/charrnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/models/charrnn.py -------------------------------------------------------------------------------- /models/ran_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/models/ran_cell.py -------------------------------------------------------------------------------- /models/rwa_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/models/rwa_cell.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/models/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | tensorflow 3 | jieba 4 | -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/sample.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/server.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx865712528/LM-CNLC/HEAD/utils.py --------------------------------------------------------------------------------