├── .gitignore ├── DataSet.csv ├── TestModel.csv ├── demo.py ├── neg.csv ├── neg.txt ├── pos.csv ├── pos.txt ├── pos_neg.py ├── readme.md ├── test_model.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/.gitignore -------------------------------------------------------------------------------- /DataSet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/DataSet.csv -------------------------------------------------------------------------------- /TestModel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/TestModel.csv -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/demo.py -------------------------------------------------------------------------------- /neg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/neg.csv -------------------------------------------------------------------------------- /neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/neg.txt -------------------------------------------------------------------------------- /pos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/pos.csv -------------------------------------------------------------------------------- /pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/pos.txt -------------------------------------------------------------------------------- /pos_neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/pos_neg.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/readme.md -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/test_model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PY-GZKY/Py-SnowNLP/HEAD/train.py --------------------------------------------------------------------------------