From: <jen...@us...> - 2008-06-05 19:06:52
|
Revision: 945 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=945&view=rev Author: jenslehmann Date: 2008-06-05 12:06:48 -0700 (Thu, 05 Jun 2008) Log Message: ----------- examples modified Added Paths: ----------- trunk/examples/cross-benchmark/forte/uncle_gp.conf trunk/examples/cross-benchmark/forte/uncle_hybrid.conf trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_gp.conf trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_hybrid.conf trunk/examples/cross-benchmark/poker/pair_gp.conf trunk/examples/cross-benchmark/poker/pair_hybrid.conf trunk/examples/cross-benchmark/poker/straight_gp.conf trunk/examples/cross-benchmark/poker/straight_hybrid.conf Removed Paths: ------------- trunk/examples/cross-benchmark/forte/uncle_refexamples_gp.conf trunk/examples/cross-benchmark/forte/uncle_refexamples_hybrid.conf trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_gp.conf trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_hybrid.conf trunk/examples/cross-benchmark/poker/pair_refexamples_gp.conf trunk/examples/cross-benchmark/poker/pair_refexamples_hybrid.conf trunk/examples/cross-benchmark/poker/straight_refexamples_gp.conf trunk/examples/cross-benchmark/poker/straight_refexamples_hybrid.conf Copied: trunk/examples/cross-benchmark/forte/uncle_gp.conf (from rev 944, trunk/examples/cross-benchmark/forte/uncle_refexamples_gp.conf) =================================================================== --- trunk/examples/cross-benchmark/forte/uncle_gp.conf (rev 0) +++ trunk/examples/cross-benchmark/forte/uncle_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,124 @@ +/** + * Extracted from the FORTE (First Order Revision of Theories from Examples) + * data set: + * + * http://www.cs.utexas.edu/users/ml/forte.html + * + * The goal of this learning problem is to learn the concept of an uncle. + * + * In the file forte_family.kb, you can find a graphical representation of the + * family tree corresponding to the facts in this file. + * + * possible solution: (male AND (EXISTS hasSibling.EXISTS hasChild.TOP + * OR EXISTS married.EXISTS hasSibling.EXISTS hasChild.TOP)) + * + * Copyright (C) 2007, Jens Lehmann + */ + +algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.8; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +import("forte_family.kb"); + +/** examples **/ + + +// complete example set ++art ++calvin ++carlos ++david ++eric ++fred ++frederick ++george ++harry ++jack ++james ++jonas ++karl ++leon ++mark ++melvin ++neil ++nero ++owen ++paul ++peter ++umo ++walt + +-alfred +-alice +-angela +-ann +-beatrice +-bob +-callie +-carl +-christy +-cornelia +-deanna +-elisa +-f12 +-f14 +-f19 +-f2 +-f20 +-f21 +-f22 +-f23 +-f25 +-f26 +-f28 +-f8 +-fannie +-gail +-helen +-jane +-janet +-kari +-lorrie +-m1 +-m10 +-m11 +-m13 +-m15 +-m16 +-m17 +-m18 +-m24 +-m27 +-m29 +-m3 +-m4 +-m5 +-m6 +-m7 +-m9 +-maria +-martha +-nancy +-nonnie +-oma +-paula +-prissie +-rachel +-ray +-regina +-steve +-susan +-terri +-terry +-wendy + Copied: trunk/examples/cross-benchmark/forte/uncle_hybrid.conf (from rev 944, trunk/examples/cross-benchmark/forte/uncle_refexamples_hybrid.conf) =================================================================== --- trunk/examples/cross-benchmark/forte/uncle_hybrid.conf (rev 0) +++ trunk/examples/cross-benchmark/forte/uncle_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,125 @@ +/** + * Extracted from the FORTE (First Order Revision of Theories from Examples) + * data set: + * + * http://www.cs.utexas.edu/users/ml/forte.html + * + * The goal of this learning problem is to learn the concept of an uncle. + * + * In the file forte_family.kb, you can find a graphical representation of the + * family tree corresponding to the facts in this file. + * + * possible solution: (male AND (EXISTS hasSibling.EXISTS hasChild.TOP + * OR EXISTS married.EXISTS hasSibling.EXISTS hasChild.TOP)) + * + * Copyright (C) 2007, Jens Lehmann + */ + + +algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0.65; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.2; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +import("forte_family.kb"); + +/** examples **/ + + +// complete example set ++art ++calvin ++carlos ++david ++eric ++fred ++frederick ++george ++harry ++jack ++james ++jonas ++karl ++leon ++mark ++melvin ++neil ++nero ++owen ++paul ++peter ++umo ++walt + +-alfred +-alice +-angela +-ann +-beatrice +-bob +-callie +-carl +-christy +-cornelia +-deanna +-elisa +-f12 +-f14 +-f19 +-f2 +-f20 +-f21 +-f22 +-f23 +-f25 +-f26 +-f28 +-f8 +-fannie +-gail +-helen +-jane +-janet +-kari +-lorrie +-m1 +-m10 +-m11 +-m13 +-m15 +-m16 +-m17 +-m18 +-m24 +-m27 +-m29 +-m3 +-m4 +-m5 +-m6 +-m7 +-m9 +-maria +-martha +-nancy +-nonnie +-oma +-paula +-prissie +-rachel +-ray +-regina +-steve +-susan +-terri +-terry +-wendy + Deleted: trunk/examples/cross-benchmark/forte/uncle_refexamples_gp.conf =================================================================== --- trunk/examples/cross-benchmark/forte/uncle_refexamples_gp.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/forte/uncle_refexamples_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,124 +0,0 @@ -/** - * Extracted from the FORTE (First Order Revision of Theories from Examples) - * data set: - * - * http://www.cs.utexas.edu/users/ml/forte.html - * - * The goal of this learning problem is to learn the concept of an uncle. - * - * In the file forte_family.kb, you can find a graphical representation of the - * family tree corresponding to the facts in this file. - * - * possible solution: (male AND (EXISTS hasSibling.EXISTS hasChild.TOP - * OR EXISTS married.EXISTS hasSibling.EXISTS hasChild.TOP)) - * - * Copyright (C) 2007, Jens Lehmann - */ - -algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.8; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -import("forte_family.kb"); - -/** examples **/ - - -// complete example set -+art -+calvin -+carlos -+david -+eric -+fred -+frederick -+george -+harry -+jack -+james -+jonas -+karl -+leon -+mark -+melvin -+neil -+nero -+owen -+paul -+peter -+umo -+walt - --alfred --alice --angela --ann --beatrice --bob --callie --carl --christy --cornelia --deanna --elisa --f12 --f14 --f19 --f2 --f20 --f21 --f22 --f23 --f25 --f26 --f28 --f8 --fannie --gail --helen --jane --janet --kari --lorrie --m1 --m10 --m11 --m13 --m15 --m16 --m17 --m18 --m24 --m27 --m29 --m3 --m4 --m5 --m6 --m7 --m9 --maria --martha --nancy --nonnie --oma --paula --prissie --rachel --ray --regina --steve --susan --terri --terry --wendy - Deleted: trunk/examples/cross-benchmark/forte/uncle_refexamples_hybrid.conf =================================================================== --- trunk/examples/cross-benchmark/forte/uncle_refexamples_hybrid.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/forte/uncle_refexamples_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,125 +0,0 @@ -/** - * Extracted from the FORTE (First Order Revision of Theories from Examples) - * data set: - * - * http://www.cs.utexas.edu/users/ml/forte.html - * - * The goal of this learning problem is to learn the concept of an uncle. - * - * In the file forte_family.kb, you can find a graphical representation of the - * family tree corresponding to the facts in this file. - * - * possible solution: (male AND (EXISTS hasSibling.EXISTS hasChild.TOP - * OR EXISTS married.EXISTS hasSibling.EXISTS hasChild.TOP)) - * - * Copyright (C) 2007, Jens Lehmann - */ - - -algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0.65; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.2; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -import("forte_family.kb"); - -/** examples **/ - - -// complete example set -+art -+calvin -+carlos -+david -+eric -+fred -+frederick -+george -+harry -+jack -+james -+jonas -+karl -+leon -+mark -+melvin -+neil -+nero -+owen -+paul -+peter -+umo -+walt - --alfred --alice --angela --ann --beatrice --bob --callie --carl --christy --cornelia --deanna --elisa --f12 --f14 --f19 --f2 --f20 --f21 --f22 --f23 --f25 --f26 --f28 --f8 --fannie --gail --helen --jane --janet --kari --lorrie --m1 --m10 --m11 --m13 --m15 --m16 --m17 --m18 --m24 --m27 --m29 --m3 --m4 --m5 --m6 --m7 --m9 --maria --martha --nancy --nonnie --oma --paula --prissie --rachel --ray --regina --steve --susan --terri --terry --wendy - Copied: trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_gp.conf (from rev 944, trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_gp.conf) =================================================================== --- trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_gp.conf (rev 0) +++ trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,72 @@ + /*********************** + solution is: +(severity_harm AND (NOT benefit_victim) AND (vicarious OR voluntary)) + + + Examples: + 23 positive + 20 negative + + ***********************/ + algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.8; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +/** background knowledge **/ +import("moral_43instances_complex.owl"); + + +/** Examples **/ ++p0 ++p1 ++p2 ++p3 ++p4 ++p5 ++p6 ++p7 ++p8 ++p9 ++p10 ++p90 ++p91 ++p92 ++p93 ++p94 ++p95 ++p96 ++p97 ++p98 ++p99 ++p100 ++p101 +-n0 +-n1 +-n2 +-n3 +//-n4 +-n5 +-n6 +-n7 +-n8 +-n9 +-n10 +-n90 +-n91 +-n92 +-n93 +-n94 +-n95 +-n96 +-n97 +-n98 +-n99 Copied: trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_hybrid.conf (from rev 944, trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_hybrid.conf) =================================================================== --- trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_hybrid.conf (rev 0) +++ trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,72 @@ + /*********************** + solution is: +(severity_harm AND (NOT benefit_victim) AND (vicarious OR voluntary)) + + + Examples: + 23 positive + 20 negative + + ***********************/ + algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0.65; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.2; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +/** background knowledge **/ +import("moral_43instances_complex.owl"); + + +/** Examples **/ ++p0 ++p1 ++p2 ++p3 ++p4 ++p5 ++p6 ++p7 ++p8 ++p9 ++p10 ++p90 ++p91 ++p92 ++p93 ++p94 ++p95 ++p96 ++p97 ++p98 ++p99 ++p100 ++p101 +-n0 +-n1 +-n2 +-n3 +//-n4 +-n5 +-n6 +-n7 +-n8 +-n9 +-n10 +-n90 +-n91 +-n92 +-n93 +-n94 +-n95 +-n96 +-n97 +-n98 +-n99 Deleted: trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_gp.conf =================================================================== --- trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_gp.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,72 +0,0 @@ - /*********************** - solution is: -(severity_harm AND (NOT benefit_victim) AND (vicarious OR voluntary)) - - - Examples: - 23 positive - 20 negative - - ***********************/ - algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.8; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -/** background knowledge **/ -import("moral_43instances_complex.owl"); - - -/** Examples **/ -+p0 -+p1 -+p2 -+p3 -+p4 -+p5 -+p6 -+p7 -+p8 -+p9 -+p10 -+p90 -+p91 -+p92 -+p93 -+p94 -+p95 -+p96 -+p97 -+p98 -+p99 -+p100 -+p101 --n0 --n1 --n2 --n3 -//-n4 --n5 --n6 --n7 --n8 --n9 --n10 --n90 --n91 --n92 --n93 --n94 --n95 --n96 --n97 --n98 --n99 Deleted: trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_hybrid.conf =================================================================== --- trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_hybrid.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/moral_reasoner/moral_43examples_complex_refexamples_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,72 +0,0 @@ - /*********************** - solution is: -(severity_harm AND (NOT benefit_victim) AND (vicarious OR voluntary)) - - - Examples: - 23 positive - 20 negative - - ***********************/ - algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0.65; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.2; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -/** background knowledge **/ -import("moral_43instances_complex.owl"); - - -/** Examples **/ -+p0 -+p1 -+p2 -+p3 -+p4 -+p5 -+p6 -+p7 -+p8 -+p9 -+p10 -+p90 -+p91 -+p92 -+p93 -+p94 -+p95 -+p96 -+p97 -+p98 -+p99 -+p100 -+p101 --n0 --n1 --n2 --n3 -//-n4 --n5 --n6 --n7 --n8 --n9 --n10 --n90 --n91 --n92 --n93 --n94 --n95 --n96 --n97 --n98 --n99 Copied: trunk/examples/cross-benchmark/poker/pair_gp.conf (from rev 944, trunk/examples/cross-benchmark/poker/pair_refexamples_gp.conf) =================================================================== --- trunk/examples/cross-benchmark/poker/pair_gp.conf (rev 0) +++ trunk/examples/cross-benchmark/poker/pair_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,73 @@ +/** + * See pair.conf. This is the same learning problem, but loading + * background knowledge from an OWL file instead. + * + * Copyright (C) 2007, Jens Lehmann + */ + +algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.8; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +/*Background knowledge*/ +import("pair50.owl"); + +/*Examples*/ +-"http://localhost/foo#hand0" +-"http://localhost/foo#hand1" +-"http://localhost/foo#hand2" +-"http://localhost/foo#hand3" +-"http://localhost/foo#hand4" +-"http://localhost/foo#hand5" +-"http://localhost/foo#hand6" +-"http://localhost/foo#hand7" +-"http://localhost/foo#hand8" ++"http://localhost/foo#hand9" +-"http://localhost/foo#hand10" +-"http://localhost/foo#hand11" +-"http://localhost/foo#hand12" ++"http://localhost/foo#hand13" +-"http://localhost/foo#hand14" +-"http://localhost/foo#hand15" +-"http://localhost/foo#hand16" +-"http://localhost/foo#hand17" ++"http://localhost/foo#hand18" ++"http://localhost/foo#hand19" +-"http://localhost/foo#hand20" ++"http://localhost/foo#hand21" ++"http://localhost/foo#hand22" ++"http://localhost/foo#hand23" ++"http://localhost/foo#hand24" ++"http://localhost/foo#hand25" ++"http://localhost/foo#hand26" +-"http://localhost/foo#hand27" +-"http://localhost/foo#hand28" ++"http://localhost/foo#hand29" +-"http://localhost/foo#hand30" +-"http://localhost/foo#hand31" +-"http://localhost/foo#hand32" +-"http://localhost/foo#hand33" +-"http://localhost/foo#hand34" ++"http://localhost/foo#hand35" ++"http://localhost/foo#hand36" +-"http://localhost/foo#hand37" ++"http://localhost/foo#hand38" ++"http://localhost/foo#hand39" ++"http://localhost/foo#hand40" ++"http://localhost/foo#hand41" +-"http://localhost/foo#hand42" ++"http://localhost/foo#hand43" +-"http://localhost/foo#hand44" +-"http://localhost/foo#hand45" +-"http://localhost/foo#hand46" ++"http://localhost/foo#hand47" ++"http://localhost/foo#hand48" Copied: trunk/examples/cross-benchmark/poker/pair_hybrid.conf (from rev 944, trunk/examples/cross-benchmark/poker/pair_refexamples_hybrid.conf) =================================================================== --- trunk/examples/cross-benchmark/poker/pair_hybrid.conf (rev 0) +++ trunk/examples/cross-benchmark/poker/pair_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,73 @@ +/** + * See pair.conf. This is the same learning problem, but loading + * background knowledge from an OWL file instead. + * + * Copyright (C) 2007, Jens Lehmann + */ + +algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0.65; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.2; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +/*Background knowledge*/ +import("pair50.owl"); + +/*Examples*/ +-"http://localhost/foo#hand0" +-"http://localhost/foo#hand1" +-"http://localhost/foo#hand2" +-"http://localhost/foo#hand3" +-"http://localhost/foo#hand4" +-"http://localhost/foo#hand5" +-"http://localhost/foo#hand6" +-"http://localhost/foo#hand7" +-"http://localhost/foo#hand8" ++"http://localhost/foo#hand9" +-"http://localhost/foo#hand10" +-"http://localhost/foo#hand11" +-"http://localhost/foo#hand12" ++"http://localhost/foo#hand13" +-"http://localhost/foo#hand14" +-"http://localhost/foo#hand15" +-"http://localhost/foo#hand16" +-"http://localhost/foo#hand17" ++"http://localhost/foo#hand18" ++"http://localhost/foo#hand19" +-"http://localhost/foo#hand20" ++"http://localhost/foo#hand21" ++"http://localhost/foo#hand22" ++"http://localhost/foo#hand23" ++"http://localhost/foo#hand24" ++"http://localhost/foo#hand25" ++"http://localhost/foo#hand26" +-"http://localhost/foo#hand27" +-"http://localhost/foo#hand28" ++"http://localhost/foo#hand29" +-"http://localhost/foo#hand30" +-"http://localhost/foo#hand31" +-"http://localhost/foo#hand32" +-"http://localhost/foo#hand33" +-"http://localhost/foo#hand34" ++"http://localhost/foo#hand35" ++"http://localhost/foo#hand36" +-"http://localhost/foo#hand37" ++"http://localhost/foo#hand38" ++"http://localhost/foo#hand39" ++"http://localhost/foo#hand40" ++"http://localhost/foo#hand41" +-"http://localhost/foo#hand42" ++"http://localhost/foo#hand43" +-"http://localhost/foo#hand44" +-"http://localhost/foo#hand45" +-"http://localhost/foo#hand46" ++"http://localhost/foo#hand47" ++"http://localhost/foo#hand48" Deleted: trunk/examples/cross-benchmark/poker/pair_refexamples_gp.conf =================================================================== --- trunk/examples/cross-benchmark/poker/pair_refexamples_gp.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/poker/pair_refexamples_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,73 +0,0 @@ -/** - * See pair.conf. This is the same learning problem, but loading - * background knowledge from an OWL file instead. - * - * Copyright (C) 2007, Jens Lehmann - */ - -algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.8; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -/*Background knowledge*/ -import("pair50.owl"); - -/*Examples*/ --"http://localhost/foo#hand0" --"http://localhost/foo#hand1" --"http://localhost/foo#hand2" --"http://localhost/foo#hand3" --"http://localhost/foo#hand4" --"http://localhost/foo#hand5" --"http://localhost/foo#hand6" --"http://localhost/foo#hand7" --"http://localhost/foo#hand8" -+"http://localhost/foo#hand9" --"http://localhost/foo#hand10" --"http://localhost/foo#hand11" --"http://localhost/foo#hand12" -+"http://localhost/foo#hand13" --"http://localhost/foo#hand14" --"http://localhost/foo#hand15" --"http://localhost/foo#hand16" --"http://localhost/foo#hand17" -+"http://localhost/foo#hand18" -+"http://localhost/foo#hand19" --"http://localhost/foo#hand20" -+"http://localhost/foo#hand21" -+"http://localhost/foo#hand22" -+"http://localhost/foo#hand23" -+"http://localhost/foo#hand24" -+"http://localhost/foo#hand25" -+"http://localhost/foo#hand26" --"http://localhost/foo#hand27" --"http://localhost/foo#hand28" -+"http://localhost/foo#hand29" --"http://localhost/foo#hand30" --"http://localhost/foo#hand31" --"http://localhost/foo#hand32" --"http://localhost/foo#hand33" --"http://localhost/foo#hand34" -+"http://localhost/foo#hand35" -+"http://localhost/foo#hand36" --"http://localhost/foo#hand37" -+"http://localhost/foo#hand38" -+"http://localhost/foo#hand39" -+"http://localhost/foo#hand40" -+"http://localhost/foo#hand41" --"http://localhost/foo#hand42" -+"http://localhost/foo#hand43" --"http://localhost/foo#hand44" --"http://localhost/foo#hand45" --"http://localhost/foo#hand46" -+"http://localhost/foo#hand47" -+"http://localhost/foo#hand48" Deleted: trunk/examples/cross-benchmark/poker/pair_refexamples_hybrid.conf =================================================================== --- trunk/examples/cross-benchmark/poker/pair_refexamples_hybrid.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/poker/pair_refexamples_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,73 +0,0 @@ -/** - * See pair.conf. This is the same learning problem, but loading - * background knowledge from an OWL file instead. - * - * Copyright (C) 2007, Jens Lehmann - */ - -algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0.65; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.2; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -/*Background knowledge*/ -import("pair50.owl"); - -/*Examples*/ --"http://localhost/foo#hand0" --"http://localhost/foo#hand1" --"http://localhost/foo#hand2" --"http://localhost/foo#hand3" --"http://localhost/foo#hand4" --"http://localhost/foo#hand5" --"http://localhost/foo#hand6" --"http://localhost/foo#hand7" --"http://localhost/foo#hand8" -+"http://localhost/foo#hand9" --"http://localhost/foo#hand10" --"http://localhost/foo#hand11" --"http://localhost/foo#hand12" -+"http://localhost/foo#hand13" --"http://localhost/foo#hand14" --"http://localhost/foo#hand15" --"http://localhost/foo#hand16" --"http://localhost/foo#hand17" -+"http://localhost/foo#hand18" -+"http://localhost/foo#hand19" --"http://localhost/foo#hand20" -+"http://localhost/foo#hand21" -+"http://localhost/foo#hand22" -+"http://localhost/foo#hand23" -+"http://localhost/foo#hand24" -+"http://localhost/foo#hand25" -+"http://localhost/foo#hand26" --"http://localhost/foo#hand27" --"http://localhost/foo#hand28" -+"http://localhost/foo#hand29" --"http://localhost/foo#hand30" --"http://localhost/foo#hand31" --"http://localhost/foo#hand32" --"http://localhost/foo#hand33" --"http://localhost/foo#hand34" -+"http://localhost/foo#hand35" -+"http://localhost/foo#hand36" --"http://localhost/foo#hand37" -+"http://localhost/foo#hand38" -+"http://localhost/foo#hand39" -+"http://localhost/foo#hand40" -+"http://localhost/foo#hand41" --"http://localhost/foo#hand42" -+"http://localhost/foo#hand43" --"http://localhost/foo#hand44" --"http://localhost/foo#hand45" --"http://localhost/foo#hand46" -+"http://localhost/foo#hand47" -+"http://localhost/foo#hand48" Copied: trunk/examples/cross-benchmark/poker/straight_gp.conf (from rev 944, trunk/examples/cross-benchmark/poker/straight_refexamples_gp.conf) =================================================================== --- trunk/examples/cross-benchmark/poker/straight_gp.conf (rev 0) +++ trunk/examples/cross-benchmark/poker/straight_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,80 @@ +/** + * See straight.conf. This is the same learning problem, but loading + * background knowledge from an OWL file instead. + * + * Copyright (C) 2007, Jens Lehmann + */ + +/*Background knowledge*/ +algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.8; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +import("straight.owl"); + +/*Examples*/ ++"http://localhost/foo#hand1" ++"http://localhost/foo#hand22" ++"http://localhost/foo#hand40" ++"http://localhost/foo#hand44" + +-"http://localhost/foo#hand0" +-"http://localhost/foo#hand2" +-"http://localhost/foo#hand3" +-"http://localhost/foo#hand4" +-"http://localhost/foo#hand5" +-"http://localhost/foo#hand6" +-"http://localhost/foo#hand7" +-"http://localhost/foo#hand8" +-"http://localhost/foo#hand9" +-"http://localhost/foo#hand10" +-"http://localhost/foo#hand11" +-"http://localhost/foo#hand12" +-"http://localhost/foo#hand13" +-"http://localhost/foo#hand14" +-"http://localhost/foo#hand15" +-"http://localhost/foo#hand16" +-"http://localhost/foo#hand17" +-"http://localhost/foo#hand18" +-"http://localhost/foo#hand19" +-"http://localhost/foo#hand20" +-"http://localhost/foo#hand21" +-"http://localhost/foo#hand23" +-"http://localhost/foo#hand24" +-"http://localhost/foo#hand25" +-"http://localhost/foo#hand26" +-"http://localhost/foo#hand27" +-"http://localhost/foo#hand28" +-"http://localhost/foo#hand29" +-"http://localhost/foo#hand30" +-"http://localhost/foo#hand31" +-"http://localhost/foo#hand32" +-"http://localhost/foo#hand33" +-"http://localhost/foo#hand34" +-"http://localhost/foo#hand35" +-"http://localhost/foo#hand36" +-"http://localhost/foo#hand37" +-"http://localhost/foo#hand38" +-"http://localhost/foo#hand39" +-"http://localhost/foo#hand41" +-"http://localhost/foo#hand42" +-"http://localhost/foo#hand43" +-"http://localhost/foo#hand45" +-"http://localhost/foo#hand46" +-"http://localhost/foo#hand47" +-"http://localhost/foo#hand48" +-"http://localhost/foo#hand49" +-"http://localhost/foo#hand50" +-"http://localhost/foo#hand51" +-"http://localhost/foo#hand52" +-"http://localhost/foo#hand53" +-"http://localhost/foo#hand54" Copied: trunk/examples/cross-benchmark/poker/straight_hybrid.conf (from rev 944, trunk/examples/cross-benchmark/poker/straight_refexamples_hybrid.conf) =================================================================== --- trunk/examples/cross-benchmark/poker/straight_hybrid.conf (rev 0) +++ trunk/examples/cross-benchmark/poker/straight_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -0,0 +1,80 @@ +/** + * See straight.conf. This is the same learning problem, but loading + * background knowledge from an OWL file instead. + * + * Copyright (C) 2007, Jens Lehmann + */ + +/*Background knowledge*/ +algorithm = gp; +gp.algorithmType = generational; +gp.selectionType = rankSelection; +gp.generations = 50; +gp.useFixedNumberOfGenerations = true; +gp.numberOfIndividuals = 501; +gp.refinementProbability = 0.65; +gp.mutationProbability = 0.02; +gp.crossoverProbability = 0.2; +gp.hillClimbingProbability = 0; +posNegDefinitionLP.percentPerLenghtUnit = 0.02; +gp.maxConceptLength = 30; +reasoner = owlAPI; +import("straight.owl"); + +/*Examples*/ ++"http://localhost/foo#hand1" ++"http://localhost/foo#hand22" ++"http://localhost/foo#hand40" ++"http://localhost/foo#hand44" + +-"http://localhost/foo#hand0" +-"http://localhost/foo#hand2" +-"http://localhost/foo#hand3" +-"http://localhost/foo#hand4" +-"http://localhost/foo#hand5" +-"http://localhost/foo#hand6" +-"http://localhost/foo#hand7" +-"http://localhost/foo#hand8" +-"http://localhost/foo#hand9" +-"http://localhost/foo#hand10" +-"http://localhost/foo#hand11" +-"http://localhost/foo#hand12" +-"http://localhost/foo#hand13" +-"http://localhost/foo#hand14" +-"http://localhost/foo#hand15" +-"http://localhost/foo#hand16" +-"http://localhost/foo#hand17" +-"http://localhost/foo#hand18" +-"http://localhost/foo#hand19" +-"http://localhost/foo#hand20" +-"http://localhost/foo#hand21" +-"http://localhost/foo#hand23" +-"http://localhost/foo#hand24" +-"http://localhost/foo#hand25" +-"http://localhost/foo#hand26" +-"http://localhost/foo#hand27" +-"http://localhost/foo#hand28" +-"http://localhost/foo#hand29" +-"http://localhost/foo#hand30" +-"http://localhost/foo#hand31" +-"http://localhost/foo#hand32" +-"http://localhost/foo#hand33" +-"http://localhost/foo#hand34" +-"http://localhost/foo#hand35" +-"http://localhost/foo#hand36" +-"http://localhost/foo#hand37" +-"http://localhost/foo#hand38" +-"http://localhost/foo#hand39" +-"http://localhost/foo#hand41" +-"http://localhost/foo#hand42" +-"http://localhost/foo#hand43" +-"http://localhost/foo#hand45" +-"http://localhost/foo#hand46" +-"http://localhost/foo#hand47" +-"http://localhost/foo#hand48" +-"http://localhost/foo#hand49" +-"http://localhost/foo#hand50" +-"http://localhost/foo#hand51" +-"http://localhost/foo#hand52" +-"http://localhost/foo#hand53" +-"http://localhost/foo#hand54" Deleted: trunk/examples/cross-benchmark/poker/straight_refexamples_gp.conf =================================================================== --- trunk/examples/cross-benchmark/poker/straight_refexamples_gp.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/poker/straight_refexamples_gp.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,80 +0,0 @@ -/** - * See straight.conf. This is the same learning problem, but loading - * background knowledge from an OWL file instead. - * - * Copyright (C) 2007, Jens Lehmann - */ - -/*Background knowledge*/ -algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.8; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -import("straight.owl"); - -/*Examples*/ -+"http://localhost/foo#hand1" -+"http://localhost/foo#hand22" -+"http://localhost/foo#hand40" -+"http://localhost/foo#hand44" - --"http://localhost/foo#hand0" --"http://localhost/foo#hand2" --"http://localhost/foo#hand3" --"http://localhost/foo#hand4" --"http://localhost/foo#hand5" --"http://localhost/foo#hand6" --"http://localhost/foo#hand7" --"http://localhost/foo#hand8" --"http://localhost/foo#hand9" --"http://localhost/foo#hand10" --"http://localhost/foo#hand11" --"http://localhost/foo#hand12" --"http://localhost/foo#hand13" --"http://localhost/foo#hand14" --"http://localhost/foo#hand15" --"http://localhost/foo#hand16" --"http://localhost/foo#hand17" --"http://localhost/foo#hand18" --"http://localhost/foo#hand19" --"http://localhost/foo#hand20" --"http://localhost/foo#hand21" --"http://localhost/foo#hand23" --"http://localhost/foo#hand24" --"http://localhost/foo#hand25" --"http://localhost/foo#hand26" --"http://localhost/foo#hand27" --"http://localhost/foo#hand28" --"http://localhost/foo#hand29" --"http://localhost/foo#hand30" --"http://localhost/foo#hand31" --"http://localhost/foo#hand32" --"http://localhost/foo#hand33" --"http://localhost/foo#hand34" --"http://localhost/foo#hand35" --"http://localhost/foo#hand36" --"http://localhost/foo#hand37" --"http://localhost/foo#hand38" --"http://localhost/foo#hand39" --"http://localhost/foo#hand41" --"http://localhost/foo#hand42" --"http://localhost/foo#hand43" --"http://localhost/foo#hand45" --"http://localhost/foo#hand46" --"http://localhost/foo#hand47" --"http://localhost/foo#hand48" --"http://localhost/foo#hand49" --"http://localhost/foo#hand50" --"http://localhost/foo#hand51" --"http://localhost/foo#hand52" --"http://localhost/foo#hand53" --"http://localhost/foo#hand54" Deleted: trunk/examples/cross-benchmark/poker/straight_refexamples_hybrid.conf =================================================================== --- trunk/examples/cross-benchmark/poker/straight_refexamples_hybrid.conf 2008-06-05 14:29:31 UTC (rev 944) +++ trunk/examples/cross-benchmark/poker/straight_refexamples_hybrid.conf 2008-06-05 19:06:48 UTC (rev 945) @@ -1,80 +0,0 @@ -/** - * See straight.conf. This is the same learning problem, but loading - * background knowledge from an OWL file instead. - * - * Copyright (C) 2007, Jens Lehmann - */ - -/*Background knowledge*/ -algorithm = gp; -gp.algorithmType = generational; -gp.selectionType = rankSelection; -gp.generations = 50; -gp.useFixedNumberOfGenerations = true; -gp.numberOfIndividuals = 501; -gp.refinementProbability = 0.65; -gp.mutationProbability = 0.02; -gp.crossoverProbability = 0.2; -gp.hillClimbingProbability = 0; -posNegDefinitionLP.percentPerLenghtUnit = 0.02; -gp.maxConceptLength = 30; -reasoner = owlAPI; -import("straight.owl"); - -/*Examples*/ -+"http://localhost/foo#hand1" -+"http://localhost/foo#hand22" -+"http://localhost/foo#hand40" -+"http://localhost/foo#hand44" - --"http://localhost/foo#hand0" --"http://localhost/foo#hand2" --"http://localhost/foo#hand3" --"http://localhost/foo#hand4" --"http://localhost/foo#hand5" --"http://localhost/foo#hand6" --"http://localhost/foo#hand7" --"http://localhost/foo#hand8" --"http://localhost/foo#hand9" --"http://localhost/foo#hand10" --"http://localhost/foo#hand11" --"http://localhost/foo#hand12" --"http://localhost/foo#hand13" --"http://localhost/foo#hand14" --"http://localhost/foo#hand15" --"http://localhost/foo#hand16" --"http://localhost/foo#hand17" --"http://localhost/foo#hand18" --"http://localhost/foo#hand19" --"http://localhost/foo#hand20" --"http://localhost/foo#hand21" --"http://localhost/foo#hand23" --"http://localhost/foo#hand24" --"http://localhost/foo#hand25" --"http://localhost/foo#hand26" --"http://localhost/foo#hand27" --"http://localhost/foo#hand28" --"http://localhost/foo#hand29" --"http://localhost/foo#hand30" --"http://localhost/foo#hand31" --"http://localhost/foo#hand32" --"http://localhost/foo#hand33" --"http://localhost/foo#hand34" --"http://localhost/foo#hand35" --"http://localhost/foo#hand36" --"http://localhost/foo#hand37" --"http://localhost/foo#hand38" --"http://localhost/foo#hand39" --"http://localhost/foo#hand41" --"http://localhost/foo#hand42" --"http://localhost/foo#hand43" --"http://localhost/foo#hand45" --"http://localhost/foo#hand46" --"http://localhost/foo#hand47" --"http://localhost/foo#hand48" --"http://localhost/foo#hand49" --"http://localhost/foo#hand50" --"http://localhost/foo#hand51" --"http://localhost/foo#hand52" --"http://localhost/foo#hand53" --"http://localhost/foo#hand54" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |