geval/src/GEval/BlackBoxDebugging.hs

13 lines
325 B
Haskell
Raw Normal View History

module GEval.BlackBoxDebugging
(BlackBoxDebuggingOptions(..))
where
data BlackBoxDebuggingOptions = BlackBoxDebuggingOptions {
bbdoMinFrequency :: Integer,
bbdoWordShapes :: Bool,
bbdoBigrams :: Bool,
bbdoCartesian :: Bool,
2019-01-23 13:00:37 +01:00
bbdoMinCartesianFrequency :: Maybe Integer,
bbdoConsiderNumericalFeatures :: Bool
}