├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── Predictor.ipynb ├── README.md ├── liberty ├── 1st_version │ ├── All_sides_moral_analysis.ipynb │ ├── Reason_moral_analysis.ipynb │ └── lexicon_filtered.tsv ├── 2nd_version │ ├── cs_lexicon_final.csv │ └── we_lexicon_final.csv └── 3rd_version │ └── liberty_moral_lexicon.tsv ├── moralstrength ├── __init__.py ├── annotations │ ├── authority.tsv │ ├── care.tsv │ ├── fairness.tsv │ ├── loyalty.tsv │ ├── purity.tsv │ └── v1.1 │ │ ├── authority.tsv │ │ ├── care.tsv │ │ ├── fairness.tsv │ │ ├── lexicons_expanded_v1-1.pck │ │ ├── loyalty.tsv │ │ └── purity.tsv ├── data.py ├── estimators.py ├── export │ ├── count_authority_lr.pck │ ├── count_care_lr.pck │ ├── count_fairness_lr.pck │ ├── count_loyalty_lr.pck │ ├── count_non-moral_lr.pck │ ├── count_purity_lr.pck │ ├── freq_authority_lr.pck │ ├── freq_care_lr.pck │ ├── freq_fairness_lr.pck │ ├── freq_loyalty_lr.pck │ ├── freq_non-moral_lr.pck │ ├── freq_purity_lr.pck │ ├── ngram.pck │ ├── unigram+count+freq_authority_lr.pck │ ├── unigram+count+freq_care_lr.pck │ ├── unigram+count+freq_fairness_lr.pck │ ├── unigram+count+freq_loyalty_lr.pck │ ├── unigram+count+freq_non-moral_lr.pck │ ├── unigram+count+freq_purity_lr.pck │ ├── unigram+count_authority_lr.pck │ ├── unigram+count_care_lr.pck │ ├── unigram+count_fairness_lr.pck │ ├── unigram+count_loyalty_lr.pck │ ├── unigram+count_non-moral_lr.pck │ ├── unigram+count_purity_lr.pck │ ├── unigram+freq_authority_lr.pck │ ├── unigram+freq_care_lr.pck │ ├── unigram+freq_fairness_lr.pck │ ├── unigram+freq_loyalty_lr.pck │ ├── unigram+freq_non-moral_lr.pck │ ├── unigram+freq_purity_lr.pck │ ├── unigram_authority_lr.pck │ ├── unigram_care_lr.pck │ ├── unigram_fairness_lr.pck │ ├── unigram_loyalty_lr.pck │ ├── unigram_non-moral_lr.pck │ └── unigram_purity_lr.pck ├── lexicon_use.py ├── lines.txt ├── moral_list.py ├── moralstrength.py └── moralstrengthdict.py ├── moralstrength_annotations ├── authority.tsv ├── care.tsv ├── fairness.tsv ├── loyalty.tsv └── purity.tsv ├── moralstrength_raw ├── RAW_ANNOTATIONS │ ├── Readme.txt │ ├── all_annotators_except_failed │ │ ├── RAW_ANNOTATIONS_AUTHORITY.txt │ │ ├── RAW_ANNOTATIONS_CARE.txt │ │ ├── RAW_ANNOTATIONS_FAIRNESS.txt │ │ ├── RAW_ANNOTATIONS_LOYALTY.txt │ │ └── RAW_ANNOTATIONS_PURITY.txt │ └── filtered_annotators │ │ ├── RAW_ANNOTATIONS_AUTHORITY.txt │ │ ├── RAW_ANNOTATIONS_CARE.txt │ │ ├── RAW_ANNOTATIONS_FAIRNESS.txt │ │ ├── RAW_ANNOTATIONS_LOYALTY.txt │ │ └── RAW_ANNOTATIONS_PURITY.txt └── tasks │ ├── Editor Preview of Task — Authority.pdf │ ├── Editor Preview of Task — Care.pdf │ ├── Editor Preview of Task — Fairness.pdf │ ├── Editor Preview of Task — Loyalty.pdf │ └── Editor Preview of Task — Purity.pdf ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── lexicon_use_test.py ├── moralstrength_test.py └── test_examples.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Predictor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/Predictor.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/README.md -------------------------------------------------------------------------------- /liberty/1st_version/All_sides_moral_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/liberty/1st_version/All_sides_moral_analysis.ipynb -------------------------------------------------------------------------------- /liberty/1st_version/Reason_moral_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/liberty/1st_version/Reason_moral_analysis.ipynb -------------------------------------------------------------------------------- /liberty/1st_version/lexicon_filtered.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/liberty/1st_version/lexicon_filtered.tsv -------------------------------------------------------------------------------- /liberty/2nd_version/cs_lexicon_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/liberty/2nd_version/cs_lexicon_final.csv -------------------------------------------------------------------------------- /liberty/2nd_version/we_lexicon_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/liberty/2nd_version/we_lexicon_final.csv -------------------------------------------------------------------------------- /liberty/3rd_version/liberty_moral_lexicon.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/liberty/3rd_version/liberty_moral_lexicon.tsv -------------------------------------------------------------------------------- /moralstrength/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/__init__.py -------------------------------------------------------------------------------- /moralstrength/annotations/authority.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/authority.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/care.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/care.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/fairness.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/fairness.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/loyalty.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/loyalty.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/purity.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/purity.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/v1.1/authority.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/v1.1/authority.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/v1.1/care.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/v1.1/care.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/v1.1/fairness.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/v1.1/fairness.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/v1.1/lexicons_expanded_v1-1.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/v1.1/lexicons_expanded_v1-1.pck -------------------------------------------------------------------------------- /moralstrength/annotations/v1.1/loyalty.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/v1.1/loyalty.tsv -------------------------------------------------------------------------------- /moralstrength/annotations/v1.1/purity.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/annotations/v1.1/purity.tsv -------------------------------------------------------------------------------- /moralstrength/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/data.py -------------------------------------------------------------------------------- /moralstrength/estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/estimators.py -------------------------------------------------------------------------------- /moralstrength/export/count_authority_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/count_authority_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/count_care_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/count_care_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/count_fairness_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/count_fairness_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/count_loyalty_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/count_loyalty_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/count_non-moral_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/count_non-moral_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/count_purity_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/count_purity_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/freq_authority_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/freq_authority_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/freq_care_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/freq_care_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/freq_fairness_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/freq_fairness_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/freq_loyalty_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/freq_loyalty_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/freq_non-moral_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/freq_non-moral_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/freq_purity_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/freq_purity_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/ngram.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/ngram.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count+freq_authority_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count+freq_authority_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count+freq_care_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count+freq_care_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count+freq_fairness_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count+freq_fairness_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count+freq_loyalty_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count+freq_loyalty_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count+freq_non-moral_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count+freq_non-moral_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count+freq_purity_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count+freq_purity_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count_authority_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count_authority_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count_care_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count_care_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count_fairness_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count_fairness_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count_loyalty_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count_loyalty_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count_non-moral_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count_non-moral_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+count_purity_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+count_purity_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+freq_authority_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+freq_authority_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+freq_care_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+freq_care_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+freq_fairness_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+freq_fairness_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+freq_loyalty_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+freq_loyalty_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+freq_non-moral_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+freq_non-moral_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram+freq_purity_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram+freq_purity_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram_authority_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram_authority_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram_care_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram_care_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram_fairness_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram_fairness_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram_loyalty_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram_loyalty_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram_non-moral_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram_non-moral_lr.pck -------------------------------------------------------------------------------- /moralstrength/export/unigram_purity_lr.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/export/unigram_purity_lr.pck -------------------------------------------------------------------------------- /moralstrength/lexicon_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/lexicon_use.py -------------------------------------------------------------------------------- /moralstrength/lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/lines.txt -------------------------------------------------------------------------------- /moralstrength/moral_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/moral_list.py -------------------------------------------------------------------------------- /moralstrength/moralstrength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/moralstrength.py -------------------------------------------------------------------------------- /moralstrength/moralstrengthdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength/moralstrengthdict.py -------------------------------------------------------------------------------- /moralstrength_annotations/authority.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_annotations/authority.tsv -------------------------------------------------------------------------------- /moralstrength_annotations/care.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_annotations/care.tsv -------------------------------------------------------------------------------- /moralstrength_annotations/fairness.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_annotations/fairness.tsv -------------------------------------------------------------------------------- /moralstrength_annotations/loyalty.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_annotations/loyalty.tsv -------------------------------------------------------------------------------- /moralstrength_annotations/purity.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_annotations/purity.tsv -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/Readme.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_AUTHORITY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_AUTHORITY.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_CARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_CARE.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_FAIRNESS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_FAIRNESS.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_LOYALTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_LOYALTY.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_PURITY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/all_annotators_except_failed/RAW_ANNOTATIONS_PURITY.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_AUTHORITY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_AUTHORITY.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_CARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_CARE.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_FAIRNESS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_FAIRNESS.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_LOYALTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_LOYALTY.txt -------------------------------------------------------------------------------- /moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_PURITY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/RAW_ANNOTATIONS/filtered_annotators/RAW_ANNOTATIONS_PURITY.txt -------------------------------------------------------------------------------- /moralstrength_raw/tasks/Editor Preview of Task — Authority.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/tasks/Editor Preview of Task — Authority.pdf -------------------------------------------------------------------------------- /moralstrength_raw/tasks/Editor Preview of Task — Care.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/tasks/Editor Preview of Task — Care.pdf -------------------------------------------------------------------------------- /moralstrength_raw/tasks/Editor Preview of Task — Fairness.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/tasks/Editor Preview of Task — Fairness.pdf -------------------------------------------------------------------------------- /moralstrength_raw/tasks/Editor Preview of Task — Loyalty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/tasks/Editor Preview of Task — Loyalty.pdf -------------------------------------------------------------------------------- /moralstrength_raw/tasks/Editor Preview of Task — Purity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/moralstrength_raw/tasks/Editor Preview of Task — Purity.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | spacy 2 | pandas 3 | gsitk 4 | numpy 5 | scikit_learn 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lexicon_use_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/tests/lexicon_use_test.py -------------------------------------------------------------------------------- /tests/moralstrength_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/tests/moralstrength_test.py -------------------------------------------------------------------------------- /tests/test_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaraque/moral-foundations/HEAD/tests/test_examples.txt --------------------------------------------------------------------------------