@prefix : . @prefix dct: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @base . rdf:type owl:Ontology ; owl:versionIRI ; 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 ; 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 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 ################################################################# dct:publisher ; dct:title "Dublin Core Metadata Element Set, Version 1.1"@en ; dct:modified "2012-06-14"^^xsd:date . rdfs:label "Contributor"@en ; dct:hasVersion ; "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 . dct:hasVersion ; rdfs:isDefinedBy ; dct:modified "2008-01-14"^^xsd:date ; "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 . dct:modified "2008-01-14"^^xsd:date ; rdfs:label "Creator"@en ; rdfs:comment "An entity primarily responsible for making the resource."@en ; rdfs:isDefinedBy ; 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 ; "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:issued "1999-07-02"^^xsd:date ; "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 ; rdfs:comment "A point or period of time associated with an event in the lifecycle of the resource."@en ; dct:hasVersion ; 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 . 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 ; dct:issued "1999-07-02"^^xsd:date ; "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 . dct:issued "1999-07-02"^^xsd:date ; "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 ; rdfs:isDefinedBy ; 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 . dct:hasVersion ; dct:description "Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. "@en ; rdfs:isDefinedBy ; 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 ; "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 ; dct:issued "1999-07-02"^^xsd:date ; "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 ; dct:description "Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]."@en ; rdfs:isDefinedBy ; rdfs:comment "A language of the resource."@en ; rdfs:seeAlso . dct:hasVersion ; "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 ; rdfs:comment "An entity responsible for making the resource available."@en . dct:hasVersion ; 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 ; "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 . dct:hasVersion ; rdfs:isDefinedBy ; "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 . dct:hasVersion ; "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 ; 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 . 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 ; "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 ; dct:modified "2012-06-14"^^xsd:date ; dct:hasVersion . rdfs:comment "A name given to the resource."@en ; dct:modified "2008-01-14"^^xsd:date ; "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 ; rdfs:isDefinedBy . rdfs:comment "The nature or genre of the resource."@en ; dct:hasVersion ; rdfs:label "Type"@en ; rdfs:isDefinedBy ; 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 ; "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