Compare commits

..

5 Commits

Author SHA1 Message Date
Johannes Merl
fc4d8b8625 fix Iris 2024-05-09 10:54:08 +02:00
Johannes Merl
86f3099622 reduce population to fix memory issues in higher depth case 2024-05-09 10:15:56 +02:00
Johannes Merl
f8f7084bf2 variation 4 2024-05-09 09:28:10 +02:00
Johannes Merl
fe74d7dc35 variation 3 2024-05-09 09:28:10 +02:00
Johannes Merl
2b7cf859ac switch to german Dataset 2024-05-09 09:00:48 +02:00
4 changed files with 14 additions and 14 deletions

View File

@@ -89,10 +89,10 @@ lE =
maxDepth = 9, maxDepth = 9,
weights = weights =
ExpressionWeights ExpressionWeights
{ lambdaSpucker = 1, { lambdaSpucker = 10,
lambdaSchlucker = 2, lambdaSchlucker = 1,
symbol = 30, symbol = 20,
variable = 10, variable = 100,
constant = 5 constant = 5
} }
} }

View File

@@ -56,10 +56,10 @@ lE =
maxDepth = 9, maxDepth = 9,
weights = weights =
ExpressionWeights ExpressionWeights
{ lambdaSpucker = 1, { lambdaSpucker = 10,
lambdaSchlucker = 2, lambdaSchlucker = 1,
symbol = 30, symbol = 20,
variable = 10, variable = 100,
constant = 5 constant = 5
} }
} }

View File

@@ -77,10 +77,10 @@ lE =
maxDepth = 9, maxDepth = 9,
weights = weights =
ExpressionWeights ExpressionWeights
{ lambdaSpucker = 1, { lambdaSpucker = 10,
lambdaSchlucker = 2, lambdaSchlucker = 1,
symbol = 30, symbol = 20,
variable = 10, variable = 100,
constant = 5 constant = 5
} }
} }

View File

@@ -9,8 +9,8 @@ import Pretty
import Protolude hiding (for) import Protolude hiding (for)
import System.IO import System.IO
-- import LambdaDatasets.IrisDataset -- import LambdaDatasets.IrisDataset
import LambdaDatasets.NurseryDataset -- import LambdaDatasets.NurseryDataset
-- import LambdaDatasets.GermanDataset import LambdaDatasets.GermanDataset
import Debug.Trace as DB import Debug.Trace as DB
import qualified Data.Map.Strict as Map import qualified Data.Map.Strict as Map