├── .gitignore ├── LICENSE ├── README.md ├── README_CN.MD ├── README_EN.MD ├── data ├── .DS_Store ├── chinese │ ├── neg.txt │ └── pos.txt ├── rt-polaritydata │ ├── rt-polarity.neg │ └── rt-polarity.pos └── test_text │ ├── neg.txt │ └── pos.txt ├── data_helpers.py ├── demo └── jieba_demo.py ├── eval.png ├── eval.py ├── hello.txt ├── runs └── .DS_Store ├── text_cnn.py ├── train.py ├── training.png └── training2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/README_CN.MD -------------------------------------------------------------------------------- /README_EN.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/README_EN.MD -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/chinese/neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/chinese/neg.txt -------------------------------------------------------------------------------- /data/chinese/pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/chinese/pos.txt -------------------------------------------------------------------------------- /data/rt-polaritydata/rt-polarity.neg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/rt-polaritydata/rt-polarity.neg -------------------------------------------------------------------------------- /data/rt-polaritydata/rt-polarity.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/rt-polaritydata/rt-polarity.pos -------------------------------------------------------------------------------- /data/test_text/neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/test_text/neg.txt -------------------------------------------------------------------------------- /data/test_text/pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data/test_text/pos.txt -------------------------------------------------------------------------------- /data_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/data_helpers.py -------------------------------------------------------------------------------- /demo/jieba_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/demo/jieba_demo.py -------------------------------------------------------------------------------- /eval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/eval.png -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/eval.py -------------------------------------------------------------------------------- /hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/hello.txt -------------------------------------------------------------------------------- /runs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/runs/.DS_Store -------------------------------------------------------------------------------- /text_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/text_cnn.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/train.py -------------------------------------------------------------------------------- /training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/training.png -------------------------------------------------------------------------------- /training2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fendouai/Chinese-Text-Classification/HEAD/training2.png --------------------------------------------------------------------------------