Datasets:

lawhy commited on
Commit
02b2a53
1 Parent(s): ff9b979

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +144 -2
README.md CHANGED
@@ -8,9 +8,151 @@ tags:
8
  - Natural Language Inference
9
  pretty_name: OntoLAMA
10
  size_categories:
11
- - 100K<n<1M
12
  language:
13
  - en
14
  ---
15
 
16
- # OntoLAMA: LAnguage Model Analysis for Ontology Subsumption Inference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - Natural Language Inference
9
  pretty_name: OntoLAMA
10
  size_categories:
11
+ - 1M<n<10M
12
  language:
13
  - en
14
  ---
15
 
16
+ # OntoLAMA: LAnguage Model Analysis for Ontology Subsumption Inference
17
+
18
+ ## Table of Contents
19
+ - [Dataset Description](#dataset-description)
20
+ - [Dataset Summary](#dataset-summary)
21
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
22
+ - [Languages](#languages)
23
+ - [Dataset Structure](#dataset-structure)
24
+ - [Data Instances](#data-instances)
25
+ - [Data Fields](#data-instances)
26
+ - [Data Splits](#data-instances)
27
+ - [Dataset Creation](#dataset-creation)
28
+ - [Curation Rationale](#curation-rationale)
29
+ - [Source Data](#source-data)
30
+ - [Annotations](#annotations)
31
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
32
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
33
+ - [Social Impact of Dataset](#social-impact-of-dataset)
34
+ - [Discussion of Biases](#discussion-of-biases)
35
+ - [Other Known Limitations](#other-known-limitations)
36
+ - [Additional Information](#additional-information)
37
+ - [Dataset Curators](#dataset-curators)
38
+ - [Licensing Information](#licensing-information)
39
+ - [Citation Information](#citation-information)
40
+
41
+ ## Dataset Description
42
+
43
+ - **Homepage:** https://krr-oxford.github.io/DeepOnto/ontolama
44
+ - **Repository:** https://github.com/KRR-Oxford/DeepOnto
45
+ - **Paper:** https://arxiv.org/abs/2302.06761
46
+ - **Leaderboard:** [Needs More Information]
47
+ - **Point of Contact:** [Needs More Information]
48
+
49
+ ### Dataset Summary
50
+
51
+ OntoLAMA is a set of language model (LM) probing datasets for ontology subsumption inference. The work follows the "LMs-as-KBs" literatue but focuses on conceptualised knowledge extracted from formalised KBs such as the OWL ontologies. Specifically, the subsumption inference (SI) task is introduced and formulated in the NLI style, where the sub-concept and the super-concept involved in a subsumption axiom are verbalised and fitted into a template to form the premise and hypothesis, respectively. The SI task is futher divided into Atomic SI and Complex SI where the former involves only atomic named concepts and the latter involves complex concept expressions restricted to OWL 2 EL. Real-world ontologies of different scales and domains are used for constructing OntoLAMA and in total there are four Atomic SI datasets and two Complex SI datasets.
52
+
53
+
54
+
55
+ ### Supported Tasks and Leaderboards
56
+
57
+ [Needs More Information]
58
+
59
+ ### Languages
60
+
61
+ The text in the dataset is in English, as used in the source ontologies. The associated BCP-47 code is `en`.
62
+
63
+ ## Dataset Structure
64
+
65
+ ### Data Instances
66
+
67
+ A typical SI data point comprises a verbalised sub-concept `v_sub_concept`, a verbalised super-concept 'v_super_concept', a binary label indicating whether these two concepts have a subsumption relationship or not (with `1` referring to a positive subsumption), and a string representation of the original subsumption axiom before verbalisation.
68
+
69
+ An example in the Atomic SI dataset created from the Gene Ontology (GO) is as follows:
70
+ ```
71
+ {
72
+ 'v_sub_concept': 'ctpase activity',
73
+ 'v_super_concept': 'ribonucleoside triphosphate phosphatase activity',
74
+ 'label': 1,
75
+ 'axiom': 'SubClassOf(<http://purl.obolibrary.org/obo/GO_0043273> <http://purl.obolibrary.org/obo/GO_0017111>)'
76
+ }
77
+ ```
78
+
79
+ An example in the Complex SI dataset created from the Food Ontology (FoodOn) is as follows:
80
+ ```
81
+ {
82
+ 'v_sub_concept': '...',
83
+ 'v_super_concept': '...',
84
+ 'label': 0,
85
+ 'axiom': ...,
86
+ 'anchor_axiom': ...,
87
+ }
88
+ ```
89
+
90
+ ### Data Fields
91
+
92
+ - `v_sub_concept`: verbalised sub-concept expression.
93
+ - `v_super_concept`: verbalised super-concept expression.
94
+ - `label`: a binary class label indicating whether two concepts really form a subsumption relationship (`1` means yes).
95
+ - `axiom`: a string representation of the original subsumption axiom which is useful for tracing back to the ontology.
96
+ - `anchor_axiom`: (for complex SI only) a string representation of the anchor equivalence axiom used for sampling the `axiom`.
97
+
98
+ ### Data Splits
99
+
100
+ [Needs More Information]
101
+
102
+ ## Dataset Creation
103
+
104
+ ### Curation Rationale
105
+
106
+ [Needs More Information]
107
+
108
+ ### Source Data
109
+
110
+ #### Initial Data Collection and Normalization
111
+
112
+ [Needs More Information]
113
+
114
+ #### Who are the source language producers?
115
+
116
+ [Needs More Information]
117
+
118
+ ### Annotations
119
+
120
+ #### Annotation process
121
+
122
+ [Needs More Information]
123
+
124
+ #### Who are the annotators?
125
+
126
+ [Needs More Information]
127
+
128
+ ### Personal and Sensitive Information
129
+
130
+ [Needs More Information]
131
+
132
+ ## Considerations for Using the Data
133
+
134
+ ### Social Impact of Dataset
135
+
136
+ [Needs More Information]
137
+
138
+ ### Discussion of Biases
139
+
140
+ [Needs More Information]
141
+
142
+ ### Other Known Limitations
143
+
144
+ [Needs More Information]
145
+
146
+ ## Additional Information
147
+
148
+ ### Dataset Curators
149
+
150
+ [Needs More Information]
151
+
152
+ ### Licensing Information
153
+
154
+ [Needs More Information]
155
+
156
+ ### Citation Information
157
+
158
+ [Needs More Information]