13 lines
325 B
Haskell
13 lines
325 B
Haskell
module GEval.BlackBoxDebugging
|
|
(BlackBoxDebuggingOptions(..))
|
|
where
|
|
|
|
data BlackBoxDebuggingOptions = BlackBoxDebuggingOptions {
|
|
bbdoMinFrequency :: Integer,
|
|
bbdoWordShapes :: Bool,
|
|
bbdoBigrams :: Bool,
|
|
bbdoCartesian :: Bool,
|
|
bbdoMinCartesianFrequency :: Maybe Integer,
|
|
bbdoConsiderNumericalFeatures :: Bool
|
|
}
|