From: <jen...@us...> - 2009-05-06 10:37:23
|
Revision: 1739 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=1739&view=rev Author: jenslehmann Date: 2009-05-06 10:37:08 +0000 (Wed, 06 May 2009) Log Message: ----------- fixed problem in GUI help in release Modified Paths: -------------- trunk/build.xml trunk/src/dl-learner/org/dllearner/gui/tutorial.html trunk/src/dl-learner/org/dllearner/test/junit/ExampleTests.java Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2009-05-06 09:50:58 UTC (rev 1738) +++ trunk/build.xml 2009-05-06 10:37:08 UTC (rev 1739) @@ -118,7 +118,7 @@ <!-- we also need to copy some images, which should be included in dllearner.jar --> <copy toDir="classes_tmp" > - <fileset dir="${source_dir}" includes="**/*.gif"/> + <fileset dir="${source_dir}" includes="**/*.gif,**/*.html"/> </copy> <mkdir dir="${release_tmp_dir}"/> <mkdir dir="${release_tmp_dir}/lib/"/> Modified: trunk/src/dl-learner/org/dllearner/gui/tutorial.html =================================================================== --- trunk/src/dl-learner/org/dllearner/gui/tutorial.html 2009-05-06 09:50:58 UTC (rev 1738) +++ trunk/src/dl-learner/org/dllearner/gui/tutorial.html 2009-05-06 10:37:08 UTC (rev 1739) @@ -27,21 +27,23 @@ <p> <i>Example:</i><br /> Suppose you want to learn the definition of a class in an existing ontology. In this case, -you can proceed as follows:<br /> -1. In the tab "Knowledge Source", choose an OWL file containing your ontology.<br /> -2. Click on the tab "Reasoner". We recommend to the defaults unchanged here, but you - are free to modify the settings and choose the reasoner you like.<br /> -3. Click on the tab "Learning Problem". This may take a while, since the reasoner will now +you can proceed as follows: +<ol> +<li>In the tab "Knowledge Source", choose an OWL file containing your ontology.</li> +<li>Click on the tab "Reasoner". We recommend to the defaults unchanged here, but you + are free to modify the settings and choose the reasoner you like.</li> +<li>Click on the tab "Learning Problem". This may take a while, since the reasoner will now read the ontology you specified in step 1. Since you want to learn the definition of a class, use the drop down box and select "Class Learning Problem". After this, set the value of - the option "classToDescribe" to the desired class.<br /> -4. Click on the "Learning Algorithm" tab. Here, you can select a learning algorithm and - modify its settings. If you are unsure what to do, just stick with the default values.<br /> -5. Click on the "Run" tab and press the "Start" button. The algorithm is now running + the option "classToDescribe" to the desired class.</li> +<li>Click on the "Learning Algorithm" tab. Here, you can select a learning algorithm and + modify its settings. If you are unsure what to do, just stick with the default values.</li> +<li>Click on the "Run" tab and press the "Start" button. The algorithm is now running and the currently best solutions found are displayed in the panel below (using Manchester OWL Syntax) along with some reasoning statistics. Depending on the learning algorithm and settings, the run may not terminate (in reasonable time). In such a case you can use - the "Stop" button to gracefully stop the algorithm.<br /> + the "Stop" button to gracefully stop the algorithm.</li> +</ol> For explanations of components in each step, please consult the DL-Learner manual. </p><br /> Modified: trunk/src/dl-learner/org/dllearner/test/junit/ExampleTests.java =================================================================== --- trunk/src/dl-learner/org/dllearner/test/junit/ExampleTests.java 2009-05-06 09:50:58 UTC (rev 1738) +++ trunk/src/dl-learner/org/dllearner/test/junit/ExampleTests.java 2009-05-06 10:37:08 UTC (rev 1739) @@ -70,7 +70,7 @@ boolean randomize = true; // GPs can be excluded temporarily (because those tests are very time-consuming) - boolean testGP = false; + boolean testGP = true; // we use a logger, which outputs few messages (warnings, errors) SimpleLayout layout = new SimpleLayout(); @@ -130,7 +130,7 @@ // ignore.add("./examples/family-benchmark/Aunt.conf"); // did not terminate so far (waited 45 minutes) => disallowing ALL helps (TODO find out details) // ignore.add("examples/krk/KRK_ZERO_against_1to5_fastInstance.conf"); // stack overflow // ignore.add("examples/krk/KRK_ONE_ZERO_fastInstance.conf"); // stack overflow - ignore.add("examples/krk/"); // too many stack overflows +// ignore.add("examples/krk/"); // too many stack overflows int failedCounter = 0; int counter = 1; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |