geval/src/GEval/BlackBoxDebugging.hs
2019-01-23 13:00:37 +01:00

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
}