├── .gitignore ├── Ch1_PyTorch_CBOW_embeddings.ipynb ├── Ch2_PyTorch_classifier.ipynb ├── Ch3_Elasticsearch_indexing.ipynb ├── README.md ├── crawlers └── config.py ├── helpers ├── __init__.py └── pickle_helpers.py ├── img └── espy.png └── model └── elastic_hashtag_model └── emonet /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /Ch1_PyTorch_CBOW_embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/Ch1_PyTorch_CBOW_embeddings.ipynb -------------------------------------------------------------------------------- /Ch2_PyTorch_classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/Ch2_PyTorch_classifier.ipynb -------------------------------------------------------------------------------- /Ch3_Elasticsearch_indexing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/Ch3_Elasticsearch_indexing.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /crawlers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/crawlers/config.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["pickle_helpers"] 2 | -------------------------------------------------------------------------------- /helpers/pickle_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/helpers/pickle_helpers.py -------------------------------------------------------------------------------- /img/espy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/img/espy.png -------------------------------------------------------------------------------- /model/elastic_hashtag_model/emonet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarsar/emotion_analysis_elastic_pytorch/HEAD/model/elastic_hashtag_model/emonet --------------------------------------------------------------------------------