From: <jen...@us...> - 2011-09-02 14:04:19
|
Revision: 3238 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3238&view=rev Author: jenslehmann Date: 2011-09-02 14:04:13 +0000 (Fri, 02 Sep 2011) Log Message: ----------- moved some non-working (not converted) examples back to test Modified Paths: -------------- trunk/examples/arch/arch_owl.conf Added Paths: ----------- trunk/test/cross-benchmark/ trunk/test/epc/ trunk/test/family-benchmark/ trunk/test/krk/ trunk/test/nlp2rdf/ Removed Paths: ------------- trunk/examples/cross-benchmark/ trunk/examples/epc/ trunk/examples/family-benchmark/ trunk/examples/krk/ trunk/examples/nlp2rdf/ Modified: trunk/examples/arch/arch_owl.conf =================================================================== --- trunk/examples/arch/arch_owl.conf 2011-09-02 13:53:09 UTC (rev 3237) +++ trunk/examples/arch/arch_owl.conf 2011-09-02 14:04:13 UTC (rev 3238) @@ -16,15 +16,21 @@ * Copyright (C) 2007, Sebastian Hellmann */ -ocel.writeSearchTree = true; -ocel.searchTreeFile = "log/test.txt"; +// declare some prefixes to use as abbreviations +prefixes = [ ("ex","http://localhost/foo#") ] -/** background knowledge **/ -import("arch.owl"); +// knowledge source definition +ks.type = "OWL File" +ks.fileName = "arch.owl" -/** examples **/ -+c1 -+c4 --c2 --c3 --c5 +// reasoner +reasoner.type = "fast instance checker" +reasoner.sources = { ks } + +// learning problem +lp.type = "posNegStandard" +lp.positiveExamples = { "ex:c1", "ex:c4" } +lp.negativeExamples = { "ex:c2", "ex:c3", "ex:c5" } + +// create learning algorithm to run +alg.type = "ocel" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |