├── .DS_Store ├── .gitignore ├── README.md ├── data ├── .DS_Store ├── ratings_run.txt ├── ratings_test.txt └── ratings_train.txt ├── doc2vec_run.py ├── doc2vec_test.py ├── doc2vec_train.py ├── model ├── doc2vec.model └── finalized_model.sav └── run_nltk.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/README.md -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/ratings_run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/data/ratings_run.txt -------------------------------------------------------------------------------- /data/ratings_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/data/ratings_test.txt -------------------------------------------------------------------------------- /data/ratings_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/data/ratings_train.txt -------------------------------------------------------------------------------- /doc2vec_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/doc2vec_run.py -------------------------------------------------------------------------------- /doc2vec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/doc2vec_test.py -------------------------------------------------------------------------------- /doc2vec_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/doc2vec_train.py -------------------------------------------------------------------------------- /model/doc2vec.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/model/doc2vec.model -------------------------------------------------------------------------------- /model/finalized_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/model/finalized_model.sav -------------------------------------------------------------------------------- /run_nltk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoho0443/classify_comment_emotion/HEAD/run_nltk.py --------------------------------------------------------------------------------