├── .gitignore ├── ESWC2023-NASTyLinker.ipynb ├── LICENSE ├── README.md ├── WWW21-Information_Extraction_from_Co-Occurring_Similar_Entities.ipynb ├── __init__.py ├── __main__.py ├── config.yaml ├── config ├── biencoder_list.yaml ├── biencoder_nilk.yaml ├── crossencoder_list.yaml ├── crossencoder_nilk.yaml ├── paramconfig_buc_nilk10.yaml ├── paramconfig_edin_nilk10.yaml ├── paramconfig_edin_nilk5.yaml ├── paramconfig_nl_nilk10.yaml └── paramconfig_nl_nilk5.yaml ├── data ├── cache │ └── .gitkeep └── goldstandard_mention-detection.csv ├── environment.yaml ├── evaluate_entity_disambiguation.py ├── evaluate_mention_detection.py ├── impl ├── caligraph │ ├── __init__.py │ ├── cali2ax.py │ ├── entity.py │ ├── graph.py │ ├── ontology.py │ └── serialize.py ├── category │ ├── __init__.py │ ├── cat2ax.py │ ├── category_set.py │ └── graph.py ├── dbpedia │ ├── category.py │ ├── heuristics.py │ ├── ontology.py │ ├── resource.py │ └── util.py ├── listing │ ├── __init__.py │ ├── context.py │ └── extract.py ├── listpage │ ├── __init__.py │ ├── graph.py │ └── mapping.py ├── subject_entity │ ├── __init__.py │ ├── entity_disambiguation │ │ ├── __init__.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── listing.py │ │ │ ├── nilk.py │ │ │ └── util.py │ │ ├── evaluation.py │ │ └── matching │ │ │ ├── __init__.py │ │ │ ├── biencoder.py │ │ │ ├── bottomup_clustering.py │ │ │ ├── crossencoder.py │ │ │ ├── graph.py │ │ │ ├── greedy_clustering.py │ │ │ ├── io.py │ │ │ ├── lexical.py │ │ │ ├── matcher.py │ │ │ ├── transformer_util.py │ │ │ └── util.py │ └── mention_detection │ │ ├── __init__.py │ │ ├── data │ │ ├── __init__.py │ │ ├── chunking.py │ │ └── dataset.py │ │ ├── evaluation │ │ ├── __init__.py │ │ ├── dataset.py │ │ └── metrics.py │ │ ├── labels │ │ ├── __init__.py │ │ ├── entity_type.py │ │ └── heuristics.py │ │ └── model.py ├── util │ ├── base_graph.py │ ├── hierarchy_graph.py │ ├── hypernymy.py │ ├── nlp.py │ ├── rdf.py │ ├── serialize.py │ ├── singleton.py │ ├── spacy │ │ ├── __init__.py │ │ ├── components.py │ │ ├── hearst_matcher.py │ │ ├── listing_parser.py │ │ └── training.py │ ├── string.py │ ├── transformer.py │ └── words.py └── wikipedia │ ├── __init__.py │ ├── category_parser.py │ ├── nif_parser.py │ ├── page_parser.py │ ├── wikimarkup_parser.py │ └── xml_parser.py ├── logs └── .gitkeep ├── mailer.py ├── pyproject.toml ├── results └── .gitkeep ├── tests ├── integration │ ├── __init__.py │ └── caligraph │ │ └── test_final_graph.py └── unit │ ├── __init__.py │ ├── dbpedia │ └── test_heuristics.py │ └── util │ ├── test_nlp.py │ └── test_serialize.py ├── tune_entity_disambiguation.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /ESWC2023-NASTyLinker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/ESWC2023-NASTyLinker.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/README.md -------------------------------------------------------------------------------- /WWW21-Information_Extraction_from_Co-Occurring_Similar_Entities.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/WWW21-Information_Extraction_from_Co-Occurring_Similar_Entities.ipynb -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/__main__.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config.yaml -------------------------------------------------------------------------------- /config/biencoder_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/biencoder_list.yaml -------------------------------------------------------------------------------- /config/biencoder_nilk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/biencoder_nilk.yaml -------------------------------------------------------------------------------- /config/crossencoder_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/crossencoder_list.yaml -------------------------------------------------------------------------------- /config/crossencoder_nilk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/crossencoder_nilk.yaml -------------------------------------------------------------------------------- /config/paramconfig_buc_nilk10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/paramconfig_buc_nilk10.yaml -------------------------------------------------------------------------------- /config/paramconfig_edin_nilk10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/paramconfig_edin_nilk10.yaml -------------------------------------------------------------------------------- /config/paramconfig_edin_nilk5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/paramconfig_edin_nilk5.yaml -------------------------------------------------------------------------------- /config/paramconfig_nl_nilk10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/paramconfig_nl_nilk10.yaml -------------------------------------------------------------------------------- /config/paramconfig_nl_nilk5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/config/paramconfig_nl_nilk5.yaml -------------------------------------------------------------------------------- /data/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/goldstandard_mention-detection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/data/goldstandard_mention-detection.csv -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/environment.yaml -------------------------------------------------------------------------------- /evaluate_entity_disambiguation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/evaluate_entity_disambiguation.py -------------------------------------------------------------------------------- /evaluate_mention_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/evaluate_mention_detection.py -------------------------------------------------------------------------------- /impl/caligraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/caligraph/__init__.py -------------------------------------------------------------------------------- /impl/caligraph/cali2ax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/caligraph/cali2ax.py -------------------------------------------------------------------------------- /impl/caligraph/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/caligraph/entity.py -------------------------------------------------------------------------------- /impl/caligraph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/caligraph/graph.py -------------------------------------------------------------------------------- /impl/caligraph/ontology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/caligraph/ontology.py -------------------------------------------------------------------------------- /impl/caligraph/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/caligraph/serialize.py -------------------------------------------------------------------------------- /impl/category/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/category/__init__.py -------------------------------------------------------------------------------- /impl/category/cat2ax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/category/cat2ax.py -------------------------------------------------------------------------------- /impl/category/category_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/category/category_set.py -------------------------------------------------------------------------------- /impl/category/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/category/graph.py -------------------------------------------------------------------------------- /impl/dbpedia/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/dbpedia/category.py -------------------------------------------------------------------------------- /impl/dbpedia/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/dbpedia/heuristics.py -------------------------------------------------------------------------------- /impl/dbpedia/ontology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/dbpedia/ontology.py -------------------------------------------------------------------------------- /impl/dbpedia/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/dbpedia/resource.py -------------------------------------------------------------------------------- /impl/dbpedia/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/dbpedia/util.py -------------------------------------------------------------------------------- /impl/listing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/listing/__init__.py -------------------------------------------------------------------------------- /impl/listing/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/listing/context.py -------------------------------------------------------------------------------- /impl/listing/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/listing/extract.py -------------------------------------------------------------------------------- /impl/listpage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/listpage/__init__.py -------------------------------------------------------------------------------- /impl/listpage/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/listpage/graph.py -------------------------------------------------------------------------------- /impl/listpage/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/listpage/mapping.py -------------------------------------------------------------------------------- /impl/subject_entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/data/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/data/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/data/listing.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/data/nilk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/data/nilk.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/data/util.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/evaluation.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/biencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/biencoder.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/bottomup_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/bottomup_clustering.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/crossencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/crossencoder.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/graph.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/greedy_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/greedy_clustering.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/io.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/lexical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/lexical.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/matcher.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/transformer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/transformer_util.py -------------------------------------------------------------------------------- /impl/subject_entity/entity_disambiguation/matching/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/entity_disambiguation/matching/util.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/data/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/data/chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/data/chunking.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/data/dataset.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/evaluation/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/evaluation/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/evaluation/dataset.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/evaluation/metrics.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/labels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/labels/__init__.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/labels/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/labels/entity_type.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/labels/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/labels/heuristics.py -------------------------------------------------------------------------------- /impl/subject_entity/mention_detection/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/subject_entity/mention_detection/model.py -------------------------------------------------------------------------------- /impl/util/base_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/base_graph.py -------------------------------------------------------------------------------- /impl/util/hierarchy_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/hierarchy_graph.py -------------------------------------------------------------------------------- /impl/util/hypernymy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/hypernymy.py -------------------------------------------------------------------------------- /impl/util/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/nlp.py -------------------------------------------------------------------------------- /impl/util/rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/rdf.py -------------------------------------------------------------------------------- /impl/util/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/serialize.py -------------------------------------------------------------------------------- /impl/util/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/singleton.py -------------------------------------------------------------------------------- /impl/util/spacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/spacy/__init__.py -------------------------------------------------------------------------------- /impl/util/spacy/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/spacy/components.py -------------------------------------------------------------------------------- /impl/util/spacy/hearst_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/spacy/hearst_matcher.py -------------------------------------------------------------------------------- /impl/util/spacy/listing_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/spacy/listing_parser.py -------------------------------------------------------------------------------- /impl/util/spacy/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/spacy/training.py -------------------------------------------------------------------------------- /impl/util/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/string.py -------------------------------------------------------------------------------- /impl/util/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/transformer.py -------------------------------------------------------------------------------- /impl/util/words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/util/words.py -------------------------------------------------------------------------------- /impl/wikipedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/wikipedia/__init__.py -------------------------------------------------------------------------------- /impl/wikipedia/category_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/wikipedia/category_parser.py -------------------------------------------------------------------------------- /impl/wikipedia/nif_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/wikipedia/nif_parser.py -------------------------------------------------------------------------------- /impl/wikipedia/page_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/wikipedia/page_parser.py -------------------------------------------------------------------------------- /impl/wikipedia/wikimarkup_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/wikipedia/wikimarkup_parser.py -------------------------------------------------------------------------------- /impl/wikipedia/xml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/impl/wikipedia/xml_parser.py -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/mailer.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/pyproject.toml -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/caligraph/test_final_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/tests/integration/caligraph/test_final_graph.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/dbpedia/test_heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/tests/unit/dbpedia/test_heuristics.py -------------------------------------------------------------------------------- /tests/unit/util/test_nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/tests/unit/util/test_nlp.py -------------------------------------------------------------------------------- /tests/unit/util/test_serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/tests/unit/util/test_serialize.py -------------------------------------------------------------------------------- /tune_entity_disambiguation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/tune_entity_disambiguation.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nheist/CaLiGraph/HEAD/utils.py --------------------------------------------------------------------------------