├── .github ├── dependabot.yml └── workflows │ └── code_checks.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── automatic-evaluation ├── README.md ├── large-scale-evaluation-freebase.py └── pre_processing_KB │ ├── Sentence.py │ ├── __init__.py │ ├── easy_freebase_clean.py │ ├── index_whoosh.py │ ├── read_high_pmi_relationships.py │ └── select_sentences.py ├── breds ├── bootstrapping.py ├── breds_tuple.py ├── cli.py ├── commons.py ├── config.py ├── parameters.cfg ├── pattern.py ├── reverb.py ├── seed.py └── sentence.py ├── mypy.ini ├── pylint.cfg ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_breds_tuple.py ├── test_commons.py ├── test_pattern.py ├── test_relationship.py ├── test_seed.py └── test_sentence.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/code_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/.github/workflows/code_checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/README.md -------------------------------------------------------------------------------- /automatic-evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/README.md -------------------------------------------------------------------------------- /automatic-evaluation/large-scale-evaluation-freebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/large-scale-evaluation-freebase.py -------------------------------------------------------------------------------- /automatic-evaluation/pre_processing_KB/Sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/pre_processing_KB/Sentence.py -------------------------------------------------------------------------------- /automatic-evaluation/pre_processing_KB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic-evaluation/pre_processing_KB/easy_freebase_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/pre_processing_KB/easy_freebase_clean.py -------------------------------------------------------------------------------- /automatic-evaluation/pre_processing_KB/index_whoosh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/pre_processing_KB/index_whoosh.py -------------------------------------------------------------------------------- /automatic-evaluation/pre_processing_KB/read_high_pmi_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/pre_processing_KB/read_high_pmi_relationships.py -------------------------------------------------------------------------------- /automatic-evaluation/pre_processing_KB/select_sentences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/automatic-evaluation/pre_processing_KB/select_sentences.py -------------------------------------------------------------------------------- /breds/bootstrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/bootstrapping.py -------------------------------------------------------------------------------- /breds/breds_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/breds_tuple.py -------------------------------------------------------------------------------- /breds/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/cli.py -------------------------------------------------------------------------------- /breds/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/commons.py -------------------------------------------------------------------------------- /breds/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/config.py -------------------------------------------------------------------------------- /breds/parameters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/parameters.cfg -------------------------------------------------------------------------------- /breds/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/pattern.py -------------------------------------------------------------------------------- /breds/reverb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/reverb.py -------------------------------------------------------------------------------- /breds/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/seed.py -------------------------------------------------------------------------------- /breds/sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/breds/sentence.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/mypy.ini -------------------------------------------------------------------------------- /pylint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/pylint.cfg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_breds_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/test_breds_tuple.py -------------------------------------------------------------------------------- /tests/test_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/test_commons.py -------------------------------------------------------------------------------- /tests/test_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/test_pattern.py -------------------------------------------------------------------------------- /tests/test_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/test_relationship.py -------------------------------------------------------------------------------- /tests/test_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/test_seed.py -------------------------------------------------------------------------------- /tests/test_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsbatista/BREDS/HEAD/tests/test_sentence.py --------------------------------------------------------------------------------