├── .idea ├── .gitignore ├── depression-detection.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .ipynb_checkpoints └── 3_depression_detector-checkpoint.ipynb ├── 0_depression_data_scrapper.ipynb ├── 1_non-depressive-data-gathering.ipynb ├── 2_combine_datasets.ipynb ├── 3_depression_detector.ipynb ├── Depression detection ├── Project Motivation.odt ├── README.md ├── data ├── 2018-EI-reg-En-anger-test-gold.txt ├── 2018-EI-reg-En-fear-test-gold.txt ├── 2018-EI-reg-En-joy-test-gold.txt ├── 2018-EI-reg-En-sadness-test-gold.txt ├── general_tweets.csv ├── tweets_combined.csv ├── tweets_final_1_clean.csv ├── tweets_final_2_clean.csv ├── tweets_final_3_clean.csv ├── tweets_final_4_clean.csv ├── tweets_final_5_clean.csv └── tweets_final_6_clean.csv └── embedding └── glove.twitter.27B.100d.md /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/depression-detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/depression-detection.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.ipynb_checkpoints/3_depression_detector-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/.ipynb_checkpoints/3_depression_detector-checkpoint.ipynb -------------------------------------------------------------------------------- /0_depression_data_scrapper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/0_depression_data_scrapper.ipynb -------------------------------------------------------------------------------- /1_non-depressive-data-gathering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/1_non-depressive-data-gathering.ipynb -------------------------------------------------------------------------------- /2_combine_datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/2_combine_datasets.ipynb -------------------------------------------------------------------------------- /3_depression_detector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/3_depression_detector.ipynb -------------------------------------------------------------------------------- /Depression detection: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Project Motivation.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/Project Motivation.odt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/README.md -------------------------------------------------------------------------------- /data/2018-EI-reg-En-anger-test-gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/2018-EI-reg-En-anger-test-gold.txt -------------------------------------------------------------------------------- /data/2018-EI-reg-En-fear-test-gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/2018-EI-reg-En-fear-test-gold.txt -------------------------------------------------------------------------------- /data/2018-EI-reg-En-joy-test-gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/2018-EI-reg-En-joy-test-gold.txt -------------------------------------------------------------------------------- /data/2018-EI-reg-En-sadness-test-gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/2018-EI-reg-En-sadness-test-gold.txt -------------------------------------------------------------------------------- /data/general_tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/general_tweets.csv -------------------------------------------------------------------------------- /data/tweets_combined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_combined.csv -------------------------------------------------------------------------------- /data/tweets_final_1_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_final_1_clean.csv -------------------------------------------------------------------------------- /data/tweets_final_2_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_final_2_clean.csv -------------------------------------------------------------------------------- /data/tweets_final_3_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_final_3_clean.csv -------------------------------------------------------------------------------- /data/tweets_final_4_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_final_4_clean.csv -------------------------------------------------------------------------------- /data/tweets_final_5_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_final_5_clean.csv -------------------------------------------------------------------------------- /data/tweets_final_6_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/data/tweets_final_6_clean.csv -------------------------------------------------------------------------------- /embedding/glove.twitter.27B.100d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcwang/depression-detection/HEAD/embedding/glove.twitter.27B.100d.md --------------------------------------------------------------------------------