--- license: apache-2.0 task_categories: - text-classification tags: - Ontologies - Subsumption Inference - Natural Language Inference pretty_name: OntoLAMA size_categories: - 1M )' } ``` An example in the **Complex SI** dataset created from the Food Ontology (FoodOn) is as follows: ``` { 'v_sub_concept': '...', 'v_super_concept': '...', 'label': 0, 'axiom': ..., 'anchor_axiom': ..., } ``` An example in the **biMNLI** dataset created from the MNLI dataset is as follows: ``` { 'premise': 'At the turn of the 19th century Los Angeles and Salt Lake City were among the burgeoning metropolises of the new American West.', 'hypothesis': 'Salt Lake City was booming in the early 19th century.', 'label': 1 } ``` ### Data Fields #### SI Data Fields - `v_sub_concept`: verbalised sub-concept expression. - `v_super_concept`: verbalised super-concept expression. - `label`: a binary class label indicating whether two concepts really form a subsumption relationship (`1` means yes). - `axiom`: a string representation of the original subsumption axiom which is useful for tracing back to the ontology. - `anchor_axiom`: (for complex SI only) a string representation of the anchor equivalence axiom used for sampling the `axiom`. #### biMNLI Data Fields - `premise`: inheritated from the MNLI dataset. - `hypothesis`: inheritated from the MNLI dataset. - `label`: a binary class label indicating `contradiction` (`0`) or `entailment` (`1`). ### Data Splits | Source | #Concepts | #EquivAxioms | #Dataset (Train/Dev/Test) | |--------|-----------|--------------|--------------------------------------------------------------------------| | schema | 894 | - | Atomic SI: 808/404/2,830 | | doid | 11,157 | - | Atomic SI: 90,500/11,312/11,314 | | foodon | 30,995 | 2,383 | Atomic SI: 768,486/96,060/96,062
Complex SI: 3,754/1,850/13,080 | | go | 43,303 | 11,456 | Atomic SI: 772,870/96,608/96,610
Complex SI: ... | | MNLI | - | - | biMNLI: 235,622/26,180/12,906 | ### Licensing Information Apache License, Version 2.0 ### Citation Information ``` @article{he2023language, title={Language Model Analysis for Ontology Subsumption Inference}, author={He, Yuan and Chen, Jiaoyan and Jim{\'e}nez-Ruiz, Ernesto and Dong, Hang and Horrocks, Ian}, journal={arXiv preprint arXiv:2302.06761}, year={2023} } ```