comparison examples/browser/ontology/audiodb.owl @ 642:ec6860ff36ff

Latest audiodb ontology
author mas01mj
date Thu, 08 Oct 2009 16:42:50 +0000
parents 901803e1305f
children 1a251dd217c6
comparison
equal deleted inserted replaced
641:1f70abc1ba32 642:ec6860ff36ff
6 <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> 6 <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
7 <!ENTITY owl "http://www.w3.org/2002/07/owl#"> 7 <!ENTITY owl "http://www.w3.org/2002/07/owl#">
8 <!ENTITY base "http://omras2.gold.ac.uk/ontology/audiodb#"> 8 <!ENTITY base "http://omras2.gold.ac.uk/ontology/audiodb#">
9 <!ENTITY dc "http://purl.org/dc/elements/1.1/"> 9 <!ENTITY dc "http://purl.org/dc/elements/1.1/">
10 <!ENTITY dct "http://purl.org/dc/terms/"> 10 <!ENTITY dct "http://purl.org/dc/terms/">
11 <!ENTITY off "http://purl.org/ontology/off/">
12 <!ENTITY foaf "http://xmlns.com/foaf/0.1/">
13 <!ENTITY doap "http://usefulinc.com/ns/doap#">
11 ]> 14 ]>
12
13
14 15
15 <rdf:RDF xmlns:rdf="&rdf;" 16 <rdf:RDF xmlns:rdf="&rdf;"
16 xmlns:rdfs="&rdfs;" 17 xmlns:rdfs="&rdfs;"
17 xmlns:owl="&owl;" 18 xmlns:owl="&owl;"
18 xmlns:xsd="&xsd;" 19 xmlns:xsd="&xsd;"
19 xmlns:dat="&dat;"
20 xml:base="&base;" 20 xml:base="&base;"
21 xmlns:dc="&dc;" 21 xmlns:dc="&dc;"
22 xmlns:dct="&dct;"> 22 xmlns:dct="&dct;"
23 23 xmlns:foaf="&foaf;"
24 xmlns:off="&off;">
24 25
25 <owl:Ontology rdf:about="&base;"> 26 <owl:Ontology rdf:about="&base;">
26 <rdfs:label>AudioDB Ontology</rdfs:label> 27 <rdfs:label>AudioDB Ontology</rdfs:label>
27 <dc:title xml:lang="en">AudioDB Ontology</dc:title> 28 <dc:title xml:lang="en">AudioDB Ontology</dc:title>
28 <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description> 29 <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description>
32 </owl:Ontology> 33 </owl:Ontology>
33 34
34 <owl:Class rdf:ID="Database"> 35 <owl:Class rdf:ID="Database">
35 <rdfs:label>AudioDB</rdfs:label> 36 <rdfs:label>AudioDB</rdfs:label>
36 <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment> 37 <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment>
37 <rdfs:subClassOf rdf:resource="foaf:Document" /> 38 <rdfs:subClassOf rdf:resource="&foaf;Document" />
38 </owl:Class> 39 </owl:Class>
39 40
41 <owl:ObjectProperty rdf:ID="has-feature">
42 <rdfs:label>Has Feature</rdfs:label>
43 <rdfs:domain rdf:resource="#Database"/>
44 <rdfs:range rdf:resource="#Feature" />
45 </owl:ObjectProperty>
46
40 <owl:Class rdf:ID="Feature"> 47 <owl:Class rdf:ID="Feature">
41 <rdfs:label>Feature</rdfs:label> 48 <rdfs:label>Feature</rdfs:label>
42 <rdfs:comment>Information about an audio feature</rdfs:comment> 49 <rdfs:comment>Information about an audio feature</rdfs:comment>
43 </owl:Class> 50 </owl:Class>
44 51
45 <owl:ObjectProperty rdf:ID="window-type"> 52 <owl:ObjectProperty rdf:ID="extractor">
46 <rdfs:label>Window Type</rdfs:label> 53 <rdfs:label>Extractor</rdfs:label>
47 <rdfs:comment>This property indicates that there is some no link between the named Expressions</rdfs:comment> 54 <rdfs:domain rdf:resource="#Feature"/>
48 <owl:inverseOf rdf:resource="#is-not-linked-to"/> 55 <rdfs:domain rdf:resource="&doap;Version"/>
49 <rdfs:domain rdf:resource="#Expression"/>
50 <rdfs:range rdf:resource="#Expression"/>
51 </owl:ObjectProperty> 56 </owl:ObjectProperty>
57
58 <owl:ObjectProperty rdf:ID="window">
59 <rdfs:label>Window</rdfs:label>
60 <rdfs:domain rdf:resource="#Feature"/>
61 <rdfs:range rdf:resource="#Window"/>
62 </owl:ObjectProperty>
63
64 <owl:ObjectProperty rdf:ID="hop-size">
65 <rdfs:label>Hop Size</rdfs:label>
66 <rdfs:domain rdf:resource="#Feature"/>
67 <rdfs:range rdf:resource="&xsd;integer" />
68 </owl:ObjectProperty>
69
70 <owl:ObjectProperty rdf:ID="window-length">
71 <rdfs:label>Window Length</rdfs:label>
72 <rdfs:domain rdf:resource="#Feature"/>
73 <rdfs:range rdf:resource="&xsd;integer" />
74 </owl:ObjectProperty>
75
76 <owl:ObjectProperty rdf:ID="nfft">
77 <rdfs:label>nfft</rdfs:label>
78 <rdfs:domain rdf:resource="#Feature"/>
79 <rdfs:range rdf:resource="&xsd;integer" />
80 </owl:ObjectProperty>
81
82 <owl:ObjectProperty rdf:ID="segn">
83 <rdfs:label>segn</rdfs:label>
84 <rdfs:domain rdf:resource="#Feature"/>
85 <rdfs:range rdf:resource="&xsd;integer" />
86 </owl:ObjectProperty>
87
88 <owl:ObjectProperty rdf:ID="channel">
89 <rdfs:label>channel</rdfs:label>
90 <rdfs:domain rdf:resource="#Feature"/>
91 <rdfs:range rdf:resource="&xsd;integer" />
92 </owl:ObjectProperty>
93
94 <owl:ObjectProperty rdf:ID="dimension">
95 <rdfs:label>dimension</rdfs:label>
96 <rdfs:domain rdf:resource="#Feature"/>
97 <rdfs:range rdf:resource="&xsd;integer" />
98 </owl:ObjectProperty>
99
100 <owl:ObjectProperty rdf:ID="loedge">
101 <rdfs:label>loedge</rdfs:label>
102 <rdfs:domain rdf:resource="#Feature"/>
103 <rdfs:range rdf:resource="&xsd;double" />
104 </owl:ObjectProperty>
105
106 <owl:ObjectProperty rdf:ID="hiedge">
107 <rdfs:label>hiedge</rdfs:label>
108 <rdfs:domain rdf:resource="#Feature"/>
109 <rdfs:range rdf:resource="&xsd;double" />
110 </owl:ObjectProperty>
111
112 <owl:ObjectProperty rdf:ID="octaveres">
113 <rdfs:label>octaveres</rdfs:label>
114 <rdfs:domain rdf:resource="#Feature"/>
115 <rdfs:range rdf:resource="&xsd;double" />
116 </owl:ObjectProperty>
117
118 <owl:ObjectProperty rdf:ID="segmentation-type">
119 <rdfs:label>segmentation type</rdfs:label>
120 <rdfs:domain rdf:resource="#Feature"/>
121 <rdfs:range rdf:resource="#Segmentation" />
122 </owl:ObjectProperty>
123
124 <owl:Class rdf:ID="Segmentation">
125 <rdfs:label>Segmentation</rdfs:label>
126 </owl:Class>
127
128 <owl:Class rdf:ID="FrameSegmentation">
129 <rdfs:label>Frame Segmentation</rdfs:label>
130 <rdfs:subClassOf rdf:resource="#Segmentation" />
131 </owl:Class>
132
133 <owl:Class rdf:ID="BeatSegmentation">
134 <rdfs:label>Beat Segmentation</rdfs:label>
135 <rdfs:subClassOf rdf:resource="#Segmentation" />
136 </owl:Class>
137
138 <owl:Class rdf:ID="StructuralSegmentation">
139 <rdfs:label>Structural Segmentation</rdfs:label>
140 <rdfs:subClassOf rdf:resource="#Segmentation" />
141 </owl:Class>
142
143
144 <owl:Class rdf:ID="Window">
145 <rdfs:label>Window</rdfs:label>
146 </owl:Class>
147
148 <owl:Class rdf:ID="HammingWindow">
149 <rdfs:label>Hamming Window</rdfs:label>
150 <rdfs:subClassOf rdf:resource="#Window" />
151 </owl:Class>
52 152
53 <owl:Class rdf:ID="ChromogramFeature"> 153 <owl:Class rdf:ID="ChromogramFeature">
54 <rdfs:label>Chromogram Feature</rdfs:label> 154 <rdfs:label>Chromogram Feature</rdfs:label>
55 <rdfs:comment>Information about an audio feature</rdfs:comment> 155 <rdfs:subClassOf rdf:resource="#Feature" />
56 <rdfs:subClassOf rdf:resource="audiodb:Feature" />
57 </owl:Class> 156 </owl:Class>
58 157
59 <owl:Class rdf:ID="MFCCFeature"> 158 <owl:Class rdf:ID="MFCCFeature">
60 <rdfs:label>MFCC Feature</rdfs:label> 159 <rdfs:label>MFCC Feature</rdfs:label>
61 <rdfs:comment>Information about an audio feature</rdfs:comment> 160 <rdfs:subClassOf rdf:resource="#Feature" />
62 <rdfs:subClassOf rdf:resource="audiodb:Feature" />
63 </owl:Class> 161 </owl:Class>
64 162
65 <owl:Class rdf:ID="CQTFeature"> 163 <owl:Class rdf:ID="CQTFeature">
66 <rdfs:label>CQT Feature</rdfs:label> 164 <rdfs:label>CQT Feature</rdfs:label>
67 <rdfs:comment>Information about an audio feature</rdfs:comment> 165 <rdfs:subClassOf rdf:resource="#Feature" />
68 <rdfs:subClassOf rdf:resource="audiodb:Feature" />
69 </owl:Class> 166 </owl:Class>
70 167
71 </rdf:RDF> 168 </rdf:RDF>