Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/**
* Father Example
*
* possible solution:
* male AND EXISTS hasChild.TOP
*
* Copyright (C) 2007, Jens Lehmann
*/
// declare some prefixes to use as abbreviations
prefixes = [ ("ex","http://example.com/father#") ]
// knowledge source definition
ks.type = "OWL File"
ks.fileName = "father.owl"
// reasoner
reasoner.type = "closed world reasoner"
reasoner.sources = { ks }
// learning problem
lp.type = "posNegStandard"
lp.positiveExamples = { "ex:stefan", "ex:markus", "ex:martin" }
lp.negativeExamples = { "ex:heinz", "ex:anna", "ex:michelle" }
// create learning algorithm to run
alg.type = "celoe"
alg.maxExecutionTimeInSeconds = 1
alg.writeSearchTree = true