├── .gitignore ├── Compute_all_features ├── Compute_all_features.py └── resources │ ├── NB_Subj_Model.sav │ ├── __init__.pyc │ ├── assertives.txt │ ├── bias-lexicon.txt │ ├── count_vect.sav │ ├── factives.txt │ ├── feature_functions.py │ ├── feature_functions.pyc │ ├── happiness_index.txt │ ├── hedges.txt │ ├── implicatives.txt │ ├── moral foundations dictionary.dic │ ├── negative-words.txt │ ├── other_lexicons.txt │ ├── positive-words.txt │ ├── readability.py │ ├── readability.pyc │ ├── readability_utils.py │ ├── readability_utils.pyc │ ├── report_verbs.txt │ ├── source_codes.json │ ├── stopwords.txt │ ├── subjclueslen.txt │ ├── syllables_en.py │ ├── syllables_en.pyc │ └── tfidf_transformer.sav ├── FeatureNameDocumentation.txt ├── README.md ├── compute_all_features_DB ├── Compute_all_features_DBversion.py ├── resources │ ├── NB_Subj_Model.sav │ ├── __init__.pyc │ ├── assertives.txt │ ├── bias-lexicon.txt │ ├── count_vect.sav │ ├── factives.txt │ ├── feature_functions.py │ ├── feature_functions.pyc │ ├── happiness_index.txt │ ├── hedges.txt │ ├── implicatives.txt │ ├── moral foundations dictionary.dic │ ├── negative-words.txt │ ├── other_lexicons.txt │ ├── positive-words.txt │ ├── readability.py │ ├── readability.pyc │ ├── readability_utils.py │ ├── readability_utils.pyc │ ├── report_verbs.txt │ ├── source_codes.json │ ├── stopwords.txt │ ├── subjclueslen.txt │ ├── syllables_en.py │ ├── syllables_en.pyc │ └── tfidf_transformer.sav └── temp │ └── input_tagged.txt ├── compute_all_features_TF ├── Compute_all_features.py ├── resources │ ├── NB_Subj_Model.sav │ ├── __init__.pyc │ ├── assertives.txt │ ├── bias-lexicon.txt │ ├── count_vect.sav │ ├── factives.txt │ ├── feature_functions.py │ ├── feature_functions.pyc │ ├── happiness_index.txt │ ├── hedges.txt │ ├── implicatives.txt │ ├── moral foundations dictionary.dic │ ├── negative-words.txt │ ├── other_lexicons.txt │ ├── positive-words.txt │ ├── readability.py │ ├── readability.pyc │ ├── readability_utils.py │ ├── readability_utils.pyc │ ├── report_verbs.txt │ ├── source_codes.json │ ├── stopwords.txt │ ├── subjclueslen.txt │ ├── syllables_en.py │ ├── syllables_en.pyc │ └── tfidf_transformer.sav └── temp │ └── input_tagged.txt ├── compute_all_features_fast_py3 ├── run_file.py ├── run_functions.py ├── src │ ├── readability.py │ ├── readability_utils.py │ ├── syllables_en.py │ └── tokenizing.py └── utility_data │ ├── NB_Subj_Model.sav │ ├── assertives.txt │ ├── bias-lexicon.txt │ ├── count_vect.sav │ ├── factives.txt │ ├── happiness_index.txt │ ├── hedges.txt │ ├── implicatives.txt │ ├── moral foundations dictionary.dic │ ├── negative-words.txt │ ├── other_lexicons.txt │ ├── positive-words.txt │ ├── report_verbs.txt │ ├── source_codes.json │ ├── stopwords.txt │ ├── subjclueslen.txt │ └── tfidf_transformer.sav ├── compute_feats_fast_py3 ├── run_file.py ├── run_functions.py ├── src │ ├── readability.py │ ├── readability_utils.py │ ├── syllables_en.py │ └── tokenizing.py └── utility_data │ ├── NB_Subj_Model.sav │ ├── assertives.txt │ ├── bias-lexicon.txt │ ├── count_vect.sav │ ├── factives.txt │ ├── happiness_index.txt │ ├── hedges.txt │ ├── implicatives.txt │ ├── moral foundations dictionary.dic │ ├── negative-words.txt │ ├── other_lexicons.txt │ ├── positive-words.txt │ ├── report_verbs.txt │ ├── source_codes.json │ ├── stopwords.txt │ ├── subjclueslen.txt │ └── tfidf_transformer.sav └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/.gitignore -------------------------------------------------------------------------------- /Compute_all_features/Compute_all_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/Compute_all_features.py -------------------------------------------------------------------------------- /Compute_all_features/resources/NB_Subj_Model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/NB_Subj_Model.sav -------------------------------------------------------------------------------- /Compute_all_features/resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/__init__.pyc -------------------------------------------------------------------------------- /Compute_all_features/resources/assertives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/assertives.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/bias-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/bias-lexicon.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/count_vect.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/count_vect.sav -------------------------------------------------------------------------------- /Compute_all_features/resources/factives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/factives.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/feature_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/feature_functions.py -------------------------------------------------------------------------------- /Compute_all_features/resources/feature_functions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/feature_functions.pyc -------------------------------------------------------------------------------- /Compute_all_features/resources/happiness_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/happiness_index.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/hedges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/hedges.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/implicatives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/implicatives.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/moral foundations dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/moral foundations dictionary.dic -------------------------------------------------------------------------------- /Compute_all_features/resources/negative-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/negative-words.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/other_lexicons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/other_lexicons.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/positive-words.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/readability.py -------------------------------------------------------------------------------- /Compute_all_features/resources/readability.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/readability.pyc -------------------------------------------------------------------------------- /Compute_all_features/resources/readability_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/readability_utils.py -------------------------------------------------------------------------------- /Compute_all_features/resources/readability_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/readability_utils.pyc -------------------------------------------------------------------------------- /Compute_all_features/resources/report_verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/report_verbs.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/source_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/source_codes.json -------------------------------------------------------------------------------- /Compute_all_features/resources/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/stopwords.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/subjclueslen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/subjclueslen.txt -------------------------------------------------------------------------------- /Compute_all_features/resources/syllables_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/syllables_en.py -------------------------------------------------------------------------------- /Compute_all_features/resources/syllables_en.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/syllables_en.pyc -------------------------------------------------------------------------------- /Compute_all_features/resources/tfidf_transformer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/Compute_all_features/resources/tfidf_transformer.sav -------------------------------------------------------------------------------- /FeatureNameDocumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/FeatureNameDocumentation.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/README.md -------------------------------------------------------------------------------- /compute_all_features_DB/Compute_all_features_DBversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/Compute_all_features_DBversion.py -------------------------------------------------------------------------------- /compute_all_features_DB/resources/NB_Subj_Model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/NB_Subj_Model.sav -------------------------------------------------------------------------------- /compute_all_features_DB/resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/__init__.pyc -------------------------------------------------------------------------------- /compute_all_features_DB/resources/assertives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/assertives.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/bias-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/bias-lexicon.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/count_vect.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/count_vect.sav -------------------------------------------------------------------------------- /compute_all_features_DB/resources/factives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/factives.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/feature_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/feature_functions.py -------------------------------------------------------------------------------- /compute_all_features_DB/resources/feature_functions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/feature_functions.pyc -------------------------------------------------------------------------------- /compute_all_features_DB/resources/happiness_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/happiness_index.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/hedges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/hedges.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/implicatives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/implicatives.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/moral foundations dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/moral foundations dictionary.dic -------------------------------------------------------------------------------- /compute_all_features_DB/resources/negative-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/negative-words.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/other_lexicons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/other_lexicons.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/positive-words.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/readability.py -------------------------------------------------------------------------------- /compute_all_features_DB/resources/readability.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/readability.pyc -------------------------------------------------------------------------------- /compute_all_features_DB/resources/readability_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/readability_utils.py -------------------------------------------------------------------------------- /compute_all_features_DB/resources/readability_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/readability_utils.pyc -------------------------------------------------------------------------------- /compute_all_features_DB/resources/report_verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/report_verbs.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/source_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/source_codes.json -------------------------------------------------------------------------------- /compute_all_features_DB/resources/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/stopwords.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/subjclueslen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/subjclueslen.txt -------------------------------------------------------------------------------- /compute_all_features_DB/resources/syllables_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/syllables_en.py -------------------------------------------------------------------------------- /compute_all_features_DB/resources/syllables_en.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/syllables_en.pyc -------------------------------------------------------------------------------- /compute_all_features_DB/resources/tfidf_transformer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/resources/tfidf_transformer.sav -------------------------------------------------------------------------------- /compute_all_features_DB/temp/input_tagged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_DB/temp/input_tagged.txt -------------------------------------------------------------------------------- /compute_all_features_TF/Compute_all_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/Compute_all_features.py -------------------------------------------------------------------------------- /compute_all_features_TF/resources/NB_Subj_Model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/NB_Subj_Model.sav -------------------------------------------------------------------------------- /compute_all_features_TF/resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/__init__.pyc -------------------------------------------------------------------------------- /compute_all_features_TF/resources/assertives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/assertives.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/bias-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/bias-lexicon.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/count_vect.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/count_vect.sav -------------------------------------------------------------------------------- /compute_all_features_TF/resources/factives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/factives.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/feature_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/feature_functions.py -------------------------------------------------------------------------------- /compute_all_features_TF/resources/feature_functions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/feature_functions.pyc -------------------------------------------------------------------------------- /compute_all_features_TF/resources/happiness_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/happiness_index.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/hedges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/hedges.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/implicatives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/implicatives.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/moral foundations dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/moral foundations dictionary.dic -------------------------------------------------------------------------------- /compute_all_features_TF/resources/negative-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/negative-words.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/other_lexicons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/other_lexicons.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/positive-words.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/readability.py -------------------------------------------------------------------------------- /compute_all_features_TF/resources/readability.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/readability.pyc -------------------------------------------------------------------------------- /compute_all_features_TF/resources/readability_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/readability_utils.py -------------------------------------------------------------------------------- /compute_all_features_TF/resources/readability_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/readability_utils.pyc -------------------------------------------------------------------------------- /compute_all_features_TF/resources/report_verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/report_verbs.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/source_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/source_codes.json -------------------------------------------------------------------------------- /compute_all_features_TF/resources/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/stopwords.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/subjclueslen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/subjclueslen.txt -------------------------------------------------------------------------------- /compute_all_features_TF/resources/syllables_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/syllables_en.py -------------------------------------------------------------------------------- /compute_all_features_TF/resources/syllables_en.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/syllables_en.pyc -------------------------------------------------------------------------------- /compute_all_features_TF/resources/tfidf_transformer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/resources/tfidf_transformer.sav -------------------------------------------------------------------------------- /compute_all_features_TF/temp/input_tagged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_TF/temp/input_tagged.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/run_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/run_file.py -------------------------------------------------------------------------------- /compute_all_features_fast_py3/run_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/run_functions.py -------------------------------------------------------------------------------- /compute_all_features_fast_py3/src/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/src/readability.py -------------------------------------------------------------------------------- /compute_all_features_fast_py3/src/readability_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/src/readability_utils.py -------------------------------------------------------------------------------- /compute_all_features_fast_py3/src/syllables_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/src/syllables_en.py -------------------------------------------------------------------------------- /compute_all_features_fast_py3/src/tokenizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/src/tokenizing.py -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/NB_Subj_Model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/NB_Subj_Model.sav -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/assertives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/assertives.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/bias-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/bias-lexicon.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/count_vect.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/count_vect.sav -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/factives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/factives.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/happiness_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/happiness_index.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/hedges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/hedges.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/implicatives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/implicatives.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/moral foundations dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/moral foundations dictionary.dic -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/negative-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/negative-words.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/other_lexicons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/other_lexicons.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/positive-words.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/report_verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/report_verbs.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/source_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/source_codes.json -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/stopwords.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/subjclueslen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/subjclueslen.txt -------------------------------------------------------------------------------- /compute_all_features_fast_py3/utility_data/tfidf_transformer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_all_features_fast_py3/utility_data/tfidf_transformer.sav -------------------------------------------------------------------------------- /compute_feats_fast_py3/run_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/run_file.py -------------------------------------------------------------------------------- /compute_feats_fast_py3/run_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/run_functions.py -------------------------------------------------------------------------------- /compute_feats_fast_py3/src/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/src/readability.py -------------------------------------------------------------------------------- /compute_feats_fast_py3/src/readability_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/src/readability_utils.py -------------------------------------------------------------------------------- /compute_feats_fast_py3/src/syllables_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/src/syllables_en.py -------------------------------------------------------------------------------- /compute_feats_fast_py3/src/tokenizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/src/tokenizing.py -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/NB_Subj_Model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/NB_Subj_Model.sav -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/assertives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/assertives.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/bias-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/bias-lexicon.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/count_vect.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/count_vect.sav -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/factives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/factives.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/happiness_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/happiness_index.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/hedges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/hedges.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/implicatives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/implicatives.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/moral foundations dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/moral foundations dictionary.dic -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/negative-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/negative-words.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/other_lexicons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/other_lexicons.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/positive-words.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/report_verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/report_verbs.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/source_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/source_codes.json -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/stopwords.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/subjclueslen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/subjclueslen.txt -------------------------------------------------------------------------------- /compute_feats_fast_py3/utility_data/tfidf_transformer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminDHorne/Language-Features-for-News/HEAD/compute_feats_fast_py3/utility_data/tfidf_transformer.sav -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nltk 2 | collections 3 | pickle 4 | vaderSentiment 5 | tqdm 6 | --------------------------------------------------------------------------------