├── LICENSE ├── README.md ├── Resources ├── config_files │ ├── Spa_SO_Calc.ini │ └── en_SO_Calc.ini ├── dictionaries │ ├── English │ │ ├── adj_dictionary1.11.txt │ │ ├── adv_dictionary1.11.txt │ │ ├── google_dict.txt │ │ ├── int_dictionary1.11.txt │ │ ├── noun_dictionary1.11.txt │ │ └── verb_dictionary1.11.txt │ └── Spanish │ │ ├── SD+ciao_adj_dict_spa.txt │ │ ├── SD+ciao_adv_dict_spa.txt │ │ ├── SD+ciao_auto_noun_dict_spa.txt │ │ ├── SD+ciao_auto_verb_dict_spa.txt │ │ ├── SD_translated_adj_dict_spa.txt │ │ ├── SD_translated_adv_dict_spa.txt │ │ ├── SD_translated_fix_adj_dict_spa.txt │ │ ├── SD_translated_fix_adv_dict_spa.txt │ │ ├── SD_translated_fix_noun_dict_spa.txt │ │ ├── SD_translated_fix_verb_dict_spa.txt │ │ ├── SD_translated_noun_dict_spa.txt │ │ ├── SD_translated_verb_dict_spa.txt │ │ ├── ciao+SD_adj_dict_spa.txt │ │ ├── ciao+SD_adv_dict_spa.txt │ │ ├── ciao+SD_noun_dict_spa.txt │ │ ├── ciao+SD_verb_dict_spa.txt │ │ ├── ciao_adj_dict_spa.txt │ │ ├── ciao_adv_dict_spa.txt │ │ ├── ciao_noun_dict_spa.txt │ │ ├── ciao_verb_dict_spa.txt │ │ ├── google_translated_adj_dict_spa.txt │ │ ├── google_translated_adv_dict_spa.txt │ │ ├── google_translated_noun_dict_spa.txt │ │ ├── google_translated_verb_dict_spa.txt │ │ └── int_dict_spa.txt └── gold │ └── gold.txt ├── Sample ├── gold │ └── gold.txt ├── input │ └── Raw_Text │ │ └── BOOKS │ │ ├── no1.txt │ │ ├── no10.txt │ │ ├── no11.txt │ │ ├── no12.txt │ │ ├── no13.txt │ │ ├── no14.txt │ │ ├── no15.txt │ │ ├── no16.txt │ │ ├── no17.txt │ │ ├── no18.txt │ │ ├── no19.txt │ │ ├── no2.txt │ │ ├── no20.txt │ │ ├── no21.txt │ │ ├── no22.txt │ │ ├── no23.txt │ │ ├── no24.txt │ │ ├── no25.txt │ │ ├── no3.txt │ │ ├── no4.txt │ │ ├── no5.txt │ │ ├── no6.txt │ │ ├── no7.txt │ │ ├── no8.txt │ │ ├── no9.txt │ │ ├── tempfile2 │ │ ├── yes1.txt │ │ ├── yes10.txt │ │ ├── yes11.txt │ │ ├── yes12.txt │ │ ├── yes13.txt │ │ ├── yes14.txt │ │ ├── yes15.txt │ │ ├── yes16.txt │ │ ├── yes17.txt │ │ ├── yes18.txt │ │ ├── yes19.txt │ │ ├── yes2.txt │ │ ├── yes20.txt │ │ ├── yes21.txt │ │ ├── yes22.txt │ │ ├── yes23.txt │ │ ├── yes24.txt │ │ ├── yes25.txt │ │ ├── yes3.txt │ │ ├── yes4.txt │ │ ├── yes5.txt │ │ ├── yes6.txt │ │ ├── yes7.txt │ │ ├── yes8.txt │ │ └── yes9.txt └── output │ ├── Preprocessed_Output │ └── BOOKS │ │ ├── no1.txt │ │ ├── no10.txt │ │ ├── no11.txt │ │ ├── no12.txt │ │ ├── no13.txt │ │ ├── no14.txt │ │ ├── no15.txt │ │ ├── no16.txt │ │ ├── no17.txt │ │ ├── no18.txt │ │ ├── no19.txt │ │ ├── no2.txt │ │ ├── no20.txt │ │ ├── no21.txt │ │ ├── no22.txt │ │ ├── no23.txt │ │ ├── no24.txt │ │ ├── no25.txt │ │ ├── no3.txt │ │ ├── no4.txt │ │ ├── no5.txt │ │ ├── no6.txt │ │ ├── no7.txt │ │ ├── no8.txt │ │ ├── no9.txt │ │ ├── yes1.txt │ │ ├── yes10.txt │ │ ├── yes11.txt │ │ ├── yes12.txt │ │ ├── yes13.txt │ │ ├── yes14.txt │ │ ├── yes15.txt │ │ ├── yes16.txt │ │ ├── yes17.txt │ │ ├── yes18.txt │ │ ├── yes19.txt │ │ ├── yes2.txt │ │ ├── yes20.txt │ │ ├── yes21.txt │ │ ├── yes22.txt │ │ ├── yes23.txt │ │ ├── yes24.txt │ │ ├── yes25.txt │ │ ├── yes3.txt │ │ ├── yes4.txt │ │ ├── yes5.txt │ │ ├── yes6.txt │ │ ├── yes7.txt │ │ ├── yes8.txt │ │ └── yes9.txt │ └── SO_CAL_Output │ └── BOOKS │ ├── file_sentiment.csv │ ├── output.txt │ ├── prediction_accuracy.txt │ ├── rich_output.json │ └── richout.txt └── Source_Code ├── run_sentiment_calculator.sh ├── run_text_preprocessing.sh ├── sentiment_calculator ├── SO_Calc.py └── SO_Run.py └── text_preprocessing └── preprocess.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config_files/Spa_SO_Calc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/config_files/Spa_SO_Calc.ini -------------------------------------------------------------------------------- /Resources/config_files/en_SO_Calc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/config_files/en_SO_Calc.ini -------------------------------------------------------------------------------- /Resources/dictionaries/English/adj_dictionary1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/English/adj_dictionary1.11.txt -------------------------------------------------------------------------------- /Resources/dictionaries/English/adv_dictionary1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/English/adv_dictionary1.11.txt -------------------------------------------------------------------------------- /Resources/dictionaries/English/google_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/English/google_dict.txt -------------------------------------------------------------------------------- /Resources/dictionaries/English/int_dictionary1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/English/int_dictionary1.11.txt -------------------------------------------------------------------------------- /Resources/dictionaries/English/noun_dictionary1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/English/noun_dictionary1.11.txt -------------------------------------------------------------------------------- /Resources/dictionaries/English/verb_dictionary1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/English/verb_dictionary1.11.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD+ciao_adj_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD+ciao_adj_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD+ciao_adv_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD+ciao_adv_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD+ciao_auto_noun_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD+ciao_auto_noun_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD+ciao_auto_verb_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD+ciao_auto_verb_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_adj_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_adj_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_adv_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_adv_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_fix_adj_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_fix_adj_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_fix_adv_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_fix_adv_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_fix_noun_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_fix_noun_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_fix_verb_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_fix_verb_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_noun_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_noun_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/SD_translated_verb_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/SD_translated_verb_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao+SD_adj_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao+SD_adj_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao+SD_adv_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao+SD_adv_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao+SD_noun_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao+SD_noun_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao+SD_verb_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao+SD_verb_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao_adj_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao_adj_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao_adv_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao_adv_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao_noun_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao_noun_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/ciao_verb_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/ciao_verb_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/google_translated_adj_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/google_translated_adj_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/google_translated_adv_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/google_translated_adv_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/google_translated_noun_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/google_translated_noun_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/google_translated_verb_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/google_translated_verb_dict_spa.txt -------------------------------------------------------------------------------- /Resources/dictionaries/Spanish/int_dict_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/dictionaries/Spanish/int_dict_spa.txt -------------------------------------------------------------------------------- /Resources/gold/gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Resources/gold/gold.txt -------------------------------------------------------------------------------- /Sample/gold/gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/gold/gold.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no1.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no10.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no11.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no12.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no13.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no14.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no15.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no16.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no17.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no18.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no19.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no2.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no20.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no21.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no22.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no23.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no24.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no25.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no3.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no4.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no5.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no6.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no7.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no8.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/no9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/no9.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/tempfile2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes1.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes10.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes11.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes12.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes13.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes14.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes15.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes16.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes17.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes18.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes19.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes2.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes20.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes21.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes22.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes23.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes24.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes25.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes3.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes4.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes5.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes6.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes7.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes8.txt -------------------------------------------------------------------------------- /Sample/input/Raw_Text/BOOKS/yes9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/input/Raw_Text/BOOKS/yes9.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no1.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no10.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no11.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no12.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no13.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no14.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no15.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no16.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no17.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no18.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no19.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no2.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no20.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no21.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no22.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no23.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no24.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no25.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no3.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no4.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no5.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no6.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no7.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no8.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/no9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/no9.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes1.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes10.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes11.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes12.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes13.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes14.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes15.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes16.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes17.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes18.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes19.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes2.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes20.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes21.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes22.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes23.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes24.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes25.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes3.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes4.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes5.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes6.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes7.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes8.txt -------------------------------------------------------------------------------- /Sample/output/Preprocessed_Output/BOOKS/yes9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/Preprocessed_Output/BOOKS/yes9.txt -------------------------------------------------------------------------------- /Sample/output/SO_CAL_Output/BOOKS/file_sentiment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/SO_CAL_Output/BOOKS/file_sentiment.csv -------------------------------------------------------------------------------- /Sample/output/SO_CAL_Output/BOOKS/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/SO_CAL_Output/BOOKS/output.txt -------------------------------------------------------------------------------- /Sample/output/SO_CAL_Output/BOOKS/prediction_accuracy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/SO_CAL_Output/BOOKS/prediction_accuracy.txt -------------------------------------------------------------------------------- /Sample/output/SO_CAL_Output/BOOKS/rich_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/SO_CAL_Output/BOOKS/rich_output.json -------------------------------------------------------------------------------- /Sample/output/SO_CAL_Output/BOOKS/richout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Sample/output/SO_CAL_Output/BOOKS/richout.txt -------------------------------------------------------------------------------- /Source_Code/run_sentiment_calculator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Source_Code/run_sentiment_calculator.sh -------------------------------------------------------------------------------- /Source_Code/run_text_preprocessing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Source_Code/run_text_preprocessing.sh -------------------------------------------------------------------------------- /Source_Code/sentiment_calculator/SO_Calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Source_Code/sentiment_calculator/SO_Calc.py -------------------------------------------------------------------------------- /Source_Code/sentiment_calculator/SO_Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Source_Code/sentiment_calculator/SO_Run.py -------------------------------------------------------------------------------- /Source_Code/text_preprocessing/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfu-discourse-lab/SO-CAL/HEAD/Source_Code/text_preprocessing/preprocess.py --------------------------------------------------------------------------------