2019-01-10 08:15:34 +01:00
|
|
|
module GEval.BlackBoxDebugging
|
|
|
|
(BlackBoxDebuggingOptions(..))
|
|
|
|
where
|
|
|
|
|
|
|
|
data BlackBoxDebuggingOptions = BlackBoxDebuggingOptions {
|
2019-01-10 09:58:04 +01:00
|
|
|
bbdoMinFrequency :: Integer,
|
2019-01-10 10:41:55 +01:00
|
|
|
bbdoWordShapes :: Bool,
|
2019-01-10 14:01:29 +01:00
|
|
|
bbdoBigrams :: Bool,
|
2019-01-11 10:16:39 +01:00
|
|
|
bbdoCartesian :: Bool,
|
2019-01-23 13:00:37 +01:00
|
|
|
bbdoMinCartesianFrequency :: Maybe Integer,
|
|
|
|
bbdoConsiderNumericalFeatures :: Bool
|
2019-01-10 08:15:34 +01:00
|
|
|
}
|