nlp-lab/Jonas_Solutions/output.ttl

95 lines
3.1 KiB
Turtle

@prefix dct: <http://purl.org/dc/terms/> .
@prefix mexalgo: <http://mex.aksw.org/mex-algo#> .
@prefix mexcore: <http://mex.aksw.org/mex-core#> .
@prefix mexperf: <http://mex.aksw.org/mex-perf#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix this: <http://mex.aksw.org/examples/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
this:measure1 a mexcore:PerformanceMeasure ;
mexperf:accuracy "0.8478535353535354"^^xsd:float ;
mexperf:precision "0.8225446428571429"^^xsd:float ;
mexperf:recall "0.8998778998778999"^^xsd:float ;
prov:wasGeneratedBy this:conf1 .
this:measure2 a mexcore:PerformanceMeasure ;
mexperf:accuracy "0.5776805251641138"^^xsd:float ;
mexperf:precision "0.5369458128078818"^^xsd:float ;
mexperf:recall "0.5240384615384616"^^xsd:float ;
prov:wasGeneratedBy this:conf2 .
this:measure3a a mexcore:PerformanceMeasure ;
mexperf:accuracy "0.5391414141414141"^^xsd:float ;
mexperf:precision "0.5341130604288499"^^xsd:float ;
mexperf:recall "0.3581699346405229"^^xsd:float ;
prov:wasGeneratedBy this:conf3a .
this:measure3b a mexcore:PerformanceMeasure ;
mexperf:accuracy "0.5142231947483589"^^xsd:float ;
mexperf:precision "0.25"^^xsd:float ;
mexperf:recall "0.03365384615384615"^^xsd:float ;
prov:wasGeneratedBy this:conf3b .
this:measure4 a mexcore:PerformanceMeasure ;
mexperf:accuracy "0.7714856762158561"^^xsd:float ;
mexperf:precision "0.7680865449628127"^^xsd:float ;
mexperf:recall "0.7680865449628127"^^xsd:float ;
prov:wasGeneratedBy this:conf4 .
this:Dataset03 a mexcore:dataset ;
rdfs:label "Dataset03" .
this:conf1 a mexcore:ExperimentConfiguration ;
rdfs:label "conf1" ;
prov:used this:Dataset01,
this:model_a ;
prov:wasStartedBy this:jonas_weinz_task_2 .
this:conf2 a mexcore:ExperimentConfiguration ;
rdfs:label "conf2" ;
prov:used this:Dataset02,
this:model_b ;
prov:wasStartedBy this:jonas_weinz_task_2 .
this:conf3a a mexcore:ExperimentConfiguration ;
rdfs:label "conf3a" ;
prov:used this:Dataset01,
this:model_b ;
prov:wasStartedBy this:jonas_weinz_task_2 .
this:conf3b a mexcore:ExperimentConfiguration ;
rdfs:label "conf3b" ;
prov:used this:Dataset02,
this:model_a ;
prov:wasStartedBy this:jonas_weinz_task_2 .
this:conf4 a mexcore:ExperimentConfiguration ;
rdfs:label "conf4" ;
prov:used this:Dataset03,
this:model_c ;
prov:wasStartedBy this:jonas_weinz_task_2 .
this:model_c a mexalgo:Algorithm ;
rdfs:label "model_c" ;
dct:identifier "MLPClassifier" .
this:Dataset01 a mexcore:dataset ;
rdfs:label "Dataset01" .
this:Dataset02 a mexcore:dataset ;
rdfs:label "Dataset02" .
this:model_a a mexalgo:Algorithm ;
rdfs:label "model_a" ;
dct:identifier "RandomForestClassifier" .
this:model_b a mexalgo:Algorithm ;
rdfs:label "model_b" ;
dct:identifier "MLPClassifier" .
this:jonas_weinz_task_2 a mexcore:Experiment .