Skip to content

Commit

Permalink
Mountain Goat with high-level CPGs and stable feet.
Browse files Browse the repository at this point in the history
  • Loading branch information
squeeglepoof committed Aug 1, 2016
1 parent d449d32 commit cddfb5e
Show file tree
Hide file tree
Showing 11 changed files with 2,558 additions and 0 deletions.
106 changes: 106 additions & 0 deletions scripts/learning/src/MG_FirstAttempt.json
@@ -0,0 +1,106 @@
{
"filePrefix" : "monteOut",
"fileSuffix" : ".json",
"resourcePath" : "../../../resources/src/",
"lowerPath" : "bgigous/AppQuadCoupling/",
"executable" : "./../../../build/dev/bgigous/MG_FirstAttempt/AppQuadCoupling",
"terrain" : [[[0, 0, 0, 0.0, 10000]]],
"learningParams":
{
"trialLength" : 10000,
"numTrials" : 100,
"numGenerations" : 1,
"deterministic": 0,
"nodeVals" :
{
"learning" : true,
"startingControllers" : 0,
"monteCarlo" : true,
"numberOfStates" : 0,
"numberOfOutputs" : 5,
"numberOfInstances" : 10,
"populationSize" : 100,
"useAverage" : true,
"numberToMutate" : 2,
"numberOfChildren" : 1,
"mutationChance" : 0.5,
"mutationDev" : 0.03,
"paramMax" : 1.0,
"paramMin": 0.0,
"childMutationChance" : 0.9
},
"edgeVals" :
{
"learning" : true,
"startingControllers" : 0,
"monteCarlo" : true,
"numberOfStates" : 0,
"numberOfOutputs" : 2,
"numberOfInstances" : 1632,
"populationSize" : 100,
"useAverage" : true,
"numberToMutate" : 2,
"numberOfChildren" : 1,
"mutationChance" : 0.5,
"mutationDev" : 0.03,
"paramMax" : 1.0,
"paramMin": 0.0,
"childMutationChance" : 0.9
},
"highVals" :
{
"learning" : true,
"startingControllers" : 0,
"monteCarlo" : true,
"numberOfStates" : 0,
"numberOfOutputs" : 2,
"numberOfInstances" : 10,
"populationSize" : 100,
"useAverage" : true,
"numberToMutate" : 2,
"numberOfChildren" : 1,
"mutationChance" : 0.5,
"mutationDev" : 0.03,
"paramMax" : 1.0,
"paramMin": 0.0,
"childMutationChance" : 0.9
},
"hLowVals" :
{
"learning" : true,
"startingControllers" : 0,
"monteCarlo" : true,
"numberOfStates" : 0,
"numberOfOutputs" : 2,
"numberOfInstances" : 5,
"populationSize" : 100,
"useAverage" : true,
"numberToMutate" : 2,
"numberOfChildren" : 1,
"mutationChance" : 0.5,
"mutationDev" : 0.03,
"paramMax" : 1.0,
"paramMin": 0.0,
"childMutationChance" : 0.9
},
"feedbackVals" :
{
"learning" : true,
"startingControllers" : 0,
"monteCarlo" : true,
"numberOfStates" : 2,
"numberOfOutputs" : 3,
"numberHidden" : 4,
"numberOfInstances" : 1,
"populationSize" : 100,
"useAverage" : true,
"numberToMutate" : 15,
"numberOfChildren" : 5,
"mutationChance" : 0.5,
"mutationDev" : 0.03,
"paramMax" : 1.0,
"paramMin": -1.0,
"childMutationChance" : 0.7
}
}
}
1 change: 1 addition & 0 deletions src/dev/CMakeLists.txt
Expand Up @@ -18,5 +18,6 @@ subdirs(
eajung
ezhu
mcdaly
bgigous
)

6 changes: 6 additions & 0 deletions src/dev/bgigous/CMakeLists.txt
@@ -0,0 +1,6 @@
Project(bgigous)

Subdirs(
MG_FirstAttempt
MG_HT
)

0 comments on commit cddfb5e

Please sign in to comment.