Andrei Aioanei
commited on
Commit
·
8448a7b
1
Parent(s):
65c3145
Update events domain with 3 ontologies
Browse files- README.md +44 -3
- conference/conference.owl +0 -0
- conference/term_typings.json +66 -66
- conference/type_non_taxonomic_relations.json +7 -7
- conference/type_taxonomies.json +74 -74
- icalendar/icalendar.rdf +0 -0
- icalendar/term_typings.json +0 -0
- icalendar/type_non_taxonomic_relations.json +0 -0
- icalendar/type_taxonomies.json +0 -0
- lode/lode.rdf +0 -0
- lode/term_typings.json +0 -0
- lode/type_non_taxonomic_relations.json +0 -0
- lode/type_taxonomies.json +6 -6
README.md
CHANGED
|
@@ -7,7 +7,7 @@ tags:
|
|
| 7 |
- OntoLearner
|
| 8 |
- ontology-learning
|
| 9 |
- events
|
| 10 |
-
pretty_name:
|
| 11 |
---
|
| 12 |
<div>
|
| 13 |
<img src="https://raw.githubusercontent.com/sciknoworg/OntoLearner/main/images/logo.png" alt="OntoLearner"
|
|
@@ -15,8 +15,16 @@ pretty_name: Agricultural
|
|
| 15 |
<h1 style="text-align: center; margin-top: 1em;">Events Domain Ontologies</h1>
|
| 16 |
</div>
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
## Overview
|
| 19 |
-
The events domain encompasses
|
| 20 |
|
| 21 |
## Ontologies
|
| 22 |
| Ontology ID | Full Name | Classes | Properties | Last Updated |
|
|
@@ -34,5 +42,38 @@ Each ontology directory contains the following files:
|
|
| 34 |
5. `<ontology_id>.rst` - Documentation describing the ontology
|
| 35 |
|
| 36 |
## Usage
|
| 37 |
-
These datasets are intended for ontology learning research and applications.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
|
|
|
|
| 7 |
- OntoLearner
|
| 8 |
- ontology-learning
|
| 9 |
- events
|
| 10 |
+
pretty_name: Events
|
| 11 |
---
|
| 12 |
<div>
|
| 13 |
<img src="https://raw.githubusercontent.com/sciknoworg/OntoLearner/main/images/logo.png" alt="OntoLearner"
|
|
|
|
| 15 |
<h1 style="text-align: center; margin-top: 1em;">Events Domain Ontologies</h1>
|
| 16 |
</div>
|
| 17 |
|
| 18 |
+
<div align="center">
|
| 19 |
+
|
| 20 |
+
[](https://github.com/sciknoworg/OntoLearner)
|
| 21 |
+
[](https://pypi.org/project/OntoLearner/)
|
| 22 |
+
[](https://ontolearner.readthedocs.io/benchmarking/benchmark.html)
|
| 23 |
+
|
| 24 |
+
</div>
|
| 25 |
+
|
| 26 |
## Overview
|
| 27 |
+
The events domain encompasses the structured representation and semantic modeling of occurrences in time, including their temporal, spatial, and contextual attributes. This domain is pivotal in knowledge representation as it facilitates the interoperability and integration of event-related data across diverse systems, enabling precise scheduling, planning, and historical analysis. By providing a framework for understanding and linking events, this domain supports advanced applications in areas such as artificial intelligence, information retrieval, and decision support systems.
|
| 28 |
|
| 29 |
## Ontologies
|
| 30 |
| Ontology ID | Full Name | Classes | Properties | Last Updated |
|
|
|
|
| 42 |
5. `<ontology_id>.rst` - Documentation describing the ontology
|
| 43 |
|
| 44 |
## Usage
|
| 45 |
+
These datasets are intended for ontology learning research and applications. Here's how to use them with OntoLearner:
|
| 46 |
+
|
| 47 |
+
```python
|
| 48 |
+
from ontolearner.ontology import Wine
|
| 49 |
+
from ontolearner.utils.train_test_split import train_test_split
|
| 50 |
+
from ontolearner.learner_pipeline import LearnerPipeline
|
| 51 |
+
|
| 52 |
+
ontology = Wine()
|
| 53 |
+
ontology.load() # Automatically downloads from Hugging Face
|
| 54 |
+
|
| 55 |
+
# Extract the dataset
|
| 56 |
+
data = ontology.extract()
|
| 57 |
+
|
| 58 |
+
# Split into train and test sets
|
| 59 |
+
train_data, test_data = train_test_split(data, test_size=0.2)
|
| 60 |
+
|
| 61 |
+
# Create a learning pipeline (for RAG-based learning)
|
| 62 |
+
pipeline = LearnerPipeline(
|
| 63 |
+
task="term-typing", # Other options: "taxonomy-discovery" or "non-taxonomy-discovery"
|
| 64 |
+
retriever_id="sentence-transformers/all-MiniLM-L6-v2",
|
| 65 |
+
llm_id="mistralai/Mistral-7B-Instruct-v0.1",
|
| 66 |
+
hf_token="your_huggingface_token" # Only needed for gated models
|
| 67 |
+
)
|
| 68 |
+
|
| 69 |
+
# Train and evaluate
|
| 70 |
+
results, metrics = pipeline.fit_predict_evaluate(
|
| 71 |
+
train_data=train_data,
|
| 72 |
+
test_data=test_data,
|
| 73 |
+
top_k=3,
|
| 74 |
+
test_limit=10
|
| 75 |
+
)
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
For more detailed examples, see the [OntoLearner documentation](https://ontolearner.readthedocs.io/).
|
| 79 |
|
conference/conference.owl
CHANGED
|
File without changes
|
conference/term_typings.json
CHANGED
|
@@ -1,224 +1,224 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
-
"ID": "
|
| 4 |
-
"term": "
|
| 5 |
"types": [
|
| 6 |
-
"
|
| 7 |
]
|
| 8 |
},
|
| 9 |
{
|
| 10 |
-
"ID": "
|
| 11 |
-
"term": "
|
| 12 |
"types": [
|
| 13 |
"Organising role"
|
| 14 |
]
|
| 15 |
},
|
| 16 |
{
|
| 17 |
-
"ID": "
|
| 18 |
-
"term": "
|
| 19 |
"types": [
|
| 20 |
"Organising role"
|
| 21 |
]
|
| 22 |
},
|
| 23 |
{
|
| 24 |
-
"ID": "
|
| 25 |
-
"term": "
|
| 26 |
"types": [
|
| 27 |
"Organising role"
|
| 28 |
]
|
| 29 |
},
|
| 30 |
{
|
| 31 |
-
"ID": "
|
| 32 |
-
"term": "
|
| 33 |
"types": [
|
| 34 |
"Organising role"
|
| 35 |
]
|
| 36 |
},
|
| 37 |
{
|
| 38 |
-
"ID": "
|
| 39 |
-
"term": "
|
| 40 |
"types": [
|
| 41 |
"Organising role"
|
| 42 |
]
|
| 43 |
},
|
| 44 |
{
|
| 45 |
-
"ID": "
|
| 46 |
-
"term": "
|
| 47 |
"types": [
|
| 48 |
"Organising role"
|
| 49 |
]
|
| 50 |
},
|
| 51 |
{
|
| 52 |
-
"ID": "
|
| 53 |
-
"term": "
|
| 54 |
"types": [
|
| 55 |
"Organising role"
|
| 56 |
]
|
| 57 |
},
|
| 58 |
{
|
| 59 |
-
"ID": "
|
| 60 |
-
"term": "
|
| 61 |
"types": [
|
| 62 |
"Organising role"
|
| 63 |
]
|
| 64 |
},
|
| 65 |
{
|
| 66 |
-
"ID": "
|
| 67 |
-
"term": "
|
| 68 |
"types": [
|
| 69 |
"Organising role"
|
| 70 |
]
|
| 71 |
},
|
| 72 |
{
|
| 73 |
-
"ID": "
|
| 74 |
-
"term": "
|
| 75 |
"types": [
|
| 76 |
"Organising role"
|
| 77 |
]
|
| 78 |
},
|
| 79 |
{
|
| 80 |
-
"ID": "
|
| 81 |
-
"term": "
|
| 82 |
"types": [
|
| 83 |
"Organising role"
|
| 84 |
]
|
| 85 |
},
|
| 86 |
{
|
| 87 |
-
"ID": "
|
| 88 |
-
"term": "
|
| 89 |
"types": [
|
| 90 |
"Organising role"
|
| 91 |
]
|
| 92 |
},
|
| 93 |
{
|
| 94 |
-
"ID": "
|
| 95 |
-
"term": "
|
| 96 |
"types": [
|
| 97 |
"Organising role"
|
| 98 |
]
|
| 99 |
},
|
| 100 |
{
|
| 101 |
-
"ID": "
|
| 102 |
-
"term": "
|
| 103 |
"types": [
|
| 104 |
"Organising role"
|
| 105 |
]
|
| 106 |
},
|
| 107 |
{
|
| 108 |
-
"ID": "
|
| 109 |
-
"term": "
|
| 110 |
"types": [
|
| 111 |
"Organising role"
|
| 112 |
]
|
| 113 |
},
|
| 114 |
{
|
| 115 |
-
"ID": "
|
| 116 |
-
"term": "
|
| 117 |
"types": [
|
| 118 |
"Organising role"
|
| 119 |
]
|
| 120 |
},
|
| 121 |
{
|
| 122 |
-
"ID": "
|
| 123 |
-
"term": "
|
| 124 |
"types": [
|
| 125 |
"Organising role"
|
| 126 |
]
|
| 127 |
},
|
| 128 |
{
|
| 129 |
-
"ID": "
|
| 130 |
-
"term": "
|
| 131 |
"types": [
|
| 132 |
"Organising role"
|
| 133 |
]
|
| 134 |
},
|
| 135 |
{
|
| 136 |
-
"ID": "
|
| 137 |
-
"term": "
|
| 138 |
"types": [
|
| 139 |
"Organising role"
|
| 140 |
]
|
| 141 |
},
|
| 142 |
{
|
| 143 |
-
"ID": "
|
| 144 |
-
"term": "
|
| 145 |
"types": [
|
| 146 |
"Organising role"
|
| 147 |
]
|
| 148 |
},
|
| 149 |
{
|
| 150 |
-
"ID": "
|
| 151 |
-
"term": "
|
| 152 |
"types": [
|
| 153 |
"Organising role"
|
| 154 |
]
|
| 155 |
},
|
| 156 |
{
|
| 157 |
-
"ID": "
|
| 158 |
-
"term": "
|
| 159 |
"types": [
|
| 160 |
"Organising role"
|
| 161 |
]
|
| 162 |
},
|
| 163 |
{
|
| 164 |
-
"ID": "
|
| 165 |
-
"term": "
|
| 166 |
"types": [
|
| 167 |
"Organising role"
|
| 168 |
]
|
| 169 |
},
|
| 170 |
{
|
| 171 |
-
"ID": "
|
| 172 |
-
"term": "
|
| 173 |
"types": [
|
| 174 |
"Organising role"
|
| 175 |
]
|
| 176 |
},
|
| 177 |
{
|
| 178 |
-
"ID": "
|
| 179 |
-
"term": "
|
| 180 |
"types": [
|
| 181 |
"Organising role"
|
| 182 |
]
|
| 183 |
},
|
| 184 |
{
|
| 185 |
-
"ID": "
|
| 186 |
-
"term": "
|
| 187 |
"types": [
|
| 188 |
"Organising role"
|
| 189 |
]
|
| 190 |
},
|
| 191 |
{
|
| 192 |
-
"ID": "
|
| 193 |
-
"term": "
|
| 194 |
"types": [
|
| 195 |
-
"
|
| 196 |
]
|
| 197 |
},
|
| 198 |
{
|
| 199 |
-
"ID": "
|
| 200 |
-
"term": "
|
| 201 |
"types": [
|
| 202 |
"Publishing role"
|
| 203 |
]
|
| 204 |
},
|
| 205 |
{
|
| 206 |
-
"ID": "
|
| 207 |
-
"term": "
|
| 208 |
"types": [
|
| 209 |
"Publishing role"
|
| 210 |
]
|
| 211 |
},
|
| 212 |
{
|
| 213 |
-
"ID": "
|
| 214 |
-
"term": "
|
| 215 |
"types": [
|
| 216 |
"Publishing role"
|
| 217 |
]
|
| 218 |
},
|
| 219 |
{
|
| 220 |
-
"ID": "
|
| 221 |
-
"term": "
|
| 222 |
"types": [
|
| 223 |
"Publishing role"
|
| 224 |
]
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
+
"ID": "TT_791cdb9d",
|
| 4 |
+
"term": "Proceedings chair",
|
| 5 |
"types": [
|
| 6 |
+
"Organising role"
|
| 7 |
]
|
| 8 |
},
|
| 9 |
{
|
| 10 |
+
"ID": "TT_e51b2bbb",
|
| 11 |
+
"term": "Demos chair",
|
| 12 |
"types": [
|
| 13 |
"Organising role"
|
| 14 |
]
|
| 15 |
},
|
| 16 |
{
|
| 17 |
+
"ID": "TT_39b2c40e",
|
| 18 |
+
"term": "Organising committee member",
|
| 19 |
"types": [
|
| 20 |
"Organising role"
|
| 21 |
]
|
| 22 |
},
|
| 23 |
{
|
| 24 |
+
"ID": "TT_b762d009",
|
| 25 |
+
"term": "Industry chair",
|
| 26 |
"types": [
|
| 27 |
"Organising role"
|
| 28 |
]
|
| 29 |
},
|
| 30 |
{
|
| 31 |
+
"ID": "TT_d220b419",
|
| 32 |
+
"term": "General chair",
|
| 33 |
"types": [
|
| 34 |
"Organising role"
|
| 35 |
]
|
| 36 |
},
|
| 37 |
{
|
| 38 |
+
"ID": "TT_73000eac",
|
| 39 |
+
"term": "Workshops chair",
|
| 40 |
"types": [
|
| 41 |
"Organising role"
|
| 42 |
]
|
| 43 |
},
|
| 44 |
{
|
| 45 |
+
"ID": "TT_fcee036e",
|
| 46 |
+
"term": "Poster chair",
|
| 47 |
"types": [
|
| 48 |
"Organising role"
|
| 49 |
]
|
| 50 |
},
|
| 51 |
{
|
| 52 |
+
"ID": "TT_f7babc35",
|
| 53 |
+
"term": "PhD symposium chair",
|
| 54 |
"types": [
|
| 55 |
"Organising role"
|
| 56 |
]
|
| 57 |
},
|
| 58 |
{
|
| 59 |
+
"ID": "TT_aa599ace",
|
| 60 |
+
"term": "Sponsor",
|
| 61 |
"types": [
|
| 62 |
"Organising role"
|
| 63 |
]
|
| 64 |
},
|
| 65 |
{
|
| 66 |
+
"ID": "TT_939768a4",
|
| 67 |
+
"term": "Tutorials chair",
|
| 68 |
"types": [
|
| 69 |
"Organising role"
|
| 70 |
]
|
| 71 |
},
|
| 72 |
{
|
| 73 |
+
"ID": "TT_ee9aa6e9",
|
| 74 |
+
"term": "Local organiser",
|
| 75 |
"types": [
|
| 76 |
"Organising role"
|
| 77 |
]
|
| 78 |
},
|
| 79 |
{
|
| 80 |
+
"ID": "TT_0bfb983d",
|
| 81 |
+
"term": "Posters chair",
|
| 82 |
"types": [
|
| 83 |
"Organising role"
|
| 84 |
]
|
| 85 |
},
|
| 86 |
{
|
| 87 |
+
"ID": "TT_18d60ff4",
|
| 88 |
+
"term": "Metadata coordinator",
|
| 89 |
"types": [
|
| 90 |
"Organising role"
|
| 91 |
]
|
| 92 |
},
|
| 93 |
{
|
| 94 |
+
"ID": "TT_26e3de07",
|
| 95 |
+
"term": "Webmaster",
|
| 96 |
"types": [
|
| 97 |
"Organising role"
|
| 98 |
]
|
| 99 |
},
|
| 100 |
{
|
| 101 |
+
"ID": "TT_2ddcb472",
|
| 102 |
+
"term": "Session chair",
|
| 103 |
"types": [
|
| 104 |
"Organising role"
|
| 105 |
]
|
| 106 |
},
|
| 107 |
{
|
| 108 |
+
"ID": "TT_9f3065c0",
|
| 109 |
+
"term": "Publicity chair",
|
| 110 |
"types": [
|
| 111 |
"Organising role"
|
| 112 |
]
|
| 113 |
},
|
| 114 |
{
|
| 115 |
+
"ID": "TT_77e8afa5",
|
| 116 |
+
"term": "Volunteers chair",
|
| 117 |
"types": [
|
| 118 |
"Organising role"
|
| 119 |
]
|
| 120 |
},
|
| 121 |
{
|
| 122 |
+
"ID": "TT_94e4d4ca",
|
| 123 |
+
"term": "Workshop organiser",
|
| 124 |
"types": [
|
| 125 |
"Organising role"
|
| 126 |
]
|
| 127 |
},
|
| 128 |
{
|
| 129 |
+
"ID": "TT_7304fb82",
|
| 130 |
+
"term": "Panel chair",
|
| 131 |
"types": [
|
| 132 |
"Organising role"
|
| 133 |
]
|
| 134 |
},
|
| 135 |
{
|
| 136 |
+
"ID": "TT_6b7e007f",
|
| 137 |
+
"term": "Chair",
|
| 138 |
"types": [
|
| 139 |
"Organising role"
|
| 140 |
]
|
| 141 |
},
|
| 142 |
{
|
| 143 |
+
"ID": "TT_165f1ffc",
|
| 144 |
+
"term": "Track chair",
|
| 145 |
"types": [
|
| 146 |
"Organising role"
|
| 147 |
]
|
| 148 |
},
|
| 149 |
{
|
| 150 |
+
"ID": "TT_00ce4c3c",
|
| 151 |
+
"term": "Sponsorship chair",
|
| 152 |
"types": [
|
| 153 |
"Organising role"
|
| 154 |
]
|
| 155 |
},
|
| 156 |
{
|
| 157 |
+
"ID": "TT_a813c315",
|
| 158 |
+
"term": "Fellowship chair",
|
| 159 |
"types": [
|
| 160 |
"Organising role"
|
| 161 |
]
|
| 162 |
},
|
| 163 |
{
|
| 164 |
+
"ID": "TT_948b3b57",
|
| 165 |
+
"term": "Exhibition chair",
|
| 166 |
"types": [
|
| 167 |
"Organising role"
|
| 168 |
]
|
| 169 |
},
|
| 170 |
{
|
| 171 |
+
"ID": "TT_17f49f0c",
|
| 172 |
+
"term": "Treasurer",
|
| 173 |
"types": [
|
| 174 |
"Organising role"
|
| 175 |
]
|
| 176 |
},
|
| 177 |
{
|
| 178 |
+
"ID": "TT_aedd6a8f",
|
| 179 |
+
"term": "Programme chair",
|
| 180 |
"types": [
|
| 181 |
"Organising role"
|
| 182 |
]
|
| 183 |
},
|
| 184 |
{
|
| 185 |
+
"ID": "TT_7654b03b",
|
| 186 |
+
"term": "Challenge chair",
|
| 187 |
"types": [
|
| 188 |
"Organising role"
|
| 189 |
]
|
| 190 |
},
|
| 191 |
{
|
| 192 |
+
"ID": "TT_157a39d4",
|
| 193 |
+
"term": "Participant",
|
| 194 |
"types": [
|
| 195 |
+
"Role"
|
| 196 |
]
|
| 197 |
},
|
| 198 |
{
|
| 199 |
+
"ID": "TT_1adcb2cb",
|
| 200 |
+
"term": "Reviewer",
|
| 201 |
"types": [
|
| 202 |
"Publishing role"
|
| 203 |
]
|
| 204 |
},
|
| 205 |
{
|
| 206 |
+
"ID": "TT_4715d5a1",
|
| 207 |
+
"term": "Programme committee member",
|
| 208 |
"types": [
|
| 209 |
"Publishing role"
|
| 210 |
]
|
| 211 |
},
|
| 212 |
{
|
| 213 |
+
"ID": "TT_b7313a45",
|
| 214 |
+
"term": "Author",
|
| 215 |
"types": [
|
| 216 |
"Publishing role"
|
| 217 |
]
|
| 218 |
},
|
| 219 |
{
|
| 220 |
+
"ID": "TT_78f4a2a9",
|
| 221 |
+
"term": "Presenter",
|
| 222 |
"types": [
|
| 223 |
"Publishing role"
|
| 224 |
]
|
conference/type_non_taxonomic_relations.json
CHANGED
|
@@ -12,21 +12,21 @@
|
|
| 12 |
],
|
| 13 |
"non_taxonomies": [
|
| 14 |
{
|
| 15 |
-
"ID": "
|
| 16 |
-
"head": "
|
| 17 |
-
"tail": "
|
| 18 |
"relation": "disjointWith"
|
| 19 |
},
|
| 20 |
{
|
| 21 |
-
"ID": "
|
| 22 |
"head": "Organisational role during event",
|
| 23 |
"tail": "Publishing role during event",
|
| 24 |
"relation": "disjointWith"
|
| 25 |
},
|
| 26 |
{
|
| 27 |
-
"ID": "
|
| 28 |
-
"head": "
|
| 29 |
-
"tail": "
|
| 30 |
"relation": "disjointWith"
|
| 31 |
}
|
| 32 |
]
|
|
|
|
| 12 |
],
|
| 13 |
"non_taxonomies": [
|
| 14 |
{
|
| 15 |
+
"ID": "NR_0cbd2a85",
|
| 16 |
+
"head": "Affiliation during event",
|
| 17 |
+
"tail": "Role during event",
|
| 18 |
"relation": "disjointWith"
|
| 19 |
},
|
| 20 |
{
|
| 21 |
+
"ID": "NR_af794490",
|
| 22 |
"head": "Organisational role during event",
|
| 23 |
"tail": "Publishing role during event",
|
| 24 |
"relation": "disjointWith"
|
| 25 |
},
|
| 26 |
{
|
| 27 |
+
"ID": "NR_9948db6c",
|
| 28 |
+
"head": "Organising role",
|
| 29 |
+
"tail": "Publishing role",
|
| 30 |
"relation": "disjointWith"
|
| 31 |
}
|
| 32 |
]
|
conference/type_taxonomies.json
CHANGED
|
@@ -1,282 +1,282 @@
|
|
| 1 |
{
|
| 2 |
"types": [
|
| 3 |
-
"Non academic event",
|
| 4 |
-
"Document",
|
| 5 |
-
"Publishing role during event",
|
| 6 |
-
"Organisation",
|
| 7 |
-
"Role",
|
| 8 |
-
"Social event",
|
| 9 |
"Organisational role during event",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
"Panel",
|
|
|
|
| 11 |
"In proceedings",
|
| 12 |
-
"Tutorial series",
|
| 13 |
"Time indexed situation",
|
| 14 |
-
"Track",
|
| 15 |
-
"Workshop series",
|
| 16 |
-
"Agent",
|
| 17 |
-
"Person",
|
| 18 |
-
"Organising role",
|
| 19 |
"Academic event",
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"
|
| 23 |
-
"Conference",
|
| 24 |
"Organised event",
|
| 25 |
-
"
|
| 26 |
-
"
|
|
|
|
| 27 |
"Workshop",
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
-
"Affiliation during event",
|
| 31 |
-
"Publishing role",
|
| 32 |
"AffiliationAtTimeOfSubmission",
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"Conference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
],
|
| 37 |
"taxonomies": [
|
| 38 |
{
|
| 39 |
-
"ID": "
|
| 40 |
"parent": "Organised event",
|
| 41 |
"child": "Academic event"
|
| 42 |
},
|
| 43 |
{
|
| 44 |
-
"ID": "
|
| 45 |
"parent": "Organised event",
|
| 46 |
"child": "Non academic event"
|
| 47 |
},
|
| 48 |
{
|
| 49 |
-
"ID": "
|
| 50 |
"parent": "Time indexed situation",
|
| 51 |
"child": "AffiliationAtTimeOfSubmission"
|
| 52 |
},
|
| 53 |
{
|
| 54 |
-
"ID": "
|
| 55 |
"parent": "Time indexed situation",
|
| 56 |
"child": "Affiliation during event"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
-
"ID": "
|
| 60 |
"parent": "Time indexed situation",
|
| 61 |
"child": "Role during event"
|
| 62 |
},
|
| 63 |
{
|
| 64 |
-
"ID": "
|
| 65 |
"parent": "Time indexed situation",
|
| 66 |
"child": "AffiliationAtTimeOfSubmission"
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"ID": "
|
| 70 |
"parent": "Time indexed situation",
|
| 71 |
"child": "AffiliationAtTimeOfSubmission"
|
| 72 |
},
|
| 73 |
{
|
| 74 |
-
"ID": "
|
| 75 |
"parent": "Time indexed situation",
|
| 76 |
"child": "AffiliationAtTimeOfSubmission"
|
| 77 |
},
|
| 78 |
{
|
| 79 |
-
"ID": "
|
| 80 |
"parent": "Time indexed situation",
|
| 81 |
"child": "Affiliation during event"
|
| 82 |
},
|
| 83 |
{
|
| 84 |
-
"ID": "
|
| 85 |
"parent": "Time indexed situation",
|
| 86 |
"child": "Affiliation during event"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
-
"ID": "
|
| 90 |
"parent": "Time indexed situation",
|
| 91 |
"child": "Affiliation during event"
|
| 92 |
},
|
| 93 |
{
|
| 94 |
-
"ID": "
|
| 95 |
"parent": "Role",
|
| 96 |
"child": "Affiliation role"
|
| 97 |
},
|
| 98 |
{
|
| 99 |
-
"ID": "
|
| 100 |
"parent": "Role",
|
| 101 |
"child": "Organising role"
|
| 102 |
},
|
| 103 |
{
|
| 104 |
-
"ID": "
|
| 105 |
"parent": "Role",
|
| 106 |
"child": "Publishing role"
|
| 107 |
},
|
| 108 |
{
|
| 109 |
-
"ID": "
|
| 110 |
"parent": "Non academic event",
|
| 111 |
"child": "Break"
|
| 112 |
},
|
| 113 |
{
|
| 114 |
-
"ID": "
|
| 115 |
"parent": "Non academic event",
|
| 116 |
"child": "Meal"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
-
"ID": "
|
| 120 |
"parent": "Non academic event",
|
| 121 |
"child": "Social event"
|
| 122 |
},
|
| 123 |
{
|
| 124 |
-
"ID": "
|
| 125 |
"parent": "Academic event",
|
| 126 |
"child": "Conference"
|
| 127 |
},
|
| 128 |
{
|
| 129 |
-
"ID": "
|
| 130 |
"parent": "Academic event",
|
| 131 |
"child": "Panel"
|
| 132 |
},
|
| 133 |
{
|
| 134 |
-
"ID": "
|
| 135 |
"parent": "Academic event",
|
| 136 |
"child": "Session"
|
| 137 |
},
|
| 138 |
{
|
| 139 |
-
"ID": "
|
| 140 |
"parent": "Academic event",
|
| 141 |
"child": "Talk"
|
| 142 |
},
|
| 143 |
{
|
| 144 |
-
"ID": "
|
| 145 |
"parent": "Academic event",
|
| 146 |
"child": "Track"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
-
"ID": "
|
| 150 |
"parent": "Academic event",
|
| 151 |
"child": "Tutorial"
|
| 152 |
},
|
| 153 |
{
|
| 154 |
-
"ID": "
|
| 155 |
"parent": "Academic event",
|
| 156 |
"child": "Workshop"
|
| 157 |
},
|
| 158 |
{
|
| 159 |
-
"ID": "
|
| 160 |
"parent": "Academic event",
|
| 161 |
"child": "Conference"
|
| 162 |
},
|
| 163 |
{
|
| 164 |
-
"ID": "
|
| 165 |
"parent": "Event series",
|
| 166 |
"child": "Conference series"
|
| 167 |
},
|
| 168 |
{
|
| 169 |
-
"ID": "
|
| 170 |
"parent": "Event series",
|
| 171 |
"child": "Tutorial series"
|
| 172 |
},
|
| 173 |
{
|
| 174 |
-
"ID": "
|
| 175 |
"parent": "Event series",
|
| 176 |
"child": "Workshop series"
|
| 177 |
},
|
| 178 |
{
|
| 179 |
-
"ID": "
|
| 180 |
"parent": "Event series",
|
| 181 |
"child": "Conference series"
|
| 182 |
},
|
| 183 |
{
|
| 184 |
-
"ID": "
|
| 185 |
"parent": "Document",
|
| 186 |
"child": "In proceedings"
|
| 187 |
},
|
| 188 |
{
|
| 189 |
-
"ID": "
|
| 190 |
"parent": "Document",
|
| 191 |
"child": "Proceedings"
|
| 192 |
},
|
| 193 |
{
|
| 194 |
-
"ID": "
|
| 195 |
"parent": "Document",
|
| 196 |
"child": "In proceedings"
|
| 197 |
},
|
| 198 |
{
|
| 199 |
-
"ID": "
|
| 200 |
"parent": "Agent",
|
| 201 |
"child": "Organisation"
|
| 202 |
},
|
| 203 |
{
|
| 204 |
-
"ID": "
|
| 205 |
"parent": "Agent",
|
| 206 |
"child": "Person"
|
| 207 |
},
|
| 208 |
{
|
| 209 |
-
"ID": "
|
| 210 |
"parent": "Agent",
|
| 211 |
"child": "Organisation"
|
| 212 |
},
|
| 213 |
{
|
| 214 |
-
"ID": "
|
| 215 |
"parent": "Role during event",
|
| 216 |
"child": "Organisational role during event"
|
| 217 |
},
|
| 218 |
{
|
| 219 |
-
"ID": "
|
| 220 |
"parent": "Role during event",
|
| 221 |
"child": "Publishing role during event"
|
| 222 |
},
|
| 223 |
{
|
| 224 |
-
"ID": "
|
| 225 |
"parent": "Role during event",
|
| 226 |
"child": "Organisational role during event"
|
| 227 |
},
|
| 228 |
{
|
| 229 |
-
"ID": "
|
| 230 |
"parent": "Agent",
|
| 231 |
"child": "Person"
|
| 232 |
},
|
| 233 |
{
|
| 234 |
-
"ID": "
|
| 235 |
"parent": "Agent",
|
| 236 |
"child": "Person"
|
| 237 |
},
|
| 238 |
{
|
| 239 |
-
"ID": "
|
| 240 |
"parent": "Document",
|
| 241 |
"child": "Proceedings"
|
| 242 |
},
|
| 243 |
{
|
| 244 |
-
"ID": "
|
| 245 |
"parent": "Role during event",
|
| 246 |
"child": "Publishing role during event"
|
| 247 |
},
|
| 248 |
{
|
| 249 |
-
"ID": "
|
| 250 |
"parent": "Time indexed situation",
|
| 251 |
"child": "Role during event"
|
| 252 |
},
|
| 253 |
{
|
| 254 |
-
"ID": "
|
| 255 |
"parent": "Time indexed situation",
|
| 256 |
"child": "Role during event"
|
| 257 |
},
|
| 258 |
{
|
| 259 |
-
"ID": "
|
| 260 |
"parent": "Time indexed situation",
|
| 261 |
"child": "Role during event"
|
| 262 |
},
|
| 263 |
{
|
| 264 |
-
"ID": "
|
| 265 |
"parent": "Academic event",
|
| 266 |
"child": "Tutorial"
|
| 267 |
},
|
| 268 |
{
|
| 269 |
-
"ID": "
|
| 270 |
"parent": "Event series",
|
| 271 |
"child": "Tutorial series"
|
| 272 |
},
|
| 273 |
{
|
| 274 |
-
"ID": "
|
| 275 |
"parent": "Academic event",
|
| 276 |
"child": "Workshop"
|
| 277 |
},
|
| 278 |
{
|
| 279 |
-
"ID": "
|
| 280 |
"parent": "Event series",
|
| 281 |
"child": "Workshop series"
|
| 282 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"types": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
"Organisational role during event",
|
| 4 |
+
"Affiliation role",
|
| 5 |
+
"Break",
|
| 6 |
+
"Meal",
|
| 7 |
+
"Proceedings",
|
| 8 |
+
"Publishing role during event",
|
| 9 |
+
"Agent",
|
| 10 |
+
"Role during event",
|
| 11 |
"Panel",
|
| 12 |
+
"Tutorial",
|
| 13 |
"In proceedings",
|
|
|
|
| 14 |
"Time indexed situation",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
"Academic event",
|
| 16 |
+
"Workshop series",
|
| 17 |
+
"Affiliation during event",
|
| 18 |
+
"Role",
|
|
|
|
| 19 |
"Organised event",
|
| 20 |
+
"Event series",
|
| 21 |
+
"Organising role",
|
| 22 |
+
"Talk",
|
| 23 |
"Workshop",
|
| 24 |
+
"Track",
|
| 25 |
+
"Person",
|
|
|
|
|
|
|
| 26 |
"AffiliationAtTimeOfSubmission",
|
| 27 |
+
"Session",
|
| 28 |
+
"Publishing role",
|
| 29 |
+
"Conference",
|
| 30 |
+
"Non academic event",
|
| 31 |
+
"Tutorial series",
|
| 32 |
+
"Conference series",
|
| 33 |
+
"Organisation",
|
| 34 |
+
"Document",
|
| 35 |
+
"Social event"
|
| 36 |
],
|
| 37 |
"taxonomies": [
|
| 38 |
{
|
| 39 |
+
"ID": "TR_efb835d1",
|
| 40 |
"parent": "Organised event",
|
| 41 |
"child": "Academic event"
|
| 42 |
},
|
| 43 |
{
|
| 44 |
+
"ID": "TR_d884cc67",
|
| 45 |
"parent": "Organised event",
|
| 46 |
"child": "Non academic event"
|
| 47 |
},
|
| 48 |
{
|
| 49 |
+
"ID": "TR_3171e755",
|
| 50 |
"parent": "Time indexed situation",
|
| 51 |
"child": "AffiliationAtTimeOfSubmission"
|
| 52 |
},
|
| 53 |
{
|
| 54 |
+
"ID": "TR_56fa5892",
|
| 55 |
"parent": "Time indexed situation",
|
| 56 |
"child": "Affiliation during event"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
+
"ID": "TR_39af57c2",
|
| 60 |
"parent": "Time indexed situation",
|
| 61 |
"child": "Role during event"
|
| 62 |
},
|
| 63 |
{
|
| 64 |
+
"ID": "TR_396bcc2b",
|
| 65 |
"parent": "Time indexed situation",
|
| 66 |
"child": "AffiliationAtTimeOfSubmission"
|
| 67 |
},
|
| 68 |
{
|
| 69 |
+
"ID": "TR_6cdd9afd",
|
| 70 |
"parent": "Time indexed situation",
|
| 71 |
"child": "AffiliationAtTimeOfSubmission"
|
| 72 |
},
|
| 73 |
{
|
| 74 |
+
"ID": "TR_410379c2",
|
| 75 |
"parent": "Time indexed situation",
|
| 76 |
"child": "AffiliationAtTimeOfSubmission"
|
| 77 |
},
|
| 78 |
{
|
| 79 |
+
"ID": "TR_d969991c",
|
| 80 |
"parent": "Time indexed situation",
|
| 81 |
"child": "Affiliation during event"
|
| 82 |
},
|
| 83 |
{
|
| 84 |
+
"ID": "TR_10dc1b45",
|
| 85 |
"parent": "Time indexed situation",
|
| 86 |
"child": "Affiliation during event"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
+
"ID": "TR_fad0261a",
|
| 90 |
"parent": "Time indexed situation",
|
| 91 |
"child": "Affiliation during event"
|
| 92 |
},
|
| 93 |
{
|
| 94 |
+
"ID": "TR_f420e933",
|
| 95 |
"parent": "Role",
|
| 96 |
"child": "Affiliation role"
|
| 97 |
},
|
| 98 |
{
|
| 99 |
+
"ID": "TR_85e0ddad",
|
| 100 |
"parent": "Role",
|
| 101 |
"child": "Organising role"
|
| 102 |
},
|
| 103 |
{
|
| 104 |
+
"ID": "TR_53badd9a",
|
| 105 |
"parent": "Role",
|
| 106 |
"child": "Publishing role"
|
| 107 |
},
|
| 108 |
{
|
| 109 |
+
"ID": "TR_90932676",
|
| 110 |
"parent": "Non academic event",
|
| 111 |
"child": "Break"
|
| 112 |
},
|
| 113 |
{
|
| 114 |
+
"ID": "TR_50541d36",
|
| 115 |
"parent": "Non academic event",
|
| 116 |
"child": "Meal"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
+
"ID": "TR_e70fd35a",
|
| 120 |
"parent": "Non academic event",
|
| 121 |
"child": "Social event"
|
| 122 |
},
|
| 123 |
{
|
| 124 |
+
"ID": "TR_083f2161",
|
| 125 |
"parent": "Academic event",
|
| 126 |
"child": "Conference"
|
| 127 |
},
|
| 128 |
{
|
| 129 |
+
"ID": "TR_27a52c8b",
|
| 130 |
"parent": "Academic event",
|
| 131 |
"child": "Panel"
|
| 132 |
},
|
| 133 |
{
|
| 134 |
+
"ID": "TR_46580139",
|
| 135 |
"parent": "Academic event",
|
| 136 |
"child": "Session"
|
| 137 |
},
|
| 138 |
{
|
| 139 |
+
"ID": "TR_5dfc205f",
|
| 140 |
"parent": "Academic event",
|
| 141 |
"child": "Talk"
|
| 142 |
},
|
| 143 |
{
|
| 144 |
+
"ID": "TR_f3b0c77e",
|
| 145 |
"parent": "Academic event",
|
| 146 |
"child": "Track"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
+
"ID": "TR_4392b600",
|
| 150 |
"parent": "Academic event",
|
| 151 |
"child": "Tutorial"
|
| 152 |
},
|
| 153 |
{
|
| 154 |
+
"ID": "TR_76b53d7e",
|
| 155 |
"parent": "Academic event",
|
| 156 |
"child": "Workshop"
|
| 157 |
},
|
| 158 |
{
|
| 159 |
+
"ID": "TR_f1cb09a2",
|
| 160 |
"parent": "Academic event",
|
| 161 |
"child": "Conference"
|
| 162 |
},
|
| 163 |
{
|
| 164 |
+
"ID": "TR_468464fb",
|
| 165 |
"parent": "Event series",
|
| 166 |
"child": "Conference series"
|
| 167 |
},
|
| 168 |
{
|
| 169 |
+
"ID": "TR_3899f378",
|
| 170 |
"parent": "Event series",
|
| 171 |
"child": "Tutorial series"
|
| 172 |
},
|
| 173 |
{
|
| 174 |
+
"ID": "TR_c16c68c1",
|
| 175 |
"parent": "Event series",
|
| 176 |
"child": "Workshop series"
|
| 177 |
},
|
| 178 |
{
|
| 179 |
+
"ID": "TR_b3b463dc",
|
| 180 |
"parent": "Event series",
|
| 181 |
"child": "Conference series"
|
| 182 |
},
|
| 183 |
{
|
| 184 |
+
"ID": "TR_3d073317",
|
| 185 |
"parent": "Document",
|
| 186 |
"child": "In proceedings"
|
| 187 |
},
|
| 188 |
{
|
| 189 |
+
"ID": "TR_04da7dad",
|
| 190 |
"parent": "Document",
|
| 191 |
"child": "Proceedings"
|
| 192 |
},
|
| 193 |
{
|
| 194 |
+
"ID": "TR_6bba5935",
|
| 195 |
"parent": "Document",
|
| 196 |
"child": "In proceedings"
|
| 197 |
},
|
| 198 |
{
|
| 199 |
+
"ID": "TR_d1a7131a",
|
| 200 |
"parent": "Agent",
|
| 201 |
"child": "Organisation"
|
| 202 |
},
|
| 203 |
{
|
| 204 |
+
"ID": "TR_c92f9f03",
|
| 205 |
"parent": "Agent",
|
| 206 |
"child": "Person"
|
| 207 |
},
|
| 208 |
{
|
| 209 |
+
"ID": "TR_d8db42bc",
|
| 210 |
"parent": "Agent",
|
| 211 |
"child": "Organisation"
|
| 212 |
},
|
| 213 |
{
|
| 214 |
+
"ID": "TR_130504fe",
|
| 215 |
"parent": "Role during event",
|
| 216 |
"child": "Organisational role during event"
|
| 217 |
},
|
| 218 |
{
|
| 219 |
+
"ID": "TR_4a6fb90a",
|
| 220 |
"parent": "Role during event",
|
| 221 |
"child": "Publishing role during event"
|
| 222 |
},
|
| 223 |
{
|
| 224 |
+
"ID": "TR_1dab2ae1",
|
| 225 |
"parent": "Role during event",
|
| 226 |
"child": "Organisational role during event"
|
| 227 |
},
|
| 228 |
{
|
| 229 |
+
"ID": "TR_32f8ee95",
|
| 230 |
"parent": "Agent",
|
| 231 |
"child": "Person"
|
| 232 |
},
|
| 233 |
{
|
| 234 |
+
"ID": "TR_872a992c",
|
| 235 |
"parent": "Agent",
|
| 236 |
"child": "Person"
|
| 237 |
},
|
| 238 |
{
|
| 239 |
+
"ID": "TR_79891924",
|
| 240 |
"parent": "Document",
|
| 241 |
"child": "Proceedings"
|
| 242 |
},
|
| 243 |
{
|
| 244 |
+
"ID": "TR_1df410d5",
|
| 245 |
"parent": "Role during event",
|
| 246 |
"child": "Publishing role during event"
|
| 247 |
},
|
| 248 |
{
|
| 249 |
+
"ID": "TR_c751d5ec",
|
| 250 |
"parent": "Time indexed situation",
|
| 251 |
"child": "Role during event"
|
| 252 |
},
|
| 253 |
{
|
| 254 |
+
"ID": "TR_d8539e22",
|
| 255 |
"parent": "Time indexed situation",
|
| 256 |
"child": "Role during event"
|
| 257 |
},
|
| 258 |
{
|
| 259 |
+
"ID": "TR_e922e093",
|
| 260 |
"parent": "Time indexed situation",
|
| 261 |
"child": "Role during event"
|
| 262 |
},
|
| 263 |
{
|
| 264 |
+
"ID": "TR_064e40fd",
|
| 265 |
"parent": "Academic event",
|
| 266 |
"child": "Tutorial"
|
| 267 |
},
|
| 268 |
{
|
| 269 |
+
"ID": "TR_d250f1e8",
|
| 270 |
"parent": "Event series",
|
| 271 |
"child": "Tutorial series"
|
| 272 |
},
|
| 273 |
{
|
| 274 |
+
"ID": "TR_cdf5fa51",
|
| 275 |
"parent": "Academic event",
|
| 276 |
"child": "Workshop"
|
| 277 |
},
|
| 278 |
{
|
| 279 |
+
"ID": "TR_9bf665d0",
|
| 280 |
"parent": "Event series",
|
| 281 |
"child": "Workshop series"
|
| 282 |
}
|
icalendar/icalendar.rdf
CHANGED
|
File without changes
|
icalendar/term_typings.json
CHANGED
|
File without changes
|
icalendar/type_non_taxonomic_relations.json
CHANGED
|
File without changes
|
icalendar/type_taxonomies.json
CHANGED
|
File without changes
|
lode/lode.rdf
CHANGED
|
File without changes
|
lode/term_typings.json
CHANGED
|
File without changes
|
lode/type_non_taxonomic_relations.json
CHANGED
|
File without changes
|
lode/type_taxonomies.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
| 1 |
{
|
| 2 |
"types": [
|
| 3 |
-
"
|
| 4 |
-
"
|
| 5 |
],
|
| 6 |
"taxonomies": [
|
| 7 |
{
|
| 8 |
-
"ID": "
|
| 9 |
"parent": "Event",
|
| 10 |
"child": "Event"
|
| 11 |
},
|
| 12 |
{
|
| 13 |
-
"ID": "
|
| 14 |
"parent": "E2_Temporal_Entity",
|
| 15 |
"child": "Event"
|
| 16 |
},
|
| 17 |
{
|
| 18 |
-
"ID": "
|
| 19 |
"parent": "Event",
|
| 20 |
"child": "Event"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
-
"ID": "
|
| 24 |
"parent": "E2_Temporal_Entity",
|
| 25 |
"child": "Event"
|
| 26 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"types": [
|
| 3 |
+
"E2_Temporal_Entity",
|
| 4 |
+
"Event"
|
| 5 |
],
|
| 6 |
"taxonomies": [
|
| 7 |
{
|
| 8 |
+
"ID": "TR_84eaee8a",
|
| 9 |
"parent": "Event",
|
| 10 |
"child": "Event"
|
| 11 |
},
|
| 12 |
{
|
| 13 |
+
"ID": "TR_cc904816",
|
| 14 |
"parent": "E2_Temporal_Entity",
|
| 15 |
"child": "Event"
|
| 16 |
},
|
| 17 |
{
|
| 18 |
+
"ID": "TR_9038abf4",
|
| 19 |
"parent": "Event",
|
| 20 |
"child": "Event"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
+
"ID": "TR_6f08bea0",
|
| 24 |
"parent": "E2_Temporal_Entity",
|
| 25 |
"child": "Event"
|
| 26 |
}
|