-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMLSchema.ttl
646 lines (505 loc) · 42.8 KB
/
MLSchema.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
@prefix : <http://www.w3.org/ns/mls#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.w3.org/ns/mls#> .
<http://www.w3.org/ns/mls#> rdf:type owl:Ontology ;
owl:versionIRI <http://www.w3.org/2016/03/mls#> ;
dct:description "ML-Schema is a collaborative, community effort with a mission to develop, maintain, and promote standard schemas for data mining and machine learning algorithms, datasets, and experiments" ;
dct:hasVersion 1.0 ;
dct:license <https://creativecommons.org/licenses/by/4.0/> ;
dct:title "Machine Learning Schema" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/description
dct:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/hasVersion
dct:hasVersion rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
dct:issued rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dct:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dct:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dct:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#note
<http://www.w3.org/2004/02/skos/core#note> rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://www.w3.org/ns/mls#achieves
:achieves rdf:type owl:ObjectProperty ;
rdfs:domain :Run ;
rdfs:range :Task ;
dct:description "A relation between a run and a task, where the run achieves specifications formulated by the task." ;
rdfs:comment "A relation between a run and a task, where the run achieves specifications formulated by the task." .
### http://www.w3.org/ns/mls#definedOn
:definedOn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :defines ;
rdfs:domain :Task ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Data
:EvaluationSpecification
)
] ;
dct:description "A relation between a task and either the data or an evaluation specification pertinent to this task." ;
rdfs:comment "A relation between a task and either the data or an evaluation specification pertinent to this task." ;
rdfs:label "definedOn"@en .
### http://www.w3.org/ns/mls#defines
:defines rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/mls#executes
:executes rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Run ;
rdfs:range :Implementation ;
dct:description "A relation between a run and an implemantation that is being executed during the run." ;
rdfs:comment "A relation between a run and an implemantation that is being executed during the run." .
### http://www.w3.org/ns/mls#hasHyperParameter
:hasHyperParameter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Implementation ;
rdfs:range :HyperParameter ;
dct:description "A relation between an implementation of a machine learning algorithm and its hyperparameter." ;
rdfs:comment "A relation between an implementation of a machine learning algorithm and its hyperparameter." ;
rdfs:label "hasHyperParameter"@en .
### http://www.w3.org/ns/mls#hasInput
:hasInput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Run ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Data
:HyperParameterSetting
)
] ;
dct:description "A relation between a run and data that is taken as input to the run." ;
rdfs:comment "A relation between a run and data that is taken as input to the run." ;
rdfs:label "hasInput"@en .
### http://www.w3.org/ns/mls#hasOutput
:hasOutput rdf:type owl:ObjectProperty ;
rdfs:domain :Run ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Model
:ModelEvaluation
)
] ;
dct:description "A relation between a run and either a model or model evaluation that is produced on it’s output." ;
rdfs:comment "A relation between a run and either a model or model evaluation that is produced on it’s output." .
### http://www.w3.org/ns/mls#hasPart
:hasPart rdf:type owl:ObjectProperty ;
dct:description "A relation which represents a part-whole relationship holding between an entity and its part." ;
rdfs:comment "A relation which represents a part-whole relationship holding between an entity and its part." ;
rdfs:label "hasPart"@en .
### http://www.w3.org/ns/mls#hasQuality
:hasQuality rdf:type owl:ObjectProperty ;
dct:description "A relation between entities and their various characteristics." ;
rdfs:comment "A relation between entities and their various characteristics." .
### http://www.w3.org/ns/mls#implements
:implements rdf:type owl:ObjectProperty ;
rdfs:domain :InformationEntity ;
rdfs:range :InformationEntity ;
dct:description "A relation between an information entity and a specification that it conforms to." ;
rdfs:comment "A relation between an information entity and a specification that it conforms to." ;
rdfs:label "implements"@en .
### http://www.w3.org/ns/mls#realizes
:realizes rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Run ;
rdfs:range :Algorithm ;
dct:description "A relation between a run and an algorithm, where the run realizes specifications formulated by the algorithm." ;
rdfs:comment "A relation between a run and an algorithm, where the run realizes specifications formulated by the algorithm." .
### http://www.w3.org/ns/mls#specifiedBy
:specifiedBy rdf:type owl:ObjectProperty ;
rdfs:range :InformationEntity ;
dct:description "A relation between an entity and the information content entity that specifies it." ;
rdfs:comment "A relation between an entity and the information content entity that specifies it." .
#################################################################
# Data properties
#################################################################
### http://www.w3.org/ns/mls#hasValue
:hasValue rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://www.w3.org/ns/mls#Algorithm
:Algorithm rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ;
dct:description "The algorithm regardless software implementation." ;
rdfs:comment "The algorithm regardless software implementation." .
### http://www.w3.org/ns/mls#Data
:Data rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasQuality ;
owl:someValuesFrom :DataCharacteristic
] ;
dct:description """Data is a data item composed of data examples and it may be of a various level of granularity and complexity.
With regard to granularity, it can be a whole dataset (for instance, one main table and possibly other tables), or only a single table, or only a feature (e.g., a column of a table), or only an instance (e.g., row of a table), or a single feature-value pair.
With regard to complexity, data examples are characterized by their datatype, which may be arbitrarily complex (e.g., instead of a table it can be an arbitrary graph).""" ;
rdfs:comment """Data is a data item composed of data examples and it may be of a various level of granularity and complexity.
With regard to granularity, it can be a whole dataset (for instance, one main table and possibly other tables), or only a single table, or only a feature (e.g., a column of a table), or only an instance (e.g., row of a table), or a single feature-value pair.
With regard to complexity, data examples are characterized by their datatype, which may be arbitrarily complex (e.g., instead of a table it can be an arbitrary graph).""" .
### http://www.w3.org/ns/mls#DataCharacteristic
:DataCharacteristic rdf:type owl:Class ;
rdfs:subClassOf :Quality ;
dct:description """DataCharacteristic is a distinguishing quality or property that distinguish one data from another.
Such characteristics are often statistical ones (e.g., the number of instances
or the number of features of a data set). They may be also informationtheoretic measures (e.g., class entropy of a categorical data set) or geometric measures of data complexity (e.g., the highest discriminatory power of any single feature in the data set).""" ;
rdfs:comment """DataCharacteristic is a distinguishing quality or property that distinguish one data from another.
Such characteristics are often statistical ones (e.g., the number of instances
or the number of features of a data set). They may be also informationtheoretic measures (e.g., class entropy of a categorical data set) or geometric measures of data complexity (e.g., the highest discriminatory power of any single feature in the data set).""" .
### http://www.w3.org/ns/mls#Dataset
:Dataset rdf:type owl:Class ;
rdfs:subClassOf :Data ;
owl:disjointWith :Feature .
### http://www.w3.org/ns/mls#DatasetCharacteristic
:DatasetCharacteristic rdf:type owl:Class ;
rdfs:subClassOf :DataCharacteristic ;
owl:disjointWith :FeatureCharacteristic .
### http://www.w3.org/ns/mls#EvaluationMeasure
:EvaluationMeasure rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ;
dct:description "EvaluationMeasure is a measure to assess the performance of the model generated by the process that realizes the task. Examples are predictive accuracy or f-measure." ;
rdfs:comment "EvaluationMeasure is a measure to assess the performance of the model generated by the process that realizes the task. Examples are predictive accuracy or f-measure." .
### http://www.w3.org/ns/mls#EvaluationProcedure
:EvaluationProcedure rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ;
dct:description "EvaluationProcedure is a technique to evaluate machine learning models. Examples are cross-validation and leave-one-out." ;
rdfs:comment "EvaluationProcedure is a technique to evaluate machine learning models. Examples are cross-validation and leave-one-out." .
### http://www.w3.org/ns/mls#EvaluationSpecification
:EvaluationSpecification rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :defines ;
owl:someValuesFrom :Task
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:someValuesFrom :EvaluationMeasure
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:someValuesFrom :EvaluationProcedure
] ;
dct:description "EvaluationSpecification is a specification of an evaluation measure and an evaluation procedure to assess the performance of the process that realizes the task." ;
rdfs:comment "EvaluationProcedure is a technique to evaluate machine learning models. Examples are cross-validation and leave-one-out." .
### http://www.w3.org/ns/mls#Experiment
:Experiment rdf:type owl:Class ;
rdfs:subClassOf :Process ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:someValuesFrom :Run
] ;
dct:description "Experiment is a collection of runs." ;
rdfs:comment "Experiment is a collection of runs." .
### http://www.w3.org/ns/mls#Feature
:Feature rdf:type owl:Class ;
rdfs:subClassOf :Data .
### http://www.w3.org/ns/mls#FeatureCharacteristic
:FeatureCharacteristic rdf:type owl:Class ;
rdfs:subClassOf :DataCharacteristic .
### http://www.w3.org/ns/mls#HyperParameter
:HyperParameter rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ;
dct:description "Hyperparameter is a prior parameter of an implementation, i.e., a parameter which is set before its execution (e.g. C, the complexity parameter, in weka.SMO)." ;
rdfs:comment "Hyperparameter is a prior parameter of an implementation, i.e., a parameter which is set before its execution (e.g. C, the complexity parameter, in weka.SMO)." .
### http://www.w3.org/ns/mls#HyperParameterSetting
:HyperParameterSetting rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :specifiedBy ;
owl:someValuesFrom :HyperParameter
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasValue ;
owl:someValuesFrom rdfs:Literal
] ;
dct:description "HyperParameterSetting is an entity which connects a hyperparameter and its value that is being set before an implementation execution." ;
rdfs:comment "HyperParameterSetting is an entity which connects a hyperparameter and its value that is being set before an implementation execution." .
### http://www.w3.org/ns/mls#Implementation
:Implementation rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasHyperParameter ;
owl:someValuesFrom :HyperParameter
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasQuality ;
owl:someValuesFrom :ImplementationCharacteristic
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :implements ;
owl:someValuesFrom :Algorithm
] ;
dct:description "Implementation is an executable implementation of a machine learning algorithm, a script, or a workflow. It is versioned, and sometimes belongs to a library (e.g. WEKA)." ;
rdfs:comment "Implementation is an executable implementation of a machine learning algorithm, a script, or a workflow. It is versioned, and sometimes belongs to a library (e.g. WEKA)." .
### http://www.w3.org/ns/mls#ImplementationCharacteristic
:ImplementationCharacteristic rdf:type owl:Class ;
rdfs:subClassOf :Quality ;
dct:description "ImplementationCharacteristic is a distinguishing quality or property that distinguish one implementation from another." ;
rdfs:comment "ImplementationCharacteristic is a distinguishing quality or property that distinguish one implementation from another." .
### http://www.w3.org/ns/mls#InformationEntity
:InformationEntity rdf:type owl:Class ;
owl:disjointWith :Process .
### http://www.w3.org/ns/mls#Model
:Model rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasQuality ;
owl:someValuesFrom :ModelCharacteristic
] ;
dct:description "Model is a generalization of a set of training data able to predict values for unseen instances. It is an output from an execution of a data mining algorithm implementation. Models have a dual nature. They can be treated as data structures and as such represented, stored and manipulated. On the other hand, they act as functions and are executed, taking as input data examples and giving as output the result of applying the function to a data example. Models can also be divided into global or local ones. A global model has global coverage of a data set, i.e., it generalizes the whole data set. A local model, such as a pattern set, is a set of local hypotheses, i.e. each applies to a limited region of the data set." ;
rdfs:comment "Model is a generalization of a set of training data able to predict values for unseen instances. It is an output from an execution of a data mining algorithm implementation. Models have a dual nature. They can be treated as data structures and as such represented, stored and manipulated. On the other hand, they act as functions and are executed, taking as input data examples and giving as output the result of applying the function to a data example. Models can also be divided into global or local ones. A global model has global coverage of a data set, i.e., it generalizes the whole data set. A local model, such as a pattern set, is a set of local hypotheses, i.e. each applies to a limited region of the data set." .
### http://www.w3.org/ns/mls#ModelCharacteristic
:ModelCharacteristic rdf:type owl:Class ;
rdfs:subClassOf :Quality ;
dct:description "ModelCharacteristic is a distinguishing quality or property that distinguish one model from another. An example model characetristic may be interpretabilty or a complexity of the model." ;
rdfs:comment "ModelCharacteristic is a distinguishing quality or property that distinguish one model from another. An example model characetristic may be interpretabilty or a complexity of the model." .
### http://www.w3.org/ns/mls#ModelEvaluation
:ModelEvaluation rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :specifiedBy ;
owl:someValuesFrom :EvaluationMeasure
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasValue ;
owl:someValuesFrom rdfs:Literal
] ;
dct:description "ModelEvaluation is a setting of a value of the performance measure specified by the evaluation specification. It connects a measure specification with its value." ;
rdfs:comment "ModelEvaluation is a setting of a value of the performance measure specified by the evaluation specification. It connects a measure specification with its value." .
### http://www.w3.org/ns/mls#Process
:Process rdf:type owl:Class ;
owl:disjointWith :Quality ;
rdfs:label "Process"@en .
### http://www.w3.org/ns/mls#Quality
:Quality rdf:type owl:Class .
### http://www.w3.org/ns/mls#Run
:Run rdf:type owl:Class ;
rdfs:subClassOf :Process ,
[ rdf:type owl:Restriction ;
owl:onProperty :achieves ;
owl:someValuesFrom :Task
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :executes ;
owl:someValuesFrom :Implementation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasInput ;
owl:someValuesFrom :Data
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasInput ;
owl:someValuesFrom :HyperParameterSetting
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasOutput ;
owl:someValuesFrom :Model
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasOutput ;
owl:someValuesFrom :ModelEvaluation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :realizes ;
owl:someValuesFrom :Algorithm
] ;
dct:description "Run is an execution of an implementation on a machine (computer). It is limited in time (has a start and end point), can be successful or failed." ;
rdfs:comment "Run is an execution of an implementation on a machine (computer). It is limited in time (has a start and end point), can be successful or failed." .
### http://www.w3.org/ns/mls#Software
:Software rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:someValuesFrom :Implementation
] ;
dct:description "Software is implemented computer programs, procedures, scripts or rules with associated documentation, possibly constituting an organized environment, stored in read/write memory for the purpose of being executed within a computer system." ;
rdfs:comment "Software is implemented computer programs, procedures, scripts or rules with associated documentation, possibly constituting an organized environment, stored in read/write memory for the purpose of being executed within a computer system." .
### http://www.w3.org/ns/mls#Study
:Study rdf:type owl:Class ;
rdfs:subClassOf :Process ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:someValuesFrom :Experiment
] ;
dct:description "Study is a collection of runs that belong together to do some kind of analysis on its results. This analysis can be general or very specific (e.g. a hypothesis test). Can be linked to files, data, that belong to it." ;
rdfs:comment "Study is a collection of runs that belong together to do some kind of analysis on its results. This analysis can be general or very specific (e.g. a hypothesis test). Can be linked to files, data, that belong to it." .
### http://www.w3.org/ns/mls#Task
:Task rdf:type owl:Class ;
rdfs:subClassOf :InformationEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty :definedOn ;
owl:someValuesFrom :Data
] ;
dct:description "Task is a formal description of a process that needs to be completed (e.g. based on inputs and outputs). A Task is any piece of work that needs to be addressed in the data mining process. In ML Schema, it is defined based on data." ;
rdfs:comment "Task is a formal description of a process that needs to be completed (e.g. based on inputs and outputs). A Task is any piece of work that needs to be addressed in the data mining process. In ML Schema, it is defined based on data." .
#################################################################
# Annotations
#################################################################
<http://purl.org/dc/elements/1.1/> dct:publisher <http://purl.org/dc/aboutdcmi#DCMI> ;
dct:title "Dublin Core Metadata Element Set, Version 1.1"@en ;
dct:modified "2012-06-14"^^xsd:date .
<http://purl.org/dc/elements/1.1/contributor> rdfs:label "Contributor"@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#contributor-006> ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
rdfs:comment "An entity responsible for making contributions to the resource."@en ;
dct:description "Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity."@en ;
dct:modified "2008-01-14"^^xsd:date ;
dct:issued "1999-07-02"^^xsd:date ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> .
<http://purl.org/dc/elements/1.1/coverage> dct:hasVersion <http://dublincore.org/usage/terms/history/#coverage-006> ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:modified "2008-01-14"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
rdfs:comment "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant."@en ;
dct:description "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges."@en ;
dct:issued "1999-07-02"^^xsd:date ;
rdfs:label "Coverage"@en .
<http://purl.org/dc/elements/1.1/creator> dct:modified "2008-01-14"^^xsd:date ;
rdfs:label "Creator"@en ;
rdfs:comment "An entity primarily responsible for making the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:description "Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity."@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#creator-006> ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:issued "1999-07-02"^^xsd:date .
<http://purl.org/dc/elements/1.1/date> dct:issued "1999-07-02"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:modified "2008-01-14"^^xsd:date ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
rdfs:comment "A point or period of time associated with an event in the lifecycle of the resource."@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#date-006> ;
dct:description "Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]."@en ;
rdfs:label "Date"@en .
<http://purl.org/dc/elements/1.1/description> dct:description "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:issued "1999-07-02"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
rdfs:comment "An account of the resource."@en ;
dct:modified "2008-01-14"^^xsd:date ;
rdfs:label "Description"@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#description-006> .
<http://purl.org/dc/elements/1.1/format> dct:issued "1999-07-02"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:modified "2008-01-14"^^xsd:date ;
rdfs:label "Format"@en ;
rdfs:comment "The file format, physical medium, or dimensions of the resource."@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#format-007> ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:description "Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]."@en .
<http://purl.org/dc/elements/1.1/identifier> dct:hasVersion <http://dublincore.org/usage/terms/history/#identifier-006> ;
dct:description "Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. "@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
rdfs:comment "An unambiguous reference to the resource within a given context."@en ;
dct:issued "1999-07-02"^^xsd:date ;
dct:modified "2008-01-14"^^xsd:date ;
rdfs:label "Identifier"@en ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en .
<http://purl.org/dc/elements/1.1/language> dct:modified "2008-01-14"^^xsd:date ;
dct:issued "1999-07-02"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
rdfs:label "Language"@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#language-007> ;
dct:description "Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
rdfs:comment "A language of the resource."@en ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc4646.txt> .
<http://purl.org/dc/elements/1.1/publisher> dct:hasVersion <http://dublincore.org/usage/terms/history/#publisher-006> ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:issued "1999-07-02"^^xsd:date ;
dct:modified "2008-01-14"^^xsd:date ;
rdfs:label "Publisher"@en ;
dct:description "Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
rdfs:comment "An entity responsible for making the resource available."@en .
<http://purl.org/dc/elements/1.1/relation> dct:hasVersion <http://dublincore.org/usage/terms/history/#relation-006> ;
rdfs:label "Relation"@en ;
dct:description "Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. "@en ;
dct:modified "2008-01-14"^^xsd:date ;
dct:issued "1999-07-02"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
rdfs:comment "A related resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> .
<http://purl.org/dc/elements/1.1/rights> dct:hasVersion <http://dublincore.org/usage/terms/history/#rights-006> ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:description "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights."@en ;
dct:issued "1999-07-02"^^xsd:date ;
rdfs:label "Rights"@en ;
dct:modified "2008-01-14"^^xsd:date ;
rdfs:comment "Information about rights held in and over the resource."@en .
<http://purl.org/dc/elements/1.1/source> dct:hasVersion <http://dublincore.org/usage/terms/history/#source-006> ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
rdfs:comment "A related resource from which the described resource is derived."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:modified "2008-01-14"^^xsd:date ;
dct:description "The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system."@en ;
dct:issued "1999-07-02"^^xsd:date ;
rdfs:label "Source"@en .
<http://purl.org/dc/elements/1.1/subject> dct:description "Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary."@en ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:issued "1999-07-02"^^xsd:date ;
rdfs:label "Subject"@en ;
rdfs:comment "The topic of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:modified "2012-06-14"^^xsd:date ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#subject-007> .
<http://purl.org/dc/elements/1.1/title> rdfs:comment "A name given to the resource."@en ;
dct:modified "2008-01-14"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ;
dct:issued "1999-07-02"^^xsd:date ;
rdfs:label "Title"@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#title-006> ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> .
<http://purl.org/dc/elements/1.1/type> rdfs:comment "The nature or genre of the resource."@en ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#type-006> ;
rdfs:label "Type"@en ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
dct:description "Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element."@en ;
dct:issued "1999-07-02"^^xsd:date ;
dct:modified "2008-01-14"^^xsd:date ;
<http://www.w3.org/2004/02/skos/core#note> "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointClasses ;
owl:members ( :Algorithm
:Data
:EvaluationMeasure
:EvaluationProcedure
:EvaluationSpecification
:HyperParameter
:HyperParameterSetting
:Implementation
:Model
:ModelEvaluation
:Software
:Task
)
] .
[ rdf:type owl:AllDisjointClasses ;
owl:members ( :DataCharacteristic
:ImplementationCharacteristic
:ModelCharacteristic
)
] .
[ rdf:type owl:AllDisjointClasses ;
owl:members ( :Experiment
:Run
:Study
)
] .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi