Compare commits
No commits in common. "d96783d706de210fd8911f241b332a94a7f01221" and "8825d6934e9072241b2ccb359420addc498928b9" have entirely different histories.
d96783d706
...
8825d6934e
|
@ -68,7 +68,7 @@ lEE :: LamdaExecutionEnv
|
|||
lEE =
|
||||
LamdaExecutionEnv
|
||||
{ -- For now these need to define all available functions and types. Generic functions can be used.
|
||||
imports = ["LambdaDatasets.IrisDefinition"],
|
||||
imports = ["LambdaDatasets.IrisDataset"],
|
||||
training = True,
|
||||
trainingData =
|
||||
( map fst (takeFraktion 0.8 irisTrainingData),
|
||||
|
@ -89,7 +89,7 @@ shuffledLEE = do
|
|||
itD <- smpl $ shuffle irisTrainingData
|
||||
return LamdaExecutionEnv
|
||||
{ -- For now these need to define all available functions and types. Generic functions can be used.
|
||||
imports = ["LambdaDatasets.IrisDefinition"],
|
||||
imports = ["LambdaDatasets.IrisDataset"],
|
||||
training = True,
|
||||
trainingData =
|
||||
( map fst (takeFraktion 0.8 itD),
|
||||
|
|
|
@ -35,7 +35,7 @@ options =
|
|||
( long "population-size"
|
||||
<> short 'p'
|
||||
<> metavar "N"
|
||||
<> value 100
|
||||
<> value 400
|
||||
<> help "Population size"
|
||||
)
|
||||
|
||||
|
@ -59,7 +59,7 @@ main =
|
|||
selectionType = Tournament 3,
|
||||
termination = (steps (iterations opts)),
|
||||
poulationSize = (populationSize opts),
|
||||
stepSize = 90,
|
||||
stepSize = 120,
|
||||
elitismRatio = 5/100
|
||||
}
|
||||
pop' <- runEffect (for (run cfg) logCsv)
|
||||
|
|
Loading…
Reference in New Issue
Block a user