From: <jen...@us...> - 2011-07-25 08:52:46
|
Revision: 2959 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=2959&view=rev Author: jenslehmann Date: 2011-07-25 08:52:39 +0000 (Mon, 25 Jul 2011) Log Message: ----------- various small changes Modified Paths: -------------- trunk/interfaces/doc/manual/manual.tex trunk/test/mammographic/train.conf Removed Paths: ------------- trunk/interfaces/log/ Property Changed: ---------------- trunk/autosparql/war/ trunk/scripts/ Property changes on: trunk/autosparql/war ___________________________________________________________________ Modified: svn:ignore - org.dllearner.autosparql.Application + app cache org.dllearner.autosparql.Application Modified: trunk/interfaces/doc/manual/manual.tex =================================================================== --- trunk/interfaces/doc/manual/manual.tex 2011-07-21 12:00:32 UTC (rev 2958) +++ trunk/interfaces/doc/manual/manual.tex 2011-07-25 08:52:39 UTC (rev 2959) @@ -29,6 +29,8 @@ \pagestyle{scrheadings} \automark{section} +\graphicspath{{../../../images/}} + \newcommand{\todo}[1]{\textbf{[ToDo: #1]}} \begin{document} @@ -98,7 +100,7 @@ DL-Learner (see also~\cite{dllearner_jmlr}) consists of core functionality, which provides Machine Learning algorithms for solving the learning problem, support for different knowledge base formats, an OWL library, and reasoner interfaces. There are several interfaces for accessing this functionality, a couple of tools which use the DL-Learner algorithms, and a set of convenience scripts. The general structure is illustrated in Figure \ref{fig:structure}. \begin{figure} - \includegraphics[width=\textwidth]{../../resources/structure_print} + \includegraphics[width=\textwidth]{structure_print} \caption{Overall structure of the DL-Learner software.} \label{fig:structure} \end{figure} @@ -108,7 +110,7 @@ There are four types of components (knowledge source, reasoning service, learning problem, learning algorithm). For each type, there are several implemented components and each component can have its own configuration options as illustrated in Figure \ref{fig:components}. Configuration options can be used to change parameters/settings of a component. In Section \ref{sec:components}, we describe the components in DL-Learner and their configuration options. \begin{figure} - \includegraphics[width=\textwidth]{../../resources/components_print} + \includegraphics[width=\textwidth]{components_print} \caption{The architecture of DL-Learner is based on four component types, which can each have their own configuration options. DL-Learner uses a component manager to organise all components.} \label{fig:components} \end{figure} @@ -203,7 +205,7 @@ \begin{figure} \centering - \includegraphics[width=.8\textwidth]{../../resources/screenshots/gui_algorithm} + \includegraphics[width=.8\textwidth]{screenshots/gui_algorithm} \caption{GUI screenshot showing the learning algorithm tab. The UI allows you to set different options and then proceed to the next tab and execute the algorithm.} \label{fig:gui} \end{figure} Property changes on: trunk/scripts ___________________________________________________________________ Modified: svn:ignore - target scripts.iml .classpath .project .settings + target log scripts.iml .classpath .project .settings Modified: trunk/test/mammographic/train.conf =================================================================== --- trunk/test/mammographic/train.conf 2011-07-21 12:00:32 UTC (rev 2958) +++ trunk/test/mammographic/train.conf 2011-07-25 08:52:39 UTC (rev 2959) @@ -1,12 +1,23 @@ import("mammographic.owl"); reasoner = fastInstanceChecker; -algorithm = refexamples; -refexamples.noisePercentage = 5; +// algorithm = refexamples; +refexamples.noisePercentage = 30; refexamples.startClass = "http://dl-learner.org/mammographic#Patient"; -refexamples.writeSearchTree = false; -refexamples.searchTreeFile = "log/mammographic/searchTree.log"; +refexamples.writeSearchTree = true; +// refexamples.replaceSearchTree = true; +refexamples.searchTreeFile = "log/mammo_ocel_searchTree.log"; +algorithm = celoe; +celoe.noisePercentage = 22; +celoe.expansionPenaltyFactor = 0.2; // 02; +celoe.terminateOnNoiseReached = true; +celoe.maxExecutionTimeInSeconds = 0; +// celoe.startClass = "http://dl-learner.org/mammographic#Patient"; +celoe.writeSearchTree = true; +celoe.replaceSearchTree = true; +celoe.searchTreeFile = "log/mammo_celoe2_searchTree.log"; + +"http://dl-learner.org/mammographic#Patient550" +"http://dl-learner.org/mammographic#Patient756" -"http://dl-learner.org/mammographic#Patient755" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |