From: <jen...@us...> - 2009-01-25 19:16:40
|
Revision: 1582 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=1582&view=rev Author: jenslehmann Date: 2009-01-25 19:16:38 +0000 (Sun, 25 Jan 2009) Log Message: ----------- some tests on large ontologies Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/scripts/evaluation/ELOperatorBenchmark.java Modified: trunk/src/dl-learner/org/dllearner/scripts/evaluation/ELOperatorBenchmark.java =================================================================== --- trunk/src/dl-learner/org/dllearner/scripts/evaluation/ELOperatorBenchmark.java 2009-01-25 14:15:39 UTC (rev 1581) +++ trunk/src/dl-learner/org/dllearner/scripts/evaluation/ELOperatorBenchmark.java 2009-01-25 19:16:38 UTC (rev 1582) @@ -79,13 +79,30 @@ // real world ontology tests // String base = "/home/jl/promotion/ontologien/el_benchmark/"; - String[] onts = new String[] {"galen2", "cton", "earthrealm", "fma_owl_dl_component_1.4.0", - "iso_19115", "nci", "process", "pto", "tambis", "thesaurus", "transportation"}; + String[] onts = new String[] { + // is ok at length 10 + "galen2", + // is ok at length 8 + "cton", + // is ok at length 8 + "earthrealm2", + // cannot even be read "fma_owl_dl_component_1.4.0", + // ontology file seems broken "iso_19115", + // ontology file seems broken "nci", + // is ok at length 8 + "process", + // takes too long to read in "pto", + // is ok at length 8 + "tambis", + // ontology file seems broken "thesaurus", + // is ok at length 8 + "transportation" + }; for(String ont : onts) { String file = base + ont + ".owl"; rand = new Random(1); - testOntology(statDir, file, 100, 10); + testOntology(statDir, file, 100, 8); } // artificial ontology tests // @@ -100,7 +117,7 @@ for(int roleCount : roleCounts) { String file = base + "c" + conceptCount + "_r" + roleCount + ".owl"; rand = new Random(1); - testOntology(statDir, file, 100, 10); + testOntology(statDir, file, 100, 9); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |