From: <ku...@us...> - 2008-05-16 11:04:56
|
Revision: 877 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=877&view=rev Author: kurzum Date: 2008-05-16 04:04:35 -0700 (Fri, 16 May 2008) Log Message: ----------- Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/utilities/AutomaticExampleFinderSPARQL.java Modified: trunk/src/dl-learner/org/dllearner/utilities/AutomaticExampleFinderSPARQL.java =================================================================== --- trunk/src/dl-learner/org/dllearner/utilities/AutomaticExampleFinderSPARQL.java 2008-05-16 09:59:28 UTC (rev 876) +++ trunk/src/dl-learner/org/dllearner/utilities/AutomaticExampleFinderSPARQL.java 2008-05-16 11:04:35 UTC (rev 877) @@ -22,7 +22,7 @@ private SortedSet<String> posExamples; private SortedSet<String> negExamples; public SortedSet<String> totalSKOSset; - private int limit=2000; + private int limit=1000; public AutomaticExampleFinderSPARQL(SparqlEndpoint se){ @@ -318,7 +318,7 @@ " a " + "?subject " + "\n" + - "}"; + "} LIMIT "+limit; SparqlQuery sq = new SparqlQuery(query, se); //System.out.println(query); String JSON = c.executeSparqlQuery(sq); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |