├── .flake8 ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── analysis.Rmd ├── environment.yml ├── scripts ├── compare-txt-json-tests.py ├── convert_to_jsonl.py ├── generate_basic_contexts.py ├── generate_heilman_double_bind.sh ├── glove2h5.py ├── print-name-distances.py ├── print_table.py ├── qsub │ ├── qsub_bert_1.bash │ ├── qsub_bert_2.bash │ ├── qsub_bert_3.bash │ ├── qsub_bert_4.bash │ ├── qsub_bow.bash │ ├── qsub_elmo_1.bash │ ├── qsub_elmo_2.bash │ ├── qsub_elmo_3.bash │ ├── qsub_gensen_1.bash │ ├── qsub_gensen_2.bash │ ├── qsub_gensen_3.bash │ ├── qsub_guse.bash │ ├── qsub_infersent.bash │ └── qsub_openai.bash ├── run_tests.sh ├── tasks.sh └── wordcount.py ├── sentbias ├── __init__.py ├── data.py ├── encoders │ ├── __init__.py │ ├── bert.py │ ├── bow.py │ ├── elmo.py │ ├── gensen.py │ └── infersent.py ├── main.py ├── models.py └── weat.py ├── tests-hidden ├── project_implicit_arab-muslim.jsonl ├── project_implicit_disability.jsonl ├── project_implicit_native.jsonl ├── project_implicit_religion.jsonl ├── project_implicit_sexuality.jsonl ├── project_implicit_skin-tone.jsonl ├── project_implicit_weapons.jsonl └── project_implicit_weight.jsonl ├── tests-meta ├── acs_2016_place_of_birth_2016.xlsx ├── angry_black_woman_stereotype.txt ├── angry_black_woman_stereotype_b.txt ├── heilman_double_bind_ambiguous_1+3-.txt ├── heilman_double_bind_ambiguous_1-.txt ├── heilman_double_bind_ambiguous_1.txt ├── heilman_double_bind_clear_1+3-.txt ├── heilman_double_bind_clear_1-.txt ├── heilman_double_bind_clear_1.txt ├── project_implicit_disability.txt ├── project_implicit_native.txt ├── project_implicit_religion.txt ├── project_implicit_sexuality.txt ├── project_implicit_skin-tone.txt ├── project_implicit_weapons.txt ├── project_implicit_weight.txt ├── sweeney_2013_name_distances_glove_840B_300d.csv ├── weat3b.txt ├── weat5b.txt ├── weat6b.txt ├── weat7b.txt └── weat8b.txt └── tests ├── .gitignore ├── angry_black_woman_stereotype.jsonl ├── angry_black_woman_stereotype_b.jsonl ├── heilman_double_bind_competent_1+3-.jsonl ├── heilman_double_bind_competent_1-.jsonl ├── heilman_double_bind_competent_1.jsonl ├── heilman_double_bind_competent_one_sentence.jsonl ├── heilman_double_bind_competent_one_word.jsonl ├── heilman_double_bind_likable_1+3-.jsonl ├── heilman_double_bind_likable_1-.jsonl ├── heilman_double_bind_likable_1.jsonl ├── heilman_double_bind_likable_one_sentence.jsonl ├── heilman_double_bind_likable_one_word.jsonl ├── sent-angry_black_woman_stereotype.jsonl ├── sent-angry_black_woman_stereotype_b.jsonl ├── sent-heilman_double_bind_competent_one_word.jsonl ├── sent-heilman_double_bind_likable_one_word.jsonl ├── sent-weat1.jsonl ├── sent-weat10.jsonl ├── sent-weat2.jsonl ├── sent-weat3.jsonl ├── sent-weat3b.jsonl ├── sent-weat4.jsonl ├── sent-weat5.jsonl ├── sent-weat5b.jsonl ├── sent-weat6.jsonl ├── sent-weat6b.jsonl ├── sent-weat7.jsonl ├── sent-weat7b.jsonl ├── sent-weat8.jsonl ├── sent-weat8b.jsonl ├── sent-weat9.jsonl ├── weat1.jsonl ├── weat10.jsonl ├── weat2.jsonl ├── weat3.jsonl ├── weat3b.jsonl ├── weat4.jsonl ├── weat5.jsonl ├── weat5b.jsonl ├── weat6.jsonl ├── weat6b.jsonl ├── weat7.jsonl ├── weat7b.jsonl ├── weat8.jsonl ├── weat8b.jsonl └── weat9.jsonl /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/README.md -------------------------------------------------------------------------------- /analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/analysis.Rmd -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/environment.yml -------------------------------------------------------------------------------- /scripts/compare-txt-json-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/compare-txt-json-tests.py -------------------------------------------------------------------------------- /scripts/convert_to_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/convert_to_jsonl.py -------------------------------------------------------------------------------- /scripts/generate_basic_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/generate_basic_contexts.py -------------------------------------------------------------------------------- /scripts/generate_heilman_double_bind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/generate_heilman_double_bind.sh -------------------------------------------------------------------------------- /scripts/glove2h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/glove2h5.py -------------------------------------------------------------------------------- /scripts/print-name-distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/print-name-distances.py -------------------------------------------------------------------------------- /scripts/print_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/print_table.py -------------------------------------------------------------------------------- /scripts/qsub/qsub_bert_1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_bert_1.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_bert_2.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_bert_2.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_bert_3.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_bert_3.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_bert_4.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_bert_4.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_bow.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_bow.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_elmo_1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_elmo_1.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_elmo_2.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_elmo_2.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_elmo_3.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_elmo_3.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_gensen_1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_gensen_1.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_gensen_2.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_gensen_2.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_gensen_3.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_gensen_3.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_guse.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_guse.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_infersent.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_infersent.bash -------------------------------------------------------------------------------- /scripts/qsub/qsub_openai.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/qsub/qsub_openai.bash -------------------------------------------------------------------------------- /scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/run_tests.sh -------------------------------------------------------------------------------- /scripts/tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/tasks.sh -------------------------------------------------------------------------------- /scripts/wordcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/scripts/wordcount.py -------------------------------------------------------------------------------- /sentbias/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentbias/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/data.py -------------------------------------------------------------------------------- /sentbias/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentbias/encoders/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/encoders/bert.py -------------------------------------------------------------------------------- /sentbias/encoders/bow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/encoders/bow.py -------------------------------------------------------------------------------- /sentbias/encoders/elmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/encoders/elmo.py -------------------------------------------------------------------------------- /sentbias/encoders/gensen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/encoders/gensen.py -------------------------------------------------------------------------------- /sentbias/encoders/infersent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/encoders/infersent.py -------------------------------------------------------------------------------- /sentbias/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/main.py -------------------------------------------------------------------------------- /sentbias/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/models.py -------------------------------------------------------------------------------- /sentbias/weat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/sentbias/weat.py -------------------------------------------------------------------------------- /tests-hidden/project_implicit_arab-muslim.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_arab-muslim.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_disability.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_disability.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_native.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_native.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_religion.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_religion.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_sexuality.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_sexuality.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_skin-tone.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_skin-tone.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_weapons.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_weapons.jsonl -------------------------------------------------------------------------------- /tests-hidden/project_implicit_weight.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-hidden/project_implicit_weight.jsonl -------------------------------------------------------------------------------- /tests-meta/acs_2016_place_of_birth_2016.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/acs_2016_place_of_birth_2016.xlsx -------------------------------------------------------------------------------- /tests-meta/angry_black_woman_stereotype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/angry_black_woman_stereotype.txt -------------------------------------------------------------------------------- /tests-meta/angry_black_woman_stereotype_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/angry_black_woman_stereotype_b.txt -------------------------------------------------------------------------------- /tests-meta/heilman_double_bind_ambiguous_1+3-.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/heilman_double_bind_ambiguous_1+3-.txt -------------------------------------------------------------------------------- /tests-meta/heilman_double_bind_ambiguous_1-.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/heilman_double_bind_ambiguous_1-.txt -------------------------------------------------------------------------------- /tests-meta/heilman_double_bind_ambiguous_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/heilman_double_bind_ambiguous_1.txt -------------------------------------------------------------------------------- /tests-meta/heilman_double_bind_clear_1+3-.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/heilman_double_bind_clear_1+3-.txt -------------------------------------------------------------------------------- /tests-meta/heilman_double_bind_clear_1-.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/heilman_double_bind_clear_1-.txt -------------------------------------------------------------------------------- /tests-meta/heilman_double_bind_clear_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/heilman_double_bind_clear_1.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_disability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_disability.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_native.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_native.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_religion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_religion.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_sexuality.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_sexuality.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_skin-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_skin-tone.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_weapons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_weapons.txt -------------------------------------------------------------------------------- /tests-meta/project_implicit_weight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/project_implicit_weight.txt -------------------------------------------------------------------------------- /tests-meta/sweeney_2013_name_distances_glove_840B_300d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/sweeney_2013_name_distances_glove_840B_300d.csv -------------------------------------------------------------------------------- /tests-meta/weat3b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/weat3b.txt -------------------------------------------------------------------------------- /tests-meta/weat5b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/weat5b.txt -------------------------------------------------------------------------------- /tests-meta/weat6b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/weat6b.txt -------------------------------------------------------------------------------- /tests-meta/weat7b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/weat7b.txt -------------------------------------------------------------------------------- /tests-meta/weat8b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests-meta/weat8b.txt -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | *.BPE 3 | -------------------------------------------------------------------------------- /tests/angry_black_woman_stereotype.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/angry_black_woman_stereotype.jsonl -------------------------------------------------------------------------------- /tests/angry_black_woman_stereotype_b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/angry_black_woman_stereotype_b.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_competent_1+3-.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_competent_1+3-.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_competent_1-.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_competent_1-.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_competent_1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_competent_1.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_competent_one_sentence.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_competent_one_sentence.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_competent_one_word.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_competent_one_word.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_likable_1+3-.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_likable_1+3-.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_likable_1-.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_likable_1-.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_likable_1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_likable_1.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_likable_one_sentence.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_likable_one_sentence.jsonl -------------------------------------------------------------------------------- /tests/heilman_double_bind_likable_one_word.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/heilman_double_bind_likable_one_word.jsonl -------------------------------------------------------------------------------- /tests/sent-angry_black_woman_stereotype.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-angry_black_woman_stereotype.jsonl -------------------------------------------------------------------------------- /tests/sent-angry_black_woman_stereotype_b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-angry_black_woman_stereotype_b.jsonl -------------------------------------------------------------------------------- /tests/sent-heilman_double_bind_competent_one_word.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-heilman_double_bind_competent_one_word.jsonl -------------------------------------------------------------------------------- /tests/sent-heilman_double_bind_likable_one_word.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-heilman_double_bind_likable_one_word.jsonl -------------------------------------------------------------------------------- /tests/sent-weat1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat1.jsonl -------------------------------------------------------------------------------- /tests/sent-weat10.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat10.jsonl -------------------------------------------------------------------------------- /tests/sent-weat2.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat2.jsonl -------------------------------------------------------------------------------- /tests/sent-weat3.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat3.jsonl -------------------------------------------------------------------------------- /tests/sent-weat3b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat3b.jsonl -------------------------------------------------------------------------------- /tests/sent-weat4.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat4.jsonl -------------------------------------------------------------------------------- /tests/sent-weat5.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat5.jsonl -------------------------------------------------------------------------------- /tests/sent-weat5b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat5b.jsonl -------------------------------------------------------------------------------- /tests/sent-weat6.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat6.jsonl -------------------------------------------------------------------------------- /tests/sent-weat6b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat6b.jsonl -------------------------------------------------------------------------------- /tests/sent-weat7.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat7.jsonl -------------------------------------------------------------------------------- /tests/sent-weat7b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat7b.jsonl -------------------------------------------------------------------------------- /tests/sent-weat8.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat8.jsonl -------------------------------------------------------------------------------- /tests/sent-weat8b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat8b.jsonl -------------------------------------------------------------------------------- /tests/sent-weat9.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/sent-weat9.jsonl -------------------------------------------------------------------------------- /tests/weat1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat1.jsonl -------------------------------------------------------------------------------- /tests/weat10.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat10.jsonl -------------------------------------------------------------------------------- /tests/weat2.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat2.jsonl -------------------------------------------------------------------------------- /tests/weat3.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat3.jsonl -------------------------------------------------------------------------------- /tests/weat3b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat3b.jsonl -------------------------------------------------------------------------------- /tests/weat4.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat4.jsonl -------------------------------------------------------------------------------- /tests/weat5.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat5.jsonl -------------------------------------------------------------------------------- /tests/weat5b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat5b.jsonl -------------------------------------------------------------------------------- /tests/weat6.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat6.jsonl -------------------------------------------------------------------------------- /tests/weat6b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat6b.jsonl -------------------------------------------------------------------------------- /tests/weat7.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat7.jsonl -------------------------------------------------------------------------------- /tests/weat7b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat7b.jsonl -------------------------------------------------------------------------------- /tests/weat8.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat8.jsonl -------------------------------------------------------------------------------- /tests/weat8b.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat8b.jsonl -------------------------------------------------------------------------------- /tests/weat9.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4ngatang/sent-bias/HEAD/tests/weat9.jsonl --------------------------------------------------------------------------------