# We licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # # Copyright by Henrik Jürges (juerges.henrik@gmail.com) 2017 # This ontology stores meta information about multiple NIF documents called datasets. @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix xsd: . @prefix dcterms: . @prefix dc: . @prefix nif: . @prefix hfts: . @prefix prov: . @prefix lvont: . @prefix marl: . @prefix fise: . @prefix itsrdf: . @prefix skos: . @prefix oa: . @prefix vann: . a owl:Ontology ; owl:versionInfo "0.1.0" ; vann:preferredNamespacePrefix "hfts" ; vann:preferredNamespaceUri "https://raw.githubusercontent.com/santifa/hfts/master/ont/hfts.ttl#" ; vann:changes dcterms:license ; dcterms:license ; dcterms:title "Hfts ontology for annotation meta information"@en ; rdfs:label "Hfts ontology for annotation meta information"@en ; rdfs:isDefinedBy ; rdfs:comment """This ontology is intended to store meta information about annotations."""@en ; dc:creator "Henrik Jürges" ; dc:publisher "HPI, University Potsdam" ; dc:rights """This ontology is licensed under Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0) and CC-BY (http://creativecommons.org/licenses/by/3.0/)"""@en ; ############################## # Base Classes ############################## hfts:Dataset a owl:Class ; rdfs:label "Dataset"@en ; rdfs;comment """Individuals of this class describing meta informations for collections of documents.""" ################### # Basic Properties ################### hfts:referenceDocuments a owl:DatatypeProperty ; a owl:functionalProperty ; rdfs:label "Documents which are used to compute dataset characteristics."@en ; rdfs:domain hfts:Dataset ; rdfs:range nif:Context , nif:String , nif:RFC5147String ; ############### # Dataset level ############### hfts:notAnnotated a owl:DatatypeProperty ; rdfs:label "The amount of strings without annotations within a dataset."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:microDensity a owl:DatatypeProperty ; rdfs:label "Describes the amount of annotations within the words in the dataset."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:macroDensity a owl:DatatypeProperty ; rdfs:label "Describes the amount of annotations within the words in the dataset."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:microAmbiguityEntities a owl:DatatypeProperty ; rdfs:label "The average amount of surface forms per entity."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:macroAmbiguityEntities a owl:DatatypeProperty ; rdfs:label "The average amount of surface forms per entity."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:microAmbiguitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average amount of entities per surface form."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:macroAmbiguitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average amount of entities per surface form."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:microDiversityEntities a owl:DatatypeProperty ; rdfs:label "The average diversity of entities."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:macroDiversityEntities a owl:DatatypeProperty ; rdfs:label "The average diversity of entities."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:microDiversitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average diversity of surface forms."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:macroDiversitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average diversity of surface form."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:microMaxRecall a owl:DatatypeProperty ; rdfs:label "The maximal achivable recall for the dataset."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; hfts:macroMaxRecall a owl:DatatypeProperty ; rdfs:label "The maximal achivable recall for the dataset."@en ; rdfs:domain hfts:Dataset ; rdfs:range xsd:double ; ################ # Document level ################ hfts:density a owl:DatatypeProperty ; rdfs:label "Describes the amount of annotations within the words in the dataset."@en ; rdfs:domain nif:Context , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; hfts:ambiguityEntities a owl:DatatypeProperty ; rdfs:label "The average amount of surface forms per entity."@en ; rdfs:domain nif:Context , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; hfts:ambiguitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average amount of entities per surface form."@en ; rdfs:domain nif:Context , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; hfts:diversityEntities a owl:DatatypeProperty ; rdfs:label "The average diversity of entities."@en ; rdfs:domain nif:Context , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; hfts:diversitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average diversity of surface form."@en ; rdfs:domain nif:Context , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; hfts:macRecall a owl:DatatypeProperty ; rdfs:label "The maximal achivable recall for a document."@en ; rdfs:domain nif:Context , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; ############### # Word level ############### hfts:ambiguityEntities a owl:DatatypeProperty ; rdfs:label "The average amount of surface forms per entity."@en ; rdfs:domainnif:Phrase , nif:String , nif:RFC5147String ; rdfs:range xsd:integer ; hfts:ambiguitySurfaceForms a owl:DatatypeProperty ; rdfs:label "The average amount of entities per surface form."@en ; rdfs:domain nif:Phrase , nif:String , nif:RFC5147String ; rdfs:range xsd:integer ; hfts:pagerank a owl:DatatypeProperty ; rdfs:label "PageRank score for an entity mention."@en ; rdfs:domainnif:Phrase , nif:String , nif:RFC5147String ; rdfs:range xsd:double ; hfts:hits a owl:DatatypeProperty ; rdfs:label "Hubs and Authority score for an entity metion."@en ; rdfs:domain nif:Phrase , nif:String , nif:RFC5147String ; rdfs:range xsd:double ;