├── .gitignore ├── LICENSE ├── QASRL-full └── README.md ├── README.md ├── analyze.py ├── analyze.sh ├── benchmark.py ├── create_oie_corpus.sh ├── eval.sh ├── eval ├── ClausIE.dat ├── OLLIE.dat ├── OpenIE-4.dat ├── PropS.dat ├── ReVerb.dat ├── Stanford.dat └── eval.png ├── extract_predicates_distribution.sh ├── faq.md ├── matcher.py ├── oie_corpus └── README.md ├── oie_readers ├── __init__.py ├── argument.py ├── clausieReader.py ├── extraction.py ├── goldReader.py ├── oieReader.py ├── ollieReader.py ├── openieFourReader.py ├── propsReader.py ├── reVerbReader.py └── stanfordReader.py ├── pr_plot.py ├── predicate_list.txt ├── qa_to_oie.py ├── question_distributions ├── dist.json └── dist_wh_sbj_obj1.json ├── raw_sentences ├── all.txt ├── newswire │ ├── propbank.dev.txt │ ├── propbank.test.txt │ └── propbank.train.txt └── wiki │ ├── wiki1.dev.txt │ ├── wiki1.test.txt │ └── wiki1.train.txt ├── requirements.txt ├── snapshot_oie_corpus.tar.gz ├── snapshot_oie_corpus_with_pronouns.tar.gz └── systems_output ├── README.md ├── clausie_output.txt ├── ollie_output.txt ├── openie4_output.txt ├── props_output.txt ├── reverb_output.txt └── stanford_output.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /QASRL-full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/QASRL-full/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/analyze.py -------------------------------------------------------------------------------- /analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/analyze.sh -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/benchmark.py -------------------------------------------------------------------------------- /create_oie_corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/create_oie_corpus.sh -------------------------------------------------------------------------------- /eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval.sh -------------------------------------------------------------------------------- /eval/ClausIE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/ClausIE.dat -------------------------------------------------------------------------------- /eval/OLLIE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/OLLIE.dat -------------------------------------------------------------------------------- /eval/OpenIE-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/OpenIE-4.dat -------------------------------------------------------------------------------- /eval/PropS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/PropS.dat -------------------------------------------------------------------------------- /eval/ReVerb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/ReVerb.dat -------------------------------------------------------------------------------- /eval/Stanford.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/Stanford.dat -------------------------------------------------------------------------------- /eval/eval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/eval/eval.png -------------------------------------------------------------------------------- /extract_predicates_distribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/extract_predicates_distribution.sh -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/faq.md -------------------------------------------------------------------------------- /matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/matcher.py -------------------------------------------------------------------------------- /oie_corpus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_corpus/README.md -------------------------------------------------------------------------------- /oie_readers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oie_readers/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/argument.py -------------------------------------------------------------------------------- /oie_readers/clausieReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/clausieReader.py -------------------------------------------------------------------------------- /oie_readers/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/extraction.py -------------------------------------------------------------------------------- /oie_readers/goldReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/goldReader.py -------------------------------------------------------------------------------- /oie_readers/oieReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/oieReader.py -------------------------------------------------------------------------------- /oie_readers/ollieReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/ollieReader.py -------------------------------------------------------------------------------- /oie_readers/openieFourReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/openieFourReader.py -------------------------------------------------------------------------------- /oie_readers/propsReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/propsReader.py -------------------------------------------------------------------------------- /oie_readers/reVerbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/reVerbReader.py -------------------------------------------------------------------------------- /oie_readers/stanfordReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/oie_readers/stanfordReader.py -------------------------------------------------------------------------------- /pr_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/pr_plot.py -------------------------------------------------------------------------------- /predicate_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/predicate_list.txt -------------------------------------------------------------------------------- /qa_to_oie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/qa_to_oie.py -------------------------------------------------------------------------------- /question_distributions/dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/question_distributions/dist.json -------------------------------------------------------------------------------- /question_distributions/dist_wh_sbj_obj1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/question_distributions/dist_wh_sbj_obj1.json -------------------------------------------------------------------------------- /raw_sentences/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/all.txt -------------------------------------------------------------------------------- /raw_sentences/newswire/propbank.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/newswire/propbank.dev.txt -------------------------------------------------------------------------------- /raw_sentences/newswire/propbank.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/newswire/propbank.test.txt -------------------------------------------------------------------------------- /raw_sentences/newswire/propbank.train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/newswire/propbank.train.txt -------------------------------------------------------------------------------- /raw_sentences/wiki/wiki1.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/wiki/wiki1.dev.txt -------------------------------------------------------------------------------- /raw_sentences/wiki/wiki1.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/wiki/wiki1.test.txt -------------------------------------------------------------------------------- /raw_sentences/wiki/wiki1.train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/raw_sentences/wiki/wiki1.train.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/requirements.txt -------------------------------------------------------------------------------- /snapshot_oie_corpus.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/snapshot_oie_corpus.tar.gz -------------------------------------------------------------------------------- /snapshot_oie_corpus_with_pronouns.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/snapshot_oie_corpus_with_pronouns.tar.gz -------------------------------------------------------------------------------- /systems_output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/README.md -------------------------------------------------------------------------------- /systems_output/clausie_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/clausie_output.txt -------------------------------------------------------------------------------- /systems_output/ollie_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/ollie_output.txt -------------------------------------------------------------------------------- /systems_output/openie4_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/openie4_output.txt -------------------------------------------------------------------------------- /systems_output/props_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/props_output.txt -------------------------------------------------------------------------------- /systems_output/reverb_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/reverb_output.txt -------------------------------------------------------------------------------- /systems_output/stanford_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielStanovsky/oie-benchmark/HEAD/systems_output/stanford_output.txt --------------------------------------------------------------------------------