├── .gitignore ├── LICENSE ├── README.md ├── data.tar.gz ├── docs └── appendix.pdf ├── images ├── balanced_bug_logo.png ├── flow.png ├── full_bug_logo.png ├── gold_bug_logo.png └── spike_logo.png ├── predictions └── README.md ├── requirements.txt ├── src ├── converters │ └── convert_to_conll.py └── evaluations │ ├── Analyze.py │ ├── dataset_stats.py │ ├── evaluate_coref.py │ └── inc_occ_gender.csv └── visualizations └── delta_s_by_dist.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/README.md -------------------------------------------------------------------------------- /data.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/data.tar.gz -------------------------------------------------------------------------------- /docs/appendix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/docs/appendix.pdf -------------------------------------------------------------------------------- /images/balanced_bug_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/images/balanced_bug_logo.png -------------------------------------------------------------------------------- /images/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/images/flow.png -------------------------------------------------------------------------------- /images/full_bug_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/images/full_bug_logo.png -------------------------------------------------------------------------------- /images/gold_bug_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/images/gold_bug_logo.png -------------------------------------------------------------------------------- /images/spike_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/images/spike_logo.png -------------------------------------------------------------------------------- /predictions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/predictions/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | docopt 3 | tqdm 4 | numpy 5 | pandas 6 | -------------------------------------------------------------------------------- /src/converters/convert_to_conll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/src/converters/convert_to_conll.py -------------------------------------------------------------------------------- /src/evaluations/Analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/src/evaluations/Analyze.py -------------------------------------------------------------------------------- /src/evaluations/dataset_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/src/evaluations/dataset_stats.py -------------------------------------------------------------------------------- /src/evaluations/evaluate_coref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/src/evaluations/evaluate_coref.py -------------------------------------------------------------------------------- /src/evaluations/inc_occ_gender.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/src/evaluations/inc_occ_gender.csv -------------------------------------------------------------------------------- /visualizations/delta_s_by_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLAB-NLP/BUG/HEAD/visualizations/delta_s_by_dist.png --------------------------------------------------------------------------------