From: <ku...@us...> - 2008-04-22 17:35:02
|
Revision: 813 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=813&view=rev Author: kurzum Date: 2008-04-22 10:34:43 -0700 (Tue, 22 Apr 2008) Log Message: ----------- small changes Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/scripts/SPARQLMassLearning.java trunk/src/dl-learner/org/dllearner/utilities/LearnSparql.java Modified: trunk/src/dl-learner/org/dllearner/scripts/SPARQLMassLearning.java =================================================================== --- trunk/src/dl-learner/org/dllearner/scripts/SPARQLMassLearning.java 2008-04-22 17:29:06 UTC (rev 812) +++ trunk/src/dl-learner/org/dllearner/scripts/SPARQLMassLearning.java 2008-04-22 17:34:43 UTC (rev 813) @@ -28,8 +28,8 @@ //vars boolean useRelated = true; boolean useSuperClasses = true; - int poslimit = 50; - int neglimit = 100; + int poslimit = 300; + int neglimit = 600; try { Modified: trunk/src/dl-learner/org/dllearner/utilities/LearnSparql.java =================================================================== --- trunk/src/dl-learner/org/dllearner/utilities/LearnSparql.java 2008-04-22 17:29:06 UTC (rev 812) +++ trunk/src/dl-learner/org/dllearner/utilities/LearnSparql.java 2008-04-22 17:34:43 UTC (rev 813) @@ -69,9 +69,9 @@ cm.applyConfigEntry(la,"useExistsConstructor",true); cm.applyConfigEntry(la,"useCardinalityRestrictions",false); cm.applyConfigEntry(la,"useNegation",false); - cm.applyConfigEntry(la,"minExecutionTimeInSeconds",100); - cm.applyConfigEntry(la,"maxExecutionTimeInSeconds",100); - cm.applyConfigEntry(la,"guaranteeXgoodDescriptions",1); + cm.applyConfigEntry(la,"minExecutionTimeInSeconds",0); + cm.applyConfigEntry(la,"maxExecutionTimeInSeconds",1800); + cm.applyConfigEntry(la,"guaranteeXgoodDescriptions",999999); //cm.applyConfigEntry(la,"quiet",false); if(ignoredConcepts.size()>0) @@ -82,7 +82,7 @@ la.start(); //System.out.println("best"+la(20)); - ((ExampleBasedROLComponent)la).printBestSolutions(200); + ((ExampleBasedROLComponent)la).printBestSolutions(10000); }catch (Exception e) {e.printStackTrace();} //System.out.println( la.getBestSolution());; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |