From: <lor...@us...> - 2011-08-11 06:40:43
|
Revision: 3026 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3026&view=rev Author: lorenz_b Date: 2011-08-11 06:40:37 +0000 (Thu, 11 Aug 2011) Log Message: ----------- Changes in eval script needed because of refactoring. Modified Paths: -------------- trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java Modified: trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java =================================================================== --- trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java 2011-08-10 14:19:01 UTC (rev 3025) +++ trunk/scripts/src/main/java/org/dllearner/scripts/evaluation/EnrichmentEvaluation.java 2011-08-11 06:40:37 UTC (rev 3026) @@ -40,23 +40,24 @@ import java.util.prefs.Preferences; import org.apache.log4j.Logger; +import org.dllearner.algorithms.DisjointClassesLearner; +import org.dllearner.algorithms.SimpleSubclassLearner; +import org.dllearner.algorithms.celoe.CELOE; import org.dllearner.algorithms.properties.DataPropertyDomainAxiomLearner; import org.dllearner.algorithms.properties.DataPropertyRangeAxiomLearner; import org.dllearner.algorithms.properties.DisjointDataPropertyAxiomLearner; -import org.dllearner.algorithms.properties.DisjointPropertyAxiomLearner; +import org.dllearner.algorithms.properties.DisjointObjectPropertyAxiomLearner; import org.dllearner.algorithms.properties.EquivalentDataPropertyAxiomLearner; -import org.dllearner.algorithms.DisjointClassesLearner; -import org.dllearner.algorithms.SimpleSubclassLearner; -import org.dllearner.algorithms.celoe.CELOE; -import org.dllearner.algorithms.properties.EquivalentPropertyAxiomLearner; +import org.dllearner.algorithms.properties.EquivalentObjectPropertyAxiomLearner; import org.dllearner.algorithms.properties.FunctionalDataPropertyAxiomLearner; -import org.dllearner.algorithms.properties.FunctionalPropertyAxiomLearner; -import org.dllearner.algorithms.properties.PropertyDomainAxiomLearner; +import org.dllearner.algorithms.properties.FunctionalObjectPropertyAxiomLearner; +import org.dllearner.algorithms.properties.InverseFunctionalObjectPropertyAxiomLearner; +import org.dllearner.algorithms.properties.ObjectPropertyDomainAxiomLearner; import org.dllearner.algorithms.properties.PropertyRangeAxiomLearner; import org.dllearner.algorithms.properties.SubDataPropertyOfAxiomLearner; -import org.dllearner.algorithms.properties.SubPropertyOfAxiomLearner; -import org.dllearner.algorithms.properties.SymmetricPropertyAxiomLearner; -import org.dllearner.algorithms.properties.TransitivePropertyAxiomLearner; +import org.dllearner.algorithms.properties.SubObjectPropertyOfAxiomLearner; +import org.dllearner.algorithms.properties.SymmetricObjectPropertyAxiomLearner; +import org.dllearner.algorithms.properties.TransitiveObjectPropertyAxiomLearner; import org.dllearner.core.AxiomLearningAlgorithm; import org.dllearner.core.ComponentInitException; import org.dllearner.core.ComponentManager; @@ -115,14 +116,15 @@ prefixes.put("dbo","http://dbpedia.org/ontology/"); objectPropertyAlgorithms = new LinkedList<Class<? extends AxiomLearningAlgorithm>>(); - objectPropertyAlgorithms.add(DisjointPropertyAxiomLearner.class); - objectPropertyAlgorithms.add(EquivalentPropertyAxiomLearner.class); - objectPropertyAlgorithms.add(FunctionalPropertyAxiomLearner.class); - objectPropertyAlgorithms.add(PropertyDomainAxiomLearner.class); + objectPropertyAlgorithms.add(DisjointObjectPropertyAxiomLearner.class); + objectPropertyAlgorithms.add(EquivalentObjectPropertyAxiomLearner.class); + objectPropertyAlgorithms.add(FunctionalObjectPropertyAxiomLearner.class); + objectPropertyAlgorithms.add(InverseFunctionalObjectPropertyAxiomLearner.class); + objectPropertyAlgorithms.add(ObjectPropertyDomainAxiomLearner.class); objectPropertyAlgorithms.add(PropertyRangeAxiomLearner.class); - objectPropertyAlgorithms.add(SubPropertyOfAxiomLearner.class); - objectPropertyAlgorithms.add(SymmetricPropertyAxiomLearner.class); - objectPropertyAlgorithms.add(TransitivePropertyAxiomLearner.class); + objectPropertyAlgorithms.add(SubObjectPropertyOfAxiomLearner.class); + objectPropertyAlgorithms.add(SymmetricObjectPropertyAxiomLearner.class); + objectPropertyAlgorithms.add(TransitiveObjectPropertyAxiomLearner.class); dataPropertyAlgorithms = new LinkedList<Class<? extends AxiomLearningAlgorithm>>(); dataPropertyAlgorithms.add(DisjointDataPropertyAxiomLearner.class); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |