├── LICENSE.md ├── README.md ├── corpus └── .gitkeep ├── images └── QR_hottoSNS-w2v.png ├── requirements.txt ├── run_evaluate.py └── setup.sh /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hottolink/hottoSNS-w2v/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hottolink/hottoSNS-w2v/HEAD/README.md -------------------------------------------------------------------------------- /corpus/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/QR_hottoSNS-w2v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hottolink/hottoSNS-w2v/HEAD/images/QR_hottoSNS-w2v.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gensim==3.4.0 2 | numpy 3 | pandas 4 | scipy 5 | -------------------------------------------------------------------------------- /run_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hottolink/hottoSNS-w2v/HEAD/run_evaluate.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hottolink/hottoSNS-w2v/HEAD/setup.sh --------------------------------------------------------------------------------