-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbenchmark.ttl
More file actions
44 lines (37 loc) · 1.83 KB
/
benchmark.ttl
File metadata and controls
44 lines (37 loc) · 1.83 KB
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix gerbil: <http://w3id.org/gerbil/vocab#> .
@prefix hobbit: <http://w3id.org/hobbit/vocab#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
<http://project-hobbit.eu/mlwin/benchmark> a hobbit:Benchmark ;
rdfs:label "MLwin Benchmark"@en ;
rdfs:comment "Created out of https://github.com/hobbit-project/mlwin"@en ;
hobbit:imageName "git.project-hobbit.eu:4567/sadeghi.afshin/mlwin/benchmark-controller" ;
hobbit:usesImage "git.project-hobbit.eu:4567/sadeghi.afshin/mlwin/datagen" ;
hobbit:usesImage "git.project-hobbit.eu:4567/sadeghi.afshin/mlwin/taskgen" ;
hobbit:usesImage "git.project-hobbit.eu:4567/sadeghi.afshin/mlwin/eval-storage" ;
hobbit:usesImage "git.project-hobbit.eu:4567/sadeghi.afshin/mlwin/eval-module" ;
hobbit:hasAPI <http://project-hobbit.eu/mlwin/API> ;
hobbit:version "v1.0"@en ;
hobbit:measuresKPI <http://project-hobbit.eu/mlwin/mrr> ;
hobbit:measuresKPI <http://project-hobbit.eu/mlwin/hitAt1> ;
hobbit:measuresKPI <http://project-hobbit.eu/mlwin/hitAt3> ;
hobbit:measuresKPI <http://project-hobbit.eu/mlwin/hitAt10> .
<http://project-hobbit.eu/mlwin/API> a hobbit:API .
<http://project-hobbit.eu/mlwin/mrr> a hobbit:KPI ;
rdfs:label "mrr"@en ;
rdfs:comment "hit comment"@en ;
rdfs:range xsd:float .
<http://project-hobbit.eu/mlwin/hitAt10> a hobbit:KPI ;
rdfs:label "hit @ 10"@en ;
rdfs:comment "hit comment"@en ;
rdfs:range xsd:float .
<http://project-hobbit.eu/mlwin/hitAt3> a hobbit:KPI ;
rdfs:label "hit @ 3"@en ;
rdfs:comment "hit comment"@en ;
rdfs:range xsd:float .
<http://project-hobbit.eu/mlwin/hitAt1> a hobbit:KPI ;
rdfs:label "hit @ 1"@en ;
rdfs:comment "hit comment"@en ;
rdfs:range xsd:float .