From: <jen...@us...> - 2007-10-17 14:29:01
|
Revision: 231 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=231&view=rev Author: jenslehmann Date: 2007-10-17 07:28:58 -0700 (Wed, 17 Oct 2007) Log Message: ----------- small example for Daimler use case Added Paths: ----------- trunk/examples/daimler/motor.conf trunk/examples/daimler/motor.kb Added: trunk/examples/daimler/motor.conf =================================================================== --- trunk/examples/daimler/motor.conf (rev 0) +++ trunk/examples/daimler/motor.conf 2007-10-17 14:28:58 UTC (rev 231) @@ -0,0 +1,15 @@ +// learn superclass of super + +problem = posNegInclusion; + +import("motor.kb"); + +// pos examples: everything belonging to the superclass ++s1 ++s2 ++b1 ++b2 +// neg. examples: everything else +-d1 +-d2 +-d3 \ No newline at end of file Added: trunk/examples/daimler/motor.kb =================================================================== --- trunk/examples/daimler/motor.kb (rev 0) +++ trunk/examples/daimler/motor.kb 2007-10-17 14:28:58 UTC (rev 231) @@ -0,0 +1,10 @@ +// disjoint classes +(diesel AND benzin) = BOTTOM. + +diesel(d1). +diesel(d2). +diesel(d3). +super(s1). +super(s2). +benzin(b1). +benzin(b2). \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |