├── .gitignore ├── README.md ├── __init__.py ├── annotated-questions ├── squad.tsv ├── vqa.tsv └── wikimovies.tsv ├── answerability_score.py ├── avg_std.py ├── bleu ├── LICENSE ├── __init__.py ├── bleu.py └── bleu_scorer.py ├── examples ├── hypotheses.txt └── references.txt ├── rouge ├── __init__.py └── rouge.py ├── setup.py ├── tests ├── __init__.py └── test_answerability_score.py └── tokenizer ├── __init__.py ├── ptbtokenizer.py ├── stanford-corenlp-3.4.1.jar └── tests ├── __init__.py └── test_ptbtokenizer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'hfang' 2 | -------------------------------------------------------------------------------- /annotated-questions/squad.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/annotated-questions/squad.tsv -------------------------------------------------------------------------------- /annotated-questions/vqa.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/annotated-questions/vqa.tsv -------------------------------------------------------------------------------- /annotated-questions/wikimovies.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/annotated-questions/wikimovies.tsv -------------------------------------------------------------------------------- /answerability_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/answerability_score.py -------------------------------------------------------------------------------- /avg_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/avg_std.py -------------------------------------------------------------------------------- /bleu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/bleu/LICENSE -------------------------------------------------------------------------------- /bleu/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /bleu/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/bleu/bleu.py -------------------------------------------------------------------------------- /bleu/bleu_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/bleu/bleu_scorer.py -------------------------------------------------------------------------------- /examples/hypotheses.txt: -------------------------------------------------------------------------------- 1 | Is this a great question? 2 | -------------------------------------------------------------------------------- /examples/references.txt: -------------------------------------------------------------------------------- 1 | Is this a good question? 2 | -------------------------------------------------------------------------------- /rouge/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'vrama91' 2 | -------------------------------------------------------------------------------- /rouge/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/rouge/rouge.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_answerability_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/tests/test_answerability_score.py -------------------------------------------------------------------------------- /tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'hfang' 2 | -------------------------------------------------------------------------------- /tokenizer/ptbtokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/tokenizer/ptbtokenizer.py -------------------------------------------------------------------------------- /tokenizer/stanford-corenlp-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/tokenizer/stanford-corenlp-3.4.1.jar -------------------------------------------------------------------------------- /tokenizer/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tokenizer/tests/test_ptbtokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrekshaNema25/Answerability-Metric/HEAD/tokenizer/tests/test_ptbtokenizer.py --------------------------------------------------------------------------------