Search is not available for this dataset
repo_name string | path string | license string | full_code string | full_size int64 | uncommented_code string | uncommented_size int64 | function_only_code string | function_only_size int64 | is_commented bool | is_signatured bool | n_ast_errors int64 | ast_max_depth int64 | n_whitespaces int64 | n_ast_nodes int64 | n_ast_terminals int64 | n_ast_nonterminals int64 | loc int64 | cycloplexity int64 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
green-haskell/ghc | libraries/base/GHC/Event/Manager.hs | bsd-3-clause | registerFd_ :: EventManager -> IOCallback -> Fd -> Event -> Lifetime
-> IO (FdKey, Bool)
registerFd_ mgr@(EventManager{..}) cb fd evs lt = do
u <- newUnique emUniqueSource
let fd' = fromIntegral fd
reg = FdKey fd u
el = I.eventLifetime evs lt
!fdd = FdData reg el cb
(modify,ok) <- withMVar (callbackTableVar mgr fd) $ \tbl -> do
oldFdd <- IT.insertWith (++) fd' [fdd] tbl
let prevEvs :: EventLifetime
prevEvs = maybe mempty eventsOf oldFdd
el' :: EventLifetime
el' = prevEvs `mappend` el
case I.elLifetime el' of
-- All registrations want one-shot semantics and this is supported
OneShot | haveOneShot -> do
ok <- I.modifyFdOnce emBackend fd (I.elEvent el')
if ok
then return (False, True)
else IT.reset fd' oldFdd tbl >> return (False, False)
-- We don't want or don't support one-shot semantics
_ -> do
let modify = prevEvs /= el'
ok <- if modify
then let newEvs = I.elEvent el'
oldEvs = I.elEvent prevEvs
in I.modifyFd emBackend fd oldEvs newEvs
else return True
if ok
then return (modify, True)
else IT.reset fd' oldFdd tbl >> return (False, False)
-- this simulates behavior of old IO manager:
-- i.e. just call the callback if the registration fails.
when (not ok) (cb reg evs)
return (reg,modify)
| 1,463 | registerFd_ :: EventManager -> IOCallback -> Fd -> Event -> Lifetime
-> IO (FdKey, Bool)
registerFd_ mgr@(EventManager{..}) cb fd evs lt = do
u <- newUnique emUniqueSource
let fd' = fromIntegral fd
reg = FdKey fd u
el = I.eventLifetime evs lt
!fdd = FdData reg el cb
(modify,ok) <- withMVar (callbackTableVar mgr fd) $ \tbl -> do
oldFdd <- IT.insertWith (++) fd' [fdd] tbl
let prevEvs :: EventLifetime
prevEvs = maybe mempty eventsOf oldFdd
el' :: EventLifetime
el' = prevEvs `mappend` el
case I.elLifetime el' of
-- All registrations want one-shot semantics and this is supported
OneShot | haveOneShot -> do
ok <- I.modifyFdOnce emBackend fd (I.elEvent el')
if ok
then return (False, True)
else IT.reset fd' oldFdd tbl >> return (False, False)
-- We don't want or don't support one-shot semantics
_ -> do
let modify = prevEvs /= el'
ok <- if modify
then let newEvs = I.elEvent el'
oldEvs = I.elEvent prevEvs
in I.modifyFd emBackend fd oldEvs newEvs
else return True
if ok
then return (modify, True)
else IT.reset fd' oldFdd tbl >> return (False, False)
-- this simulates behavior of old IO manager:
-- i.e. just call the callback if the registration fails.
when (not ok) (cb reg evs)
return (reg,modify)
| 1,463 | registerFd_ mgr@(EventManager{..}) cb fd evs lt = do
u <- newUnique emUniqueSource
let fd' = fromIntegral fd
reg = FdKey fd u
el = I.eventLifetime evs lt
!fdd = FdData reg el cb
(modify,ok) <- withMVar (callbackTableVar mgr fd) $ \tbl -> do
oldFdd <- IT.insertWith (++) fd' [fdd] tbl
let prevEvs :: EventLifetime
prevEvs = maybe mempty eventsOf oldFdd
el' :: EventLifetime
el' = prevEvs `mappend` el
case I.elLifetime el' of
-- All registrations want one-shot semantics and this is supported
OneShot | haveOneShot -> do
ok <- I.modifyFdOnce emBackend fd (I.elEvent el')
if ok
then return (False, True)
else IT.reset fd' oldFdd tbl >> return (False, False)
-- We don't want or don't support one-shot semantics
_ -> do
let modify = prevEvs /= el'
ok <- if modify
then let newEvs = I.elEvent el'
oldEvs = I.elEvent prevEvs
in I.modifyFd emBackend fd oldEvs newEvs
else return True
if ok
then return (modify, True)
else IT.reset fd' oldFdd tbl >> return (False, False)
-- this simulates behavior of old IO manager:
-- i.e. just call the callback if the registration fails.
when (not ok) (cb reg evs)
return (reg,modify)
| 1,362 | false | true | 0 | 24 | 464 | 457 | 228 | 229 | null | null |
rueshyna/gogol | gogol-youtube/gen/Network/Google/Resource/YouTube/Captions/Download.hs | mpl-2.0 | -- | Creates a value of 'CaptionsDownload' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'capaOnBehalfOf'
--
-- * 'capaTlang'
--
-- * 'capaOnBehalfOfContentOwner'
--
-- * 'capaId'
--
-- * 'capaTfmt'
captionsDownload
:: Text -- ^ 'capaId'
-> CaptionsDownload
captionsDownload pCapaId_ =
CaptionsDownload'
{ _capaOnBehalfOf = Nothing
, _capaTlang = Nothing
, _capaOnBehalfOfContentOwner = Nothing
, _capaId = pCapaId_
, _capaTfmt = Nothing
} | 562 | captionsDownload
:: Text -- ^ 'capaId'
-> CaptionsDownload
captionsDownload pCapaId_ =
CaptionsDownload'
{ _capaOnBehalfOf = Nothing
, _capaTlang = Nothing
, _capaOnBehalfOfContentOwner = Nothing
, _capaId = pCapaId_
, _capaTfmt = Nothing
} | 276 | captionsDownload pCapaId_ =
CaptionsDownload'
{ _capaOnBehalfOf = Nothing
, _capaTlang = Nothing
, _capaOnBehalfOfContentOwner = Nothing
, _capaId = pCapaId_
, _capaTfmt = Nothing
} | 209 | true | true | 0 | 7 | 118 | 73 | 46 | 27 | null | null |
Softsapiens/yampy-cube | src/Graphics.hs | bsd-3-clause | -- | Vector addition generalized for Num
(.+) :: Num a => (a, a) -> (a, a) -> (a, a)
(x, y) .+ (u, v) = (x + u, y + v) | 118 | (.+) :: Num a => (a, a) -> (a, a) -> (a, a)
(x, y) .+ (u, v) = (x + u, y + v) | 77 | (x, y) .+ (u, v) = (x + u, y + v) | 33 | true | true | 0 | 8 | 31 | 83 | 47 | 36 | null | null |
JacquesCarette/literate-scientific-software | code/drasil-data/Data/Drasil/Concepts/Software.hs | bsd-2-clause | qualOfBeing :: String -> String
qualOfBeing s = "the quality or state of being" ++ s | 84 | qualOfBeing :: String -> String
qualOfBeing s = "the quality or state of being" ++ s | 84 | qualOfBeing s = "the quality or state of being" ++ s | 52 | false | true | 0 | 7 | 15 | 28 | 12 | 16 | null | null |
damianfral/BrainHask | src/Language/BrainHask/Parser.hs | mit | incParser = Add <$> howMany1 "+" | 46 | incParser = Add <$> howMany1 "+" | 46 | incParser = Add <$> howMany1 "+" | 46 | false | false | 1 | 6 | 19 | 16 | 6 | 10 | null | null |
NickAger/LearningHaskell | HaskellProgrammingFromFirstPrinciples/Chapter15.hsproj/MonoidLaws.hs | mit | monoidLeftIdentity :: (Eq m, Monoid m) => m -> Bool
monoidLeftIdentity a = (mempty <> a) == a | 93 | monoidLeftIdentity :: (Eq m, Monoid m) => m -> Bool
monoidLeftIdentity a = (mempty <> a) == a | 93 | monoidLeftIdentity a = (mempty <> a) == a | 41 | false | true | 0 | 7 | 17 | 44 | 23 | 21 | null | null |
Heather/Idris-dev | src/Idris/Primitives.hs | bsd-3-clause | toInt ITChar x = Ch (chr $ fromIntegral x) | 42 | toInt ITChar x = Ch (chr $ fromIntegral x) | 42 | toInt ITChar x = Ch (chr $ fromIntegral x) | 42 | false | false | 1 | 8 | 8 | 28 | 11 | 17 | null | null |
janschulz/pandoc | src/Text/Pandoc/Parsing.hs | gpl-2.0 | lineClump :: Stream [Char] m Char => ParserT [Char] st m String
lineClump = blanklines
<|> (many1 (notFollowedBy blankline >> anyLine) >>= return . unlines) | 166 | lineClump :: Stream [Char] m Char => ParserT [Char] st m String
lineClump = blanklines
<|> (many1 (notFollowedBy blankline >> anyLine) >>= return . unlines) | 166 | lineClump = blanklines
<|> (many1 (notFollowedBy blankline >> anyLine) >>= return . unlines) | 102 | false | true | 3 | 12 | 34 | 74 | 36 | 38 | null | null |
forked-upstream-packages-for-ghcjs/ghc | libraries/base/tests/unicode001.hs | bsd-3-clause | zero = '0' | 27 | zero = '0' | 27 | zero = '0' | 27 | false | false | 0 | 4 | 19 | 6 | 3 | 3 | null | null |
yangjueji/hblas | src/Numerical/HBLAS/BLAS/Internal/Level2.hs | bsd-3-clause | spr2Abstraction :: (SM.Storable el, PrimMonad m)
=> String
-> Spr2FunFFI scale el
-> Spr2FunFFI scale el
-> (el -> (scale -> m ())-> m ())
-> forall orient . Spr2Fun el orient (PrimState m) m
spr2Abstraction spr2Name spr2SafeFFI spr2UnsafeFFI constHandler = spr2
where
shouldCallFast :: Int64 -> Bool
shouldCallFast n = flopsThreshold >= (n * n * 2)
spr2 ornt uplo n alpha
(MutableDenseVector _ xdim xstride xbuff)
(MutableDenseVector _ ydim ystride ybuff)
(MutableDenseVector _ adim _ abuff)
| isVectorBadWithNIncrement xdim n xstride = error $! vectorBadInfo spr2Name "x vector" xdim n xstride
| isVectorBadWithNIncrement ydim n ystride = error $! vectorBadInfo spr2Name "y vector" ydim n ystride
| adim < (div (n * (n+1)) 2) = error $! spr2Name ++ ": array which has" ++ (show adim) ++ " elements must contain at least (n*(n+1)/2) elements with n:" ++ (show n) ++ "."
| SM.overlaps abuff xbuff || SM.overlaps abuff ybuff || SM.overlaps xbuff ybuff =
error $! "The read and write inputs for: " ++ spr2Name ++ " overlap. This is a programmer error. Please fix."
| otherwise = call
where
call = unsafeWithPrim abuff $ \ap ->
unsafeWithPrim xbuff $ \xp ->
unsafeWithPrim ybuff $ \yp ->
constHandler alpha $ \alphaPtr ->
unsafePrimToPrim $! (if shouldCallFast (fromIntegral n) then spr2UnsafeFFI else spr2SafeFFI)
(encodeNiceOrder ornt) (encodeFFIMatrixHalf uplo)
(fromIntegral n) alphaPtr xp (fromIntegral xstride) yp (fromIntegral ystride) ap
| 1,770 | spr2Abstraction :: (SM.Storable el, PrimMonad m)
=> String
-> Spr2FunFFI scale el
-> Spr2FunFFI scale el
-> (el -> (scale -> m ())-> m ())
-> forall orient . Spr2Fun el orient (PrimState m) m
spr2Abstraction spr2Name spr2SafeFFI spr2UnsafeFFI constHandler = spr2
where
shouldCallFast :: Int64 -> Bool
shouldCallFast n = flopsThreshold >= (n * n * 2)
spr2 ornt uplo n alpha
(MutableDenseVector _ xdim xstride xbuff)
(MutableDenseVector _ ydim ystride ybuff)
(MutableDenseVector _ adim _ abuff)
| isVectorBadWithNIncrement xdim n xstride = error $! vectorBadInfo spr2Name "x vector" xdim n xstride
| isVectorBadWithNIncrement ydim n ystride = error $! vectorBadInfo spr2Name "y vector" ydim n ystride
| adim < (div (n * (n+1)) 2) = error $! spr2Name ++ ": array which has" ++ (show adim) ++ " elements must contain at least (n*(n+1)/2) elements with n:" ++ (show n) ++ "."
| SM.overlaps abuff xbuff || SM.overlaps abuff ybuff || SM.overlaps xbuff ybuff =
error $! "The read and write inputs for: " ++ spr2Name ++ " overlap. This is a programmer error. Please fix."
| otherwise = call
where
call = unsafeWithPrim abuff $ \ap ->
unsafeWithPrim xbuff $ \xp ->
unsafeWithPrim ybuff $ \yp ->
constHandler alpha $ \alphaPtr ->
unsafePrimToPrim $! (if shouldCallFast (fromIntegral n) then spr2UnsafeFFI else spr2SafeFFI)
(encodeNiceOrder ornt) (encodeFFIMatrixHalf uplo)
(fromIntegral n) alphaPtr xp (fromIntegral xstride) yp (fromIntegral ystride) ap
| 1,770 | spr2Abstraction spr2Name spr2SafeFFI spr2UnsafeFFI constHandler = spr2
where
shouldCallFast :: Int64 -> Bool
shouldCallFast n = flopsThreshold >= (n * n * 2)
spr2 ornt uplo n alpha
(MutableDenseVector _ xdim xstride xbuff)
(MutableDenseVector _ ydim ystride ybuff)
(MutableDenseVector _ adim _ abuff)
| isVectorBadWithNIncrement xdim n xstride = error $! vectorBadInfo spr2Name "x vector" xdim n xstride
| isVectorBadWithNIncrement ydim n ystride = error $! vectorBadInfo spr2Name "y vector" ydim n ystride
| adim < (div (n * (n+1)) 2) = error $! spr2Name ++ ": array which has" ++ (show adim) ++ " elements must contain at least (n*(n+1)/2) elements with n:" ++ (show n) ++ "."
| SM.overlaps abuff xbuff || SM.overlaps abuff ybuff || SM.overlaps xbuff ybuff =
error $! "The read and write inputs for: " ++ spr2Name ++ " overlap. This is a programmer error. Please fix."
| otherwise = call
where
call = unsafeWithPrim abuff $ \ap ->
unsafeWithPrim xbuff $ \xp ->
unsafeWithPrim ybuff $ \yp ->
constHandler alpha $ \alphaPtr ->
unsafePrimToPrim $! (if shouldCallFast (fromIntegral n) then spr2UnsafeFFI else spr2SafeFFI)
(encodeNiceOrder ornt) (encodeFFIMatrixHalf uplo)
(fromIntegral n) alphaPtr xp (fromIntegral xstride) yp (fromIntegral ystride) ap
| 1,498 | false | true | 12 | 23 | 556 | 514 | 255 | 259 | null | null |
f1u77y/xmonad-contrib | XMonad/Actions/DynamicProjects.hs | bsd-3-clause | --------------------------------------------------------------------------------
-- | Prompt for a project name.
projectPrompt :: [ProjectMode] -> XPConfig -> X ()
projectPrompt submodes c = do
ws <- map W.tag `fmap` gets (W.workspaces . windowset)
ps <- XS.gets projects
let names = sort (Map.keys ps `union` ws)
modes = map (\m -> XPT $ ProjectPrompt m names) submodes
mkXPromptWithModes modes c
--------------------------------------------------------------------------------
-- | Activate a project by updating the working directory and
-- possibly running its start-up hook. This function is automatically
-- invoked when the workspace changes. | 667 | projectPrompt :: [ProjectMode] -> XPConfig -> X ()
projectPrompt submodes c = do
ws <- map W.tag `fmap` gets (W.workspaces . windowset)
ps <- XS.gets projects
let names = sort (Map.keys ps `union` ws)
modes = map (\m -> XPT $ ProjectPrompt m names) submodes
mkXPromptWithModes modes c
--------------------------------------------------------------------------------
-- | Activate a project by updating the working directory and
-- possibly running its start-up hook. This function is automatically
-- invoked when the workspace changes. | 554 | projectPrompt submodes c = do
ws <- map W.tag `fmap` gets (W.workspaces . windowset)
ps <- XS.gets projects
let names = sort (Map.keys ps `union` ws)
modes = map (\m -> XPT $ ProjectPrompt m names) submodes
mkXPromptWithModes modes c
--------------------------------------------------------------------------------
-- | Activate a project by updating the working directory and
-- possibly running its start-up hook. This function is automatically
-- invoked when the workspace changes. | 503 | true | true | 0 | 14 | 101 | 141 | 72 | 69 | null | null |
ghc/packages-filepath | System/FilePath/Internal.hs | bsd-3-clause | -- | Get the directory name, move up one level.
--
-- > takeDirectory "/directory/other.ext" == "/directory"
-- > takeDirectory x `isPrefixOf` x || takeDirectory x == "."
-- > takeDirectory "foo" == "."
-- > takeDirectory "/" == "/"
-- > takeDirectory "/foo" == "/"
-- > takeDirectory "/foo/bar/baz" == "/foo/bar"
-- > takeDirectory "/foo/bar/baz/" == "/foo/bar/baz"
-- > takeDirectory "foo/bar/baz" == "foo/bar"
-- > Windows: takeDirectory "foo\\bar" == "foo"
-- > Windows: takeDirectory "foo\\bar\\\\" == "foo\\bar"
-- > Windows: takeDirectory "C:\\" == "C:\\"
takeDirectory :: FilePath -> FilePath
takeDirectory = dropTrailingPathSeparator . dropFileName | 740 | takeDirectory :: FilePath -> FilePath
takeDirectory = dropTrailingPathSeparator . dropFileName | 94 | takeDirectory = dropTrailingPathSeparator . dropFileName | 56 | true | true | 0 | 5 | 177 | 32 | 23 | 9 | null | null |
ecaustin/haskhol-core | src/HaskHOL/Core/Basics.hs | bsd-2-clause | -- | Predicate for term-level universal type quantification.
isTyAll :: HOLTerm -> Bool
isTyAll = isTyBinder "!!" | 113 | isTyAll :: HOLTerm -> Bool
isTyAll = isTyBinder "!!" | 52 | isTyAll = isTyBinder "!!" | 25 | true | true | 0 | 5 | 16 | 19 | 10 | 9 | null | null |
spl/generic-deriving-extras | src/Generics/Deriving/Zipper.hs | bsd-3-clause | set :: a -> Loc a -> Loc a
set x (Loc _ cs) = Loc x cs | 54 | set :: a -> Loc a -> Loc a
set x (Loc _ cs) = Loc x cs | 54 | set x (Loc _ cs) = Loc x cs | 27 | false | true | 0 | 7 | 17 | 48 | 21 | 27 | null | null |
simonswine/string-kata-haskell | src/String/Kata.hs | gpl-3.0 | convertToInt :: [[Char]] -> [Integer]
convertToInt ([]) = [] | 60 | convertToInt :: [[Char]] -> [Integer]
convertToInt ([]) = [] | 60 | convertToInt ([]) = [] | 22 | false | true | 0 | 7 | 8 | 38 | 20 | 18 | null | null |
facebookincubator/duckling | Duckling/Ranking/Classifiers/EN_IE.hs | bsd-3-clause | classifiers :: Classifiers
classifiers
= HashMap.fromList
[("Bhai Dooj",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = -2.5649493574615367, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("integer (numeric)noon|midnight|EOD|end of day",
-0.916290731874155),
("hour", -0.916290731874155)],
n = 1},
koData =
ClassData{prior = -8.004270767353637e-2,
unseen = -3.332204510175204,
likelihoods =
HashMap.fromList
[("hour", -0.7308875085427924),
("integer (numeric)time-of-day (latent)", -0.7308875085427924)],
n = 12}}),
("week",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time> timezone",
Classifier{okData =
ClassData{prior = -9.237332013101517e-2,
unseen = -4.23410650459726,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.4277482359480516),
("hhhmm", -1.65455834771457),
("<time-of-day> am|pm", -2.0222831278398874),
("hh:mm", -2.2735975561207935), ("hour", -1.821612432377736),
("minute", -1.128465251817791)],
n = 31},
koData =
ClassData{prior = -2.4277482359480516,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hhhmm", -1.3862943611198906), ("hh:mm", -1.791759469228055),
("minute", -1.0986122886681098)],
n = 3}}),
("Thursday",
Classifier{okData =
ClassData{prior = -7.79615414697118e-2,
unseen = -3.6635616461296463,
likelihoods = HashMap.fromList [("", 0.0)], n = 37},
koData =
ClassData{prior = -2.5902671654458267,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3}}),
("integer (numeric)",
Classifier{okData =
ClassData{prior = -0.53208562319284, unseen = -6.186208623900494,
likelihoods = HashMap.fromList [("", 0.0)], n = 484},
koData =
ClassData{prior = -0.8852249122992647, unseen = -5.834810737062605,
likelihoods = HashMap.fromList [("", 0.0)], n = 340}}),
("<year> (bc|ad)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the nth <day-of-week> of <month-or-greater>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -0.6931471805599453),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-0.6931471805599453)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<duration> hence|ago",
Classifier{okData =
ClassData{prior = -5.406722127027582e-2,
unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("week", -1.563975538357343), ("day", -1.8152899666382492),
("year", -2.662587827025453),
("<integer> <unit-of-duration>", -1.0531499145913523),
("a <unit-of-duration>", -2.662587827025453),
("month", -2.662587827025453),
("fortnight", -2.662587827025453)],
n = 18},
koData =
ClassData{prior = -2.9444389791664407,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("year", -1.5040773967762742),
("<integer> <unit-of-duration>", -1.5040773967762742)],
n = 1}}),
("noon|midnight|EOD|end of day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Karva Chauth",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<cycle> after|before <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("day (grain)tomorrow", -1.6739764335716716),
("dayday", -1.1631508098056809),
("day (grain)yesterday", -1.6739764335716716)],
n = 4},
koData =
ClassData{prior = -0.6931471805599453, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("dayhour", -1.6739764335716716),
("year (grain)Christmas", -2.0794415416798357),
("dayday", -2.0794415416798357),
("day (grain)intersect", -1.6739764335716716),
("day (grain)Easter Sunday", -2.0794415416798357),
("yearday", -2.0794415416798357)],
n = 4}}),
("Easter Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Navaratri",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Martin Luther King's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("integer (20..90)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Shemini Atzeret",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in <duration> at <time-of-day>",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("dayhour", -1.3862943611198906),
("yearhour", -1.3862943611198906),
("<integer> <unit-of-duration><time-of-day> am|pm",
-0.9808292530117262)],
n = 2},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("dayhour", -1.3862943611198906),
("yearhour", -1.3862943611198906),
("<integer> <unit-of-duration>time-of-day (latent)",
-0.9808292530117262)],
n = 2}}),
("Maha Shivaratri",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ramadan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Lazarus Saturday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect 2 numbers",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("compose by multiplicationinteger (0..19)",
-0.2231435513142097)],
n = 3},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("powers of tensinteger (0..19)", -0.2231435513142097)],
n = 3}}),
("mm/yyyy",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("from|since|after <time>",
Classifier{okData =
ClassData{prior = -1.701375407759786, unseen = -4.51085950651685,
likelihoods =
HashMap.fromList
[("<day-of-month> (ordinal or number) <named-month>",
-3.8066624897703196),
("July", -3.8066624897703196),
("intersect", -3.8066624897703196),
("year (latent)", -3.4011973816621555),
("day", -2.4203681286504293),
("the <day-of-month> (ordinal)", -3.4011973816621555),
("the <day-of-month> (number)", -3.8066624897703196),
("time-of-day (latent)", -2.5538995212749516),
("year", -3.4011973816621555),
("<time-of-day> am|pm", -2.5538995212749516),
("hh:mm", -2.890371757896165),
("<day-of-month> (ordinal)", -3.4011973816621555),
("hour", -1.9348603128687285), ("month", -3.4011973816621555),
("minute", -2.890371757896165),
("August", -3.8066624897703196)],
n = 27},
koData =
ClassData{prior = -0.201421728167374, unseen = -5.631211781821365,
likelihoods =
HashMap.fromList
[("<integer> to|till|before <hour-of-day>", -4.018183201256536),
("week", -4.9344739331306915),
("<day-of-month> (ordinal or number) <named-month>",
-4.9344739331306915),
("today", -4.9344739331306915),
("intersect", -2.9885637840753785),
("<time> for <duration>", -4.241326752570746),
("second", -4.9344739331306915), ("now", -3.3250360206965914),
("tomorrow", -4.529008825022527),
("this|last|next <cycle>", -4.9344739331306915),
("day", -1.7774735119805785),
("the <day-of-month> (ordinal)", -4.529008825022527),
("the <day-of-month> (number)", -3.548179572010801),
("time-of-day (latent)", -2.492126897761487),
("<time-of-day> am|pm", -4.241326752570746),
("hh:mm", -4.529008825022527), ("nograin", -3.3250360206965914),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-4.529008825022527),
("<named-month>|<named-day> <day-of-month> (ordinal)",
-4.9344739331306915),
("<day-of-month> (ordinal)", -3.835861644462582),
("Easter Sunday", -4.9344739331306915),
("Christmas", -4.241326752570746),
("hour", -2.3317842476863078), ("month", -4.9344739331306915),
("<datetime> - <datetime> (interval)", -2.7372493557944724),
("<time-of-day> - <time-of-day> (interval)",
-2.9885637840753785),
("<named-month> <day-of-month> (non ordinal)",
-4.529008825022527),
("minute", -1.9900349539642512),
("right now", -4.9344739331306915),
("<month> dd-dd (interval)", -4.241326752570746),
("part of days", -4.9344739331306915),
("dd-dd <month> (interval)", -4.529008825022527)],
n = 121}}),
("integer after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("integer (numeric)noon|midnight|EOD|end of day",
-1.791759469228055),
("hour", -0.8754687373538999),
("integer (numeric)time-of-day (latent)", -1.3862943611198906),
("integer (20..90)time-of-day (latent)", -1.791759469228055)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> last <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)week (grain)year (latent)",
-2.268683541318364),
("daymonth", -2.268683541318364),
("ordinal (digits)day (grain)May", -2.6741486494265287),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.6741486494265287),
("weekmonth", -1.7578579175523736),
("ordinal (digits)week (grain)October", -2.6741486494265287),
("ordinal (digits)week (grain)intersect", -2.6741486494265287),
("ordinal (digits)week (grain)year (latent)",
-2.6741486494265287),
("weekyear", -1.9810014688665833),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.6741486494265287),
("ordinals (first..twentieth,thirtieth,...)day (grain)May",
-2.6741486494265287)],
n = 9},
koData =
ClassData{prior = -infinity, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [], n = 0}}),
("Yom HaShoah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal or number) <named-month>",
Classifier{okData =
ClassData{prior = -1.1631508098056809, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("ordinal (digits)December", -1.6094379124341003),
("ordinal (digits)February", -2.3025850929940455),
("integer (numeric)April", -2.3025850929940455),
("month", -1.2039728043259361)],
n = 5},
koData =
ClassData{prior = -0.3746934494414107,
unseen = -3.4965075614664802,
likelihoods =
HashMap.fromList
[("ordinal (digits)October", -2.772588722239781),
("ordinal (digits)July", -2.0794415416798357),
("integer (numeric)September", -2.367123614131617),
("ordinal (digits)August", -2.772588722239781),
("ordinal (digits)April", -2.772588722239781),
("month", -0.9808292530117262),
("integer (numeric)July", -2.0794415416798357)],
n = 11}}),
("<time> <part-of-day>",
Classifier{okData =
ClassData{prior = -0.19105523676270922,
unseen = -4.6443908991413725,
likelihoods =
HashMap.fromList
[("<day-of-month> (ordinal)in|during the <part-of-day>",
-3.9415818076696905),
("dayhour", -1.499234772300486),
("Mondayearly morning", -3.536116699561526),
("time-of-day (latent)tonight", -3.536116699561526),
("hourhour", -2.236833715431265),
("<time-of-day> o'clockin|during the <part-of-day>",
-3.9415818076696905),
("todaypart of days", -3.9415818076696905),
("minutehour", -2.6888188391743224),
("at <time-of-day>in|during the <part-of-day>",
-3.536116699561526),
("time-of-day (latent)this <part-of-day>", -3.9415818076696905),
("Mondayin|during the <part-of-day>", -3.9415818076696905),
("intersectpart of days", -3.0252910757955354),
("Saturdaypart of days", -3.9415818076696905),
("intersectin|during the <part-of-day>", -3.9415818076696905),
("<day-of-month> (ordinal or number) of <named-month>in|during the <part-of-day>",
-3.9415818076696905),
("the <day-of-month> (ordinal)in|during the <part-of-day>",
-3.9415818076696905),
("tomorrowpart of days", -2.33214389523559),
("hh:mmin|during the <part-of-day>", -3.0252910757955354),
("time-of-day (latent)in|during the <part-of-day>",
-3.9415818076696905),
("hhmm (latent)in|during the <part-of-day>",
-3.9415818076696905),
("yesterdaypart of days", -3.536116699561526),
("<day-of-month> (ordinal or number) of <month>in|during the <part-of-day>",
-3.9415818076696905),
("Mondaypart of days", -3.9415818076696905)],
n = 38},
koData =
ClassData{prior = -1.749199854809259, unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("dayhour", -3.068052935133617),
("yearhour", -3.068052935133617),
("monthhour", -3.068052935133617),
("hourhour", -1.9694406464655074),
("at <time-of-day>in|during the <part-of-day>",
-3.068052935133617),
("year (latent)in|during the <part-of-day>",
-3.068052935133617),
("Februaryin|during the <part-of-day>", -3.068052935133617),
("tomorrowpart of days", -3.068052935133617),
("time-of-day (latent)in|during the <part-of-day>",
-2.151762203259462)],
n = 8}}),
("dd/mm",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods = HashMap.fromList [("", 0.0)], n = 28}}),
("today",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("at <time-of-day>",
Classifier{okData =
ClassData{prior = -0.22957444164450025,
unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("<time> timezone", -3.917010546939185),
("noon|midnight|EOD|end of day", -4.204692619390966),
("integer after|past <hour-of-day>", -3.917010546939185),
("<time-of-day> o'clock", -4.61015772749913),
("half after|past <hour-of-day>", -4.61015772749913),
("hhhmm", -3.6938669956249752),
("<hour-of-day> <integer>", -3.917010546939185),
("time-of-day (latent)", -1.6397432619294292),
("hhmm (latent)", -3.917010546939185),
("<time-of-day> am|pm", -2.0074680420547466),
("hh:mm", -3.3573947590037623),
("about|exactly <time-of-day>", -4.204692619390966),
("hour", -1.11365016603265),
("<time-of-day> sharp|exactly", -4.61015772749913),
("minute", -1.9360090780726016)],
n = 93},
koData =
ClassData{prior = -1.5841201044498106,
unseen = -4.1588830833596715,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0076405104623831),
("<time-of-day> am|pm", -3.044522437723423),
("hour", -0.924258901523332)],
n = 24}}),
("December",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("absorption of , after named day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.58351893845611,
likelihoods =
HashMap.fromList
[("Wednesday", -2.8622008809294686),
("Saturday", -2.8622008809294686),
("Monday", -2.456735772821304), ("Friday", -1.6094379124341003),
("day", -0.8472978603872037), ("Sunday", -2.8622008809294686),
("on <day>", -2.169053700369523)],
n = 14},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("September",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("tonight",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("last|past|next <duration>",
Classifier{okData =
ClassData{prior = -3.17486983145803e-2,
unseen = -4.2626798770413155,
likelihoods =
HashMap.fromList
[("week", -2.456735772821304), ("second", -2.639057329615259),
("day", -2.3025850929940455), ("year", -2.639057329615259),
("<integer> <unit-of-duration>", -0.7827593392496325),
("hour", -2.639057329615259), ("month", -2.639057329615259),
("minute", -2.639057329615259)],
n = 31},
koData =
ClassData{prior = -3.4657359027997265,
unseen = -2.3978952727983707,
likelihoods =
HashMap.fromList
[("<integer> <unit-of-duration>", -1.6094379124341003),
("hour", -1.6094379124341003)],
n = 1}}),
("the ides of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("March", -0.6931471805599453), ("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (ordinal or number) of <named-month>",
Classifier{okData =
ClassData{prior = -0.7621400520468967, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)March",
-1.6094379124341003),
("ordinal (digits)February", -1.8971199848858813),
("month", -0.916290731874155),
("ordinal (digits)March", -1.8971199848858813)],
n = 7},
koData =
ClassData{prior = -0.6286086594223742,
unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.4816045409242156),
("month", -0.8938178760220964),
("integer (numeric)July", -1.4816045409242156)],
n = 8}}),
("integer (0..19)",
Classifier{okData =
ClassData{prior = -1.227009259181436e-2,
unseen = -4.418840607796598,
likelihoods = HashMap.fromList [("", 0.0)], n = 81},
koData =
ClassData{prior = -4.406719247264253, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("in|during <named-month>|year",
Classifier{okData =
ClassData{prior = -0.2744368457017603,
unseen = -3.8066624897703196,
likelihoods =
HashMap.fromList
[("<year> (bc|ad)", -1.9924301646902063),
("October", -3.0910424533583156),
("year (latent)", -1.2992829841302609),
("year", -0.9509762898620451), ("March", -2.6855773452501515),
("month", -2.3978952727983707)],
n = 19},
koData =
ClassData{prior = -1.4271163556401458,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("October", -1.5040773967762742),
("year (latent)", -1.5040773967762742),
("year", -1.5040773967762742), ("month", -1.5040773967762742)],
n = 6}}),
("<part-of-day> at <time-of-day>",
Classifier{okData =
ClassData{prior = -8.223809823697212e-2,
unseen = -4.406719247264253,
likelihoods =
HashMap.fromList
[("this <part-of-day>hh:mm", -3.7013019741124937),
("tonighthh:mm", -3.7013019741124937),
("hourhour", -0.8979415932059586),
("hourminute", -3.0081547935525483),
("in|during the <part-of-day>time-of-day (latent)",
-3.7013019741124937),
("this <part-of-day>time-of-day (latent)", -1.9965538818740682),
("early morningtime-of-day (latent)", -3.7013019741124937),
("tonight<time-of-day> o'clock", -3.7013019741124937),
("tonighttime-of-day (latent)", -2.7850112422383386),
("part of dayshh:mm", -3.7013019741124937),
("part of daystime-of-day (latent)", -1.6218604324326575)],
n = 35},
koData =
ClassData{prior = -2.538973871058276, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("hourhour", -1.4469189829363254),
("this <part-of-day>time-of-day (latent)", -2.1400661634962708),
("tonighttime-of-day (latent)", -2.1400661634962708),
("part of daystime-of-day (latent)", -2.1400661634962708)],
n = 3}}),
("between <time-of-day> and <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -0.40546510810816444,
unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("minuteminute", -1.6739764335716716),
("hh:mmhh:mm", -2.0794415416798357),
("<time-of-day> am|pmtime-of-day (latent)",
-2.0794415416798357),
("hhhmmhhhmm", -2.0794415416798357),
("minutehour", -1.6739764335716716),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.0794415416798357)],
n = 4},
koData =
ClassData{prior = -1.0986122886681098,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -1.791759469228055),
("minutehour", -1.3862943611198906),
("hhhmmtime-of-day (latent)", -1.791759469228055)],
n = 2}}),
("Halloween",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Passover",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from <month> dd-dd (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods =
HashMap.fromList
[("Julyinteger (numeric)integer (numeric)", -1.6094379124341003),
("Augustordinal (digits)integer (numeric)",
-1.6094379124341003),
("month", -0.916290731874155),
("Augustordinal (digits)ordinal (digits)",
-1.6094379124341003)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("Good Friday",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("October",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods = HashMap.fromList [("", 0.0)], n = 22},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("month (grain)",
Classifier{okData =
ClassData{prior = -0.12136085700426748,
unseen = -3.4965075614664802,
likelihoods = HashMap.fromList [("", 0.0)], n = 31},
koData =
ClassData{prior = -2.169053700369523, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("<integer> more <unit-of-duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (numeric)minute (grain)", -0.6931471805599453),
("minute", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> o'clock",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.0794415416798357),
("<part-of-day> at <time-of-day>", -2.0794415416798357),
("time-of-day (latent)", -1.1631508098056809),
("hour", -0.8266785731844679)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("Vesak",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Earth Hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in|within|after <duration>",
Classifier{okData =
ClassData{prior = -0.12260232209233239,
unseen = -4.709530201312334,
likelihoods =
HashMap.fromList
[("week", -3.3141860046725258),
("<integer> more <unit-of-duration>", -4.007333185232471),
("three-quarters of an hour", -3.0910424533583156),
("<integer> + '\"", -3.3141860046725258),
("number.number hours", -4.007333185232471),
("second", -3.6018680771243066),
("half a <time-grain>", -3.0910424533583156),
("day", -3.3141860046725258), ("year", -4.007333185232471),
("<integer> <unit-of-duration>", -1.6094379124341003),
("a <unit-of-duration>", -3.0910424533583156),
("quarter of an hour", -3.0910424533583156),
("hour", -2.503255788456197),
("about|exactly <duration>", -4.007333185232471),
("half an hour (abbrev).", -3.6018680771243066),
("<integer> and an half hour", -4.007333185232471),
("minute", -1.2992829841302609)],
n = 46},
koData =
ClassData{prior = -2.159484249353372, unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("day", -2.70805020110221), ("quarter", -2.70805020110221),
("year", -1.791759469228055),
("<integer> <unit-of-duration>", -1.791759469228055),
("a <unit-of-duration>", -2.3025850929940455)],
n = 6}}),
("the closest <day> to <time>",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("dayday", -1.0986122886681098),
("Christmastoday", -1.791759469228055),
("Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-1.791759469228055),
("Monday<named-month> <day-of-month> (non ordinal)",
-1.791759469228055)],
n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -1.3862943611198906),
("MondayOctober", -1.3862943611198906)],
n = 1}}),
("January",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("three-quarters of an hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Mattu Pongal",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Wednesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("half after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> + '\"",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("half <integer> (UK style hour-of-day)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Ganesh Chaturthi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("July",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.5553480614894135,
likelihoods = HashMap.fromList [("", 0.0)], n = 33},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> <part-of-day>",
Classifier{okData =
ClassData{prior = -0.12516314295400605,
unseen = -3.6888794541139363,
likelihoods =
HashMap.fromList
[("time-of-day (latent)tonight", -2.5649493574615367),
("hourhour", -1.3609765531356008),
("<time-of-day> o'clockin|during the <part-of-day>",
-2.9704144655697013),
("minutehour", -1.717651497074333),
("at <time-of-day>in|during the <part-of-day>",
-2.277267285009756),
("time-of-day (latent)this <part-of-day>", -2.9704144655697013),
("hh:mmin|during the <part-of-day>", -2.0541237336955462),
("time-of-day (latent)in|during the <part-of-day>",
-2.277267285009756),
("hhmm (latent)in|during the <part-of-day>",
-2.9704144655697013)],
n = 15},
koData =
ClassData{prior = -2.1400661634962708, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("hourhour", -1.466337068793427),
("time-of-day (latent)in|during the <part-of-day>",
-1.466337068793427)],
n = 2}}),
("hour (grain)",
Classifier{okData =
ClassData{prior = -1.3723081191451507, unseen = -2.995732273553991,
likelihoods = HashMap.fromList [("", 0.0)], n = 18},
koData =
ClassData{prior = -0.2923879634891936, unseen = -4.007333185232471,
likelihoods = HashMap.fromList [("", 0.0)], n = 53}}),
("Parsi New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Shavuot",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day> <duration> hence|ago",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("dayyear", -0.6931471805599453),
("Diwali<integer> <unit-of-duration>", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> quarter",
Classifier{okData =
ClassData{prior = -0.4700036292457356, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -1.1786549963416462),
("ordinals (first..twentieth,thirtieth,...)quarter (grain)",
-1.466337068793427),
("quarter", -0.7731898882334817)],
n = 5},
koData =
ClassData{prior = -0.9808292530117262,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.8109302162163288),
("quarter", -0.8109302162163288)],
n = 3}}),
("Boss's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Orthodox Easter Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("one twenty two",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("May",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect",
Classifier{okData =
ClassData{prior = -0.4907042205665696, unseen = -7.174724309836376,
likelihoods =
HashMap.fromList
[("Navaratriyear (latent)", -6.480811139196849),
("Karva Chauthyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)in|during the <part-of-day>",
-6.480811139196849),
("Maha Shivaratriyear (latent)", -6.480811139196849),
("Ramadanyear (latent)", -5.228048170701481),
("<datetime> - <datetime> (interval)on <day>",
-5.094516778076958),
("Bhai Doojyear (latent)", -6.480811139196849),
("hourday", -4.465908118654584),
("dayhour", -3.4362887014734254),
("<time-of-day> - <time-of-day> (interval)on <day>",
-5.094516778076958),
("Martin Luther King's Dayyear (latent)", -6.075346031088684),
("Shemini Atzeretyear (latent)", -6.480811139196849),
("daymonth", -4.465908118654584),
("monthday", -6.075346031088684),
("monthyear", -4.689051669968793),
("Yom Ha'atzmautyear (latent)", -6.480811139196849),
("Orthodox Good Fridayyear (latent)", -6.075346031088684),
("Vijayadashamiyear (latent)", -6.480811139196849),
("Thai Pongalyear (latent)", -5.787663958636903),
("Thiru Onamyear (latent)", -5.787663958636903),
("hhhmmabsorption of , after named day", -6.480811139196849),
("Tuesdaythe <day-of-month> (ordinal)", -6.480811139196849),
("from <datetime> - <datetime> (interval)July",
-5.564520407322694),
("<day-of-month> (ordinal)Wednesday", -6.480811139196849),
("Krishna Janmashtamiyear (latent)", -6.075346031088684),
("Guru Gobind Singh Jayantiyear (latent)", -6.480811139196849),
("houryear", -5.564520407322694),
("this|next <day-of-week>hh(:mm) - <time-of-day> am|pm",
-6.480811139196849),
("Christmas<time-of-day> am|pm", -6.480811139196849),
("last <day-of-week> of <time>year (latent)",
-6.480811139196849),
("<time-of-day> am|pmintersect by \",\", \"of\", \"from\", \"'s\"",
-5.787663958636903),
("intersectin|during <named-month>|year", -6.480811139196849),
("<time-of-day> am|pmintersect", -5.228048170701481),
("Earth Houryear (latent)", -6.480811139196849),
("Ganesh Chaturthiyear (latent)", -6.480811139196849),
("Octoberyear (latent)", -4.976733742420574),
("intersect<time-of-day> am|pm", -6.480811139196849),
("Mattu Pongalyear (latent)", -6.480811139196849),
("Saturday<part-of-day> at <time-of-day>", -6.480811139196849),
("Shavuotyear (latent)", -6.480811139196849),
("Parsi New Yearyear (latent)", -5.564520407322694),
("at <time-of-day>in|within|after <duration>",
-6.480811139196849),
("Thursdayhh(:mm) - <time-of-day> am|pm", -6.480811139196849),
("todayin|within|after <duration>", -6.480811139196849),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-6.075346031088684),
("Marchyear (latent)", -6.480811139196849),
("intersect by \",\", \"of\", \"from\", \"'s\"hhhmm",
-6.075346031088684),
("Sukkotyear (latent)", -6.075346031088684),
("hhhmmintersect", -6.075346031088684),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-6.075346031088684),
("Clean Mondayyear (latent)", -6.075346031088684),
("monthhour", -6.075346031088684),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.564520407322694),
("todayat <time-of-day>", -6.480811139196849),
("Thursday<time> timezone", -4.082915866398478),
("tonight<time-of-day> am|pm", -6.480811139196849),
("time-of-day (latent)tonight", -6.075346031088684),
("from|since|after <time>December", -6.480811139196849),
("<time-of-day> am|pmon <day>", -4.465908118654584),
("this <time>hh(:mm) - <time-of-day> am|pm",
-6.480811139196849),
("yyyy-mm-ddhh:mm:ss", -6.075346031088684),
("dayday", -3.7082224169570672),
("<time> <part-of-day>at <time-of-day>", -6.075346031088684),
("tonightat <time-of-day>", -5.382198850528739),
("<time-of-day> am|pmabsorption of , after named day",
-5.787663958636903),
("Dayananda Saraswati Jayantiyear (latent)",
-6.480811139196849),
("today<time-of-day> am|pm", -6.480811139196849),
("Februarythe <day-of-month> (ordinal)", -6.075346031088684),
("at <time-of-day><time> <part-of-day>", -6.480811139196849),
("<day-of-month> (ordinal)intersect", -6.075346031088684),
("hourhour", -3.5103966736271475),
("Mahavir Jayantiyear (latent)", -6.075346031088684),
("Navaratriin|during <named-month>|year", -6.480811139196849),
("Wednesdaythis|last|next <cycle>", -6.480811139196849),
("Lentyear (latent)", -6.480811139196849),
("intersect<named-month> <day-of-month> (non ordinal)",
-4.609008962295257),
("Boghiyear (latent)", -6.480811139196849),
("dayyear", -1.9216848917101639),
("Karva Chauthin|during <named-month>|year",
-6.480811139196849),
("Thursdayfrom|since|after <time>", -6.075346031088684),
("<time-of-day> o'clockin|during the <part-of-day>",
-6.480811139196849),
("Thursdayat <time-of-day>", -5.787663958636903),
("Islamic New Yearyear (latent)", -6.075346031088684),
("Laylat al-Qadryear (latent)", -5.564520407322694),
("part of days<time-of-day> am|pm", -6.480811139196849),
("Shrove Tuesdayyear (latent)", -6.480811139196849),
("intersect by \",\", \"of\", \"from\" for year<time-of-day> am|pm",
-5.787663958636903),
("hourminute", -6.075346031088684),
("<time-of-day> am|pmtomorrow", -5.564520407322694),
("Yom Kippuryear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)Tuesday", -5.787663958636903),
("<part-of-day> of <time>year (latent)", -6.480811139196849),
("minutehour", -5.228048170701481),
("Kaanum Pongalyear (latent)", -6.075346031088684),
("Maha Saptamiyear (latent)", -6.480811139196849),
("at <time-of-day>in|during the <part-of-day>",
-5.787663958636903),
("time-of-day (latent)tomorrow", -5.564520407322694),
("part of daysat <time-of-day>", -4.871373226762748),
("absorption of , after named day<named-month> <day-of-month> (non ordinal)",
-4.465908118654584),
("for <duration> from <time>December", -6.480811139196849),
("tomorrow<time-of-day> sharp|exactly", -6.480811139196849),
("Thursdayfrom <datetime> - <datetime> (interval)",
-5.228048170701481),
("intersect by \",\", \"of\", \"from\" for yearhhhmm",
-5.228048170701481),
("time-of-day (latent)this <part-of-day>", -6.480811139196849),
("Pentecostyear (latent)", -6.480811139196849),
("Thursdayfrom <time-of-day> - <time-of-day> (interval)",
-5.228048170701481),
("<day-of-month> (ordinal)February", -6.480811139196849),
("Eid al-Fitryear (latent)", -5.094516778076958),
("Vasant Panchamiin|during <named-month>|year",
-6.480811139196849),
("Mondayin|during the <part-of-day>", -6.480811139196849),
("Chhathin|during <named-month>|year", -6.480811139196849),
("Diwaliin|during <named-month>|year", -6.480811139196849),
("this <part-of-day><time-of-day> am|pm", -6.480811139196849),
("Vaisakhiin|during <named-month>|year", -6.480811139196849),
("Guru Ravidass Jayantiyear (latent)", -5.228048170701481),
("Raksha Bandhanyear (latent)", -6.480811139196849),
("daysecond", -6.075346031088684),
("tomorrowfrom <time-of-day> - <time-of-day> (interval)",
-6.075346031088684),
("Ratha-Yatrayear (latent)", -6.480811139196849),
("Ashurayear (latent)", -6.480811139196849),
("Tuesdayin|during <named-month>|year", -6.480811139196849),
("Chinese New Yearyear (latent)", -6.480811139196849),
("tomorrowintersect", -6.480811139196849),
("Lag BaOmeryear (latent)", -6.480811139196849),
("last weekend of <named-month>year (latent)",
-6.480811139196849),
("Eid al-Adhayear (latent)", -4.340744975700578),
("intersectin|during the <part-of-day>", -6.480811139196849),
("Palm Sundayyear (latent)", -6.480811139196849),
("Christmasat <time-of-day>", -6.480811139196849),
("Passoveryear (latent)", -6.480811139196849),
("Lazarus Saturdayyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal or number) <named-month>year (latent)",
-6.480811139196849),
("hhhmmon <day>", -5.564520407322694),
("Yom HaShoahyear (latent)", -6.075346031088684),
("Thursday<datetime> - <datetime> (interval)",
-6.075346031088684),
("<day-of-month> (ordinal or number) of <named-month>in|during the <part-of-day>",
-6.480811139196849),
("Septemberyear (latent)", -6.075346031088684),
("Thursday<time-of-day> - <time-of-day> (interval)",
-4.976733742420574),
("Halloweenyear (latent)", -6.480811139196849),
("<ordinal> last <cycle> of <time>year (latent)",
-6.075346031088684),
("from <time-of-day> - <time-of-day> (interval)on <day>",
-5.787663958636903),
("intersect by \",\", \"of\", \"from\", \"'s\"<time-of-day> am|pm",
-6.480811139196849),
("at <time-of-day>intersect", -5.564520407322694),
("Rosh Hashanahyear (latent)", -5.787663958636903),
("Dhanterasyear (latent)", -6.480811139196849),
("Tu BiShvatyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)December", -5.787663958636903),
("Holiyear (latent)", -5.787663958636903),
("<time-of-day> - <time-of-day> (interval)tomorrow",
-6.480811139196849),
("Holika Dahanyear (latent)", -5.787663958636903),
("at <time-of-day>intersect by \",\", \"of\", \"from\", \"'s\"",
-6.075346031088684),
("dayminute", -3.166625134524323),
("Mawlidyear (latent)", -6.480811139196849),
("from <datetime> - <datetime> (interval)on <day>",
-6.075346031088684),
("<datetime> - <datetime> (interval)tomorrow",
-6.480811139196849),
("Jumu'atul-Widayear (latent)", -5.564520407322694),
("minuteday", -2.7313070632664775),
("absorption of , after named dayintersect",
-5.787663958636903),
("intersectyear (latent)", -6.480811139196849),
("Orthodox Easter Sundayyear (latent)", -6.480811139196849),
("time-of-day (latent)in|within|after <duration>",
-6.480811139196849),
("<ordinal> <cycle> of <time>year (latent)",
-6.480811139196849),
("intersecthhhmm", -6.075346031088684),
("the <day-of-month> (ordinal)in|during the <part-of-day>",
-6.480811139196849),
("Boss's Dayyear (latent)", -6.075346031088684),
("hhhmmintersect by \",\", \"of\", \"from\", \"'s\"",
-6.480811139196849),
("Global Youth Service Dayyear (latent)", -6.480811139196849),
("Dhanterasin|during <named-month>|year", -6.480811139196849),
("tonight<time-of-day> o'clock", -6.480811139196849),
("Tisha B'Avyear (latent)", -6.480811139196849),
("Isra and Mi'rajyear (latent)", -5.564520407322694),
("at <time-of-day>on <day>", -4.871373226762748),
("at <time-of-day>absorption of , after named day",
-6.075346031088684),
("time-of-day (latent)<time> <part-of-day>",
-5.787663958636903),
("Christmasyear (latent)", -6.075346031088684),
("Saturdayintersect", -6.480811139196849),
("Naraka Chaturdashiyear (latent)", -6.075346031088684),
("Thai Pongalin|during <named-month>|year", -6.480811139196849),
("dayweek", -6.480811139196849),
("Easter Sundayyear (latent)", -5.787663958636903),
("between <time-of-day> and <time-of-day> (interval)on <day>",
-6.075346031088684),
("weekyear", -5.382198850528739),
("King's Dayyear (latent)", -4.976733742420574),
("hh:mmin|during the <part-of-day>", -5.564520407322694),
("<cycle> after|before <time><time-of-day> am|pm",
-6.075346031088684),
("first|second|third|fourth|fifth <day-of-week> of <time>year (latent)",
-5.787663958636903),
("Hanukkahyear (latent)", -5.787663958636903),
("Rama Navamiyear (latent)", -6.480811139196849),
("February<time> <part-of-day>", -6.480811139196849),
("time-of-day (latent)in|during the <part-of-day>",
-5.787663958636903),
("Great Lentyear (latent)", -6.480811139196849),
("tomorrowat <time-of-day>", -5.787663958636903),
("hhmm (latent)in|during the <part-of-day>",
-6.480811139196849),
("tomorrow<part-of-day> at <time-of-day>", -6.075346031088684),
("Ugadiyear (latent)", -5.094516778076958),
("Vaisakhiyear (latent)", -5.787663958636903),
("absorption of , after named dayintersect by \",\", \"of\", \"from\" for year",
-5.787663958636903),
("last <cycle> of <time>year (latent)", -5.787663958636903),
("at <time-of-day>tomorrow", -6.075346031088684),
("tomorrow<time-of-day> am|pm", -6.480811139196849),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-6.480811139196849),
("Diwaliyear (latent)", -6.480811139196849),
("between <time> and <time>on <day>", -6.075346031088684),
("Black Fridayyear (latent)", -6.075346031088684),
("the <ordinal> last <cycle> of <time>year (latent)",
-6.480811139196849),
("in|during the <part-of-day>at <time-of-day>",
-6.480811139196849),
("Chhathyear (latent)", -6.075346031088684),
("Vasant Panchamiyear (latent)", -6.480811139196849),
("Rabindra Jayantiyear (latent)", -5.228048170701481),
("this <part-of-day>at <time-of-day>", -5.228048170701481),
("St Patrick's Dayyear (latent)", -6.480811139196849),
("Thursday<time> (timezone)", -6.480811139196849),
("<day-of-month> (ordinal or number) of <month>in|during the <part-of-day>",
-6.480811139196849),
("Pargat Diwasyear (latent)", -5.228048170701481),
("<datetime> - <datetime> (interval)July", -6.075346031088684),
("on <day><named-month> <day-of-month> (non ordinal)",
-5.787663958636903),
("Februaryintersect", -6.480811139196849),
("Simchat Torahyear (latent)", -6.480811139196849),
("minuteyear", -6.480811139196849)],
n = 502},
koData =
ClassData{prior = -0.9472529574781219, unseen = -6.843749949006225,
likelihoods =
HashMap.fromList
[("Thursdayhhhmm", -4.645458704902203),
("hourday", -3.546846416234093),
("<hour-of-day> <integer><time-of-day> am|pm",
-6.149536101678477),
("<day-of-month> (ordinal)August", -6.149536101678477),
("dayhour", -3.5845867442169403),
("<time> timezoneyear (latent)", -5.456388921118531),
("<time-of-day> - <time-of-day> (interval)on <day>",
-5.2332453698043215),
("Tuesdayfrom|since|after <time>", -5.456388921118531),
("daymonth", -3.441485900576267),
("hourquarter", -5.2332453698043215),
("monthyear", -4.896773133183109),
("<time-of-day> am|pmyear (latent)", -5.456388921118531),
("Thai Pongalyear (latent)", -5.456388921118531),
("intersecthh:mm", -6.149536101678477),
("from <datetime> - <datetime> (interval)July",
-5.744070993570313),
("<day-of-month> (ordinal)Wednesday", -6.149536101678477),
("houryear", -4.357776632450422),
("from <time-of-day> - <time-of-day> (interval)July",
-6.149536101678477),
("<day-of-month> (ordinal)October", -6.149536101678477),
("<time-of-day> am|pmintersect by \",\", \"of\", \"from\", \"'s\"",
-5.456388921118531),
("hournograin", -4.896773133183109),
("<time-of-day> am|pmintersect", -4.896773133183109),
("Octoberyear (latent)", -6.149536101678477),
("Good Fridayyear (latent)", -5.744070993570313),
("time-of-day (latent)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("early morningat <time-of-day>", -6.149536101678477),
("until <time>on <day>", -5.456388921118531),
("part of days<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("time-of-day (latent)intersect", -5.456388921118531),
("todayin <number> (implicit minutes)", -6.149536101678477),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-5.456388921118531),
("this <part-of-day><time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("about|exactly <time-of-day>year (latent)",
-6.149536101678477),
("hh:mmon <day>", -4.896773133183109),
("hhhmmintersect", -5.744070993570313),
("absorption of , after named dayJuly", -5.2332453698043215),
("from|since|after <time>July", -5.744070993570313),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-5.2332453698043215),
("Clean Mondayyear (latent)", -6.149536101678477),
("monthhour", -6.149536101678477),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("hourmonth", -4.009469938182206),
("todayat <time-of-day>", -6.149536101678477),
("hhhmmyear (latent)", -4.896773133183109),
("from|since|after <time>December", -6.149536101678477),
("from|since|after <time><time-of-day> am|pm",
-6.149536101678477),
("<time-of-day> am|pmon <day>", -4.896773133183109),
("Mondayyear (latent)", -5.456388921118531),
("dayday", -4.009469938182206),
("on <day>September", -5.456388921118531),
("time-of-day (latent)September", -5.744070993570313),
("hourhour", -4.0700945599986404),
("time-of-day (latent)on <day>", -4.645458704902203),
("Thursdaydd/mm", -6.149536101678477),
("time-of-day (latent)<cycle> after|before <time>",
-5.744070993570313),
("dayyear", -3.1291112155341145),
("New Year's Dayyear (latent)", -5.2332453698043215),
("time-of-day (latent)Sunday", -5.744070993570313),
("Thursdayfrom|since|after <time>", -4.444788009440051),
("Thursdayat <time-of-day>", -4.540098189244376),
("<integer> to|till|before <hour-of-day>September",
-6.149536101678477),
("Aprilyear (latent)", -6.149536101678477),
("the <day-of-month> (ordinal)July", -6.149536101678477),
("the <day-of-month> (number)July", -6.149536101678477),
("monthminute", -6.149536101678477),
("<time-of-day> am|pmtomorrow", -5.744070993570313),
("Thursdayhh:mm", -5.2332453698043215),
("<day-of-month> (ordinal)Tuesday", -5.744070993570313),
("minutemonth", -4.009469938182206),
("time-of-day (latent)Friday", -5.744070993570313),
("minutehour", -6.149536101678477),
("part of daysat <time-of-day>", -5.0509238130103675),
("time-of-day (latent)this|last|next <cycle>",
-3.7981608445149995),
("Augustyear (latent)", -5.744070993570313),
("week-endin|during <named-month>|year", -6.149536101678477),
("time-of-day (latent)Tuesday", -5.744070993570313),
("tomorrowfrom <time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("tonight<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("Sundayyear (latent)", -5.2332453698043215),
("hourweek", -5.2332453698043215),
("the <day-of-month> (ordinal)Monday", -5.456388921118531),
("Christmasat <time-of-day>", -6.149536101678477),
("from|since|after <time>year (latent)", -5.0509238130103675),
("hhhmmon <day>", -5.2332453698043215),
("yesterday<time-of-day> am|pm", -6.149536101678477),
("<day-of-month> (ordinal)July", -5.456388921118531),
("intersect by \",\", \"of\", \"from\", \"'s\"hh:mm",
-6.149536101678477),
("Thursday<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("in|during <named-month>|yearyear (latent)",
-6.149536101678477),
("at <time-of-day>intersect", -5.2332453698043215),
("hh:mmyear (latent)", -4.763241740558586),
("Holiyear (latent)", -6.149536101678477),
("until <time><time-of-day> am|pm", -6.149536101678477),
("at <time-of-day>intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("dayminute", -3.316322757622261),
("yyyy-mm-ddhh:mm", -5.744070993570313),
("intersectfrom|since|after <time>", -5.744070993570313),
("intersectSeptember", -4.277733924776886),
("minuteday", -2.9925356805283636),
("absorption of , after named dayintersect",
-6.149536101678477),
("intersectyear (latent)", -6.149536101678477),
("Februaryin|during the <part-of-day>", -6.149536101678477),
("<duration> after|before|from|past <time>December",
-6.149536101678477),
("time-of-day (latent)July", -5.456388921118531),
("Saturdayyear (latent)", -6.149536101678477),
("hhhmmintersect by \",\", \"of\", \"from\", \"'s\"",
-6.149536101678477),
("<day-of-month> (ordinal)Monday", -4.896773133183109),
("at <time-of-day>on <day>", -5.2332453698043215),
("absorption of , after named daySeptember",
-4.896773133183109),
("Naraka Chaturdashiyear (latent)", -6.149536101678477),
("from|since|after <time>on <day>", -5.2332453698043215),
("dayweek", -6.149536101678477),
("Easter Sundayyear (latent)", -5.744070993570313),
("Thursday<time-of-day> am|pm", -4.896773133183109),
("weekyear", -5.744070993570313),
("time-of-day (latent)Thursday", -5.744070993570313),
("<named-month> <day-of-month> (non ordinal)until <time>",
-6.149536101678477),
("<day-of-month> (ordinal)April", -6.149536101678477),
("yyyy-mm-dd<time-of-day> - <time-of-day> (interval)",
-5.744070993570313),
("intersect by \",\", \"of\", \"from\" for yearhh:mm",
-5.456388921118531),
("Sundayfrom|since|after <time>", -6.149536101678477),
("absorption of , after named dayFebruary",
-5.2332453698043215),
("time-of-day (latent)in|during the <part-of-day>",
-5.744070993570313),
("July<integer> to|till|before <hour-of-day>",
-6.149536101678477),
("tomorrowat <time-of-day>", -6.149536101678477),
("daynograin", -5.744070993570313),
("Fridayin|during <named-month>|year", -6.149536101678477),
("<integer> to|till|before <hour-of-day>July",
-5.744070993570313),
("last <cycle> of <time>year (latent)", -5.744070993570313),
("tomorrow<time-of-day> am|pm", -6.149536101678477),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-5.456388921118531),
("Diwaliyear (latent)", -5.744070993570313),
("<time-of-day> - <time-of-day> (interval)July",
-6.149536101678477),
("this <part-of-day>at <time-of-day>", -5.2332453698043215),
("Fridayyear (latent)", -5.2332453698043215),
("time-of-day (latent)April", -6.149536101678477),
("minuteyear", -3.9523115243422575)],
n = 318}}),
("one eleven",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("after lunch/work/school",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("early morning",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in <number> (implicit minutes)",
Classifier{okData =
ClassData{prior = -1.329135947279942, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.3184537311185346),
("integer (0..19)", -1.2992829841302609)],
n = 9},
koData =
ClassData{prior = -0.30748469974796055,
unseen = -3.332204510175204,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.20479441264601328),
("integer (0..19)", -1.6863989535702288)],
n = 25}}),
("<ordinal> <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("daymonth", -1.791759469228055),
("ordinal (digits)quarter (grain)year (latent)",
-2.1972245773362196),
("quarteryear", -2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)day (grain)October",
-2.1972245773362196),
("ordinal (digits)day (grain)this|last|next <cycle>",
-2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.1972245773362196),
("weekmonth", -1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.1972245773362196)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("year (grain)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6635616461296463,
likelihoods = HashMap.fromList [("", 0.0)], n = 37},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from <datetime> - <datetime> (interval)",
Classifier{okData =
ClassData{prior = -1.3737155789130304, unseen = -4.532599493153256,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -3.4231762883809305),
("minuteminute", -2.91235066461494),
("the <day-of-month> (number)the <day-of-month> (ordinal)",
-3.828641396489095),
("<day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.4231762883809305),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.4231762883809305),
("hh:mmhh:mm", -2.91235066461494),
("dayday", -1.9568392195875037),
("the <day-of-month> (ordinal)the <day-of-month> (number)",
-3.828641396489095),
("the <day-of-month> (number)the <day-of-month> (number)",
-3.4231762883809305),
("<named-month>|<named-day> <day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.828641396489095),
("<time-of-day> am|pmtime-of-day (latent)", -3.828641396489095),
("hourhour", -3.4231762883809305),
("minutehour", -3.4231762883809305),
("<day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.828641396489095),
("the <day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.828641396489095),
("<time-of-day> am|pm<time-of-day> am|pm", -3.828641396489095),
("<day-of-month> (ordinal)the <day-of-month> (number)",
-3.828641396489095)],
n = 20},
koData =
ClassData{prior = -0.29191040856130207, unseen = -5.14166355650266,
likelihoods =
HashMap.fromList
[("hourday", -2.570849079588725),
("dayhour", -3.056356895370426),
("<day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("time-of-day (latent)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("time-of-day (latent)<day-of-month> (ordinal)",
-4.442651256490317),
("time-of-day (latent)intersect", -4.442651256490317),
("<day-of-month> (ordinal)time-of-day (latent)",
-3.7495040759303713),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-4.442651256490317),
("hh:mmtime-of-day (latent)", -3.5263605246161616),
("hh:mm<time-of-day> am|pm", -4.037186148382152),
("minuteminute", -3.5263605246161616),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("time-of-day (latent)time-of-day (latent)",
-3.5263605246161616),
("hh:mmhh:mm", -4.442651256490317),
("dayday", -1.916922612182061),
("the <day-of-month> (ordinal)the <day-of-month> (number)",
-4.037186148382152),
("the <day-of-month> (number)the <day-of-month> (number)",
-4.442651256490317),
("time-of-day (latent)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)intersect", -4.442651256490317),
("hourhour", -3.1898882879949486),
("time-of-day (latent)the <day-of-month> (ordinal)",
-4.442651256490317),
("dayyear", -4.442651256490317),
("the <day-of-month> (ordinal)time-of-day (latent)",
-4.442651256490317),
("the <day-of-month> (number)time-of-day (latent)",
-4.442651256490317),
("minutehour", -3.3440389678222067),
("the <day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("the <day-of-month> (number)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("hh:mmintersect", -4.037186148382152),
("time-of-day (latent)<day-of-month> (ordinal or number) of <month>",
-4.037186148382152),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) of <month>",
-4.037186148382152),
("time-of-day (latent)<time-of-day> am|pm", -4.442651256490317),
("time-of-day (latent)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("time-of-day (latent)the <day-of-month> (number)",
-4.037186148382152),
("the <day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("the <day-of-month> (number)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("the <day-of-month> (number)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("time-of-day (latent)<day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)the <day-of-month> (number)",
-4.442651256490317),
("the <day-of-month> (ordinal)intersect", -4.037186148382152),
("<named-month> <day-of-month> (non ordinal)time-of-day (latent)",
-4.442651256490317),
("the <day-of-month> (number)intersect", -4.037186148382152)],
n = 59}}),
("Saturday",
Classifier{okData =
ClassData{prior = -0.11778303565638351,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -2.1972245773362196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("the <cycle> of <time>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("week (grain)<named-month>|<named-day> <day-of-month> (ordinal)",
-1.845826690498331),
("weekmonth", -1.845826690498331),
("week (grain)October", -1.845826690498331),
("week (grain)<named-month> <day-of-month> (non ordinal)",
-1.845826690498331),
("weekday", -1.3350010667323402)],
n = 6},
koData =
ClassData{prior = -1.9459101490553135,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("second (grain) March", -1.5040773967762742),
("secondmonth", -1.5040773967762742)],
n = 1}}),
("number.number hours",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("from <time-of-day> - <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -0.7308875085427924,
unseen = -3.6888794541139363,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -2.5649493574615367),
("minuteminute", -1.8718021769015913),
("hh:mmhh:mm", -1.8718021769015913),
("<time-of-day> am|pmtime-of-day (latent)",
-2.5649493574615367),
("hourhour", -2.5649493574615367),
("hourminute", -2.5649493574615367),
("minutehour", -2.0541237336955462),
("time-of-day (latent)<time-of-day> sharp|exactly",
-2.9704144655697013),
("time-of-day (latent)hh:mm", -2.9704144655697013),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.5649493574615367)],
n = 13},
koData =
ClassData{prior = -0.6567795363890705,
unseen = -3.7376696182833684,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -1.9218125974762528),
("hh:mm<time-of-day> am|pm", -2.6149597780361984),
("minuteminute", -2.6149597780361984),
("time-of-day (latent)time-of-day (latent)",
-1.9218125974762528),
("hh:mmhh:mm", -3.0204248861443626),
("hourhour", -1.7676619176489945),
("minutehour", -1.7676619176489945),
("time-of-day (latent)<time-of-day> am|pm",
-3.0204248861443626)],
n = 14}}),
("integer 21..99",
Classifier{okData =
ClassData{prior = -0.916290731874155, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (20..90)integer (0..19)", -0.2876820724517809)],
n = 2},
koData =
ClassData{prior = -0.5108256237659907, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("integer (numeric)integer (numeric)", -0.2231435513142097)],
n = 3}}),
("Global Youth Service Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Tisha B'Av",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyy-mm-dd",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("year (latent)",
Classifier{okData =
ClassData{prior = -0.14681486833704485,
unseen = -5.393627546352362,
likelihoods =
HashMap.fromList
[("integer (numeric)", -2.7779564107075706e-2),
("intersect 2 numbers", -4.00277736869661)],
n = 215},
koData =
ClassData{prior = -1.9910923718485463,
unseen = -3.6635616461296463,
likelihoods =
HashMap.fromList
[("integer (numeric)", -1.55814461804655),
("negative numbers", -0.41871033485818493),
("compose by multiplication", -2.2512917986064953)],
n = 34}}),
("<time> for <duration>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -3.5553480614894135,
likelihoods =
HashMap.fromList
[("minuteminute", -2.833213344056216),
("<time-of-day> am|pm<integer> <unit-of-duration>",
-2.1400661634962708),
("dayday", -1.4469189829363254),
("hourminute", -1.916922612182061),
("hhhmm<integer> <unit-of-duration>", -2.833213344056216),
("intersect<integer> <unit-of-duration>", -2.1400661634962708),
("<day-of-month> (ordinal or number) <named-month><integer> <unit-of-duration>",
-2.4277482359480516),
("from|since|after <time><integer> <unit-of-duration>",
-2.1400661634962708)],
n = 12},
koData =
ClassData{prior = -1.9459101490553135, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("monthday", -1.540445040947149),
("December<integer> <unit-of-duration>", -1.540445040947149)],
n = 2}}),
("hhhmm",
Classifier{okData =
ClassData{prior = -2.247285585205863e-2,
unseen = -3.828641396489095,
likelihoods = HashMap.fromList [("", 0.0)], n = 44},
koData =
ClassData{prior = -3.8066624897703196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("as soon as possible",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Mahavir Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Monday",
Classifier{okData =
ClassData{prior = -0.21357410029805904,
unseen = -3.1354942159291497,
likelihoods = HashMap.fromList [("", 0.0)], n = 21},
koData =
ClassData{prior = -1.6486586255873816,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("dd/mm/yyyy",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yesterday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> quarter <year>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)year (latent)",
-0.6931471805599453),
("quarteryear", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Dayananda Saraswati Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh:mm:ss",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Hanukkah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("first|second|third|fourth|fifth <day-of-week> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6635616461296463,
likelihoods =
HashMap.fromList
[("daymonth", -0.8649974374866046),
("ordinals (first..twentieth,thirtieth,...)Tuesdaythis|last|next <cycle>",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)TuesdaySeptember",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)WednesdayOctober",
-2.538973871058276),
("ordinals (first..twentieth,thirtieth,...)Wednesdayintersect",
-2.538973871058276),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-1.6916760106710724),
("ordinals (first..twentieth,thirtieth,...)TuesdayOctober",
-2.538973871058276)],
n = 15},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("<hour-of-day> <integer>",
Classifier{okData =
ClassData{prior = -9.53101798043249e-2,
unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("at <time-of-day>integer (20..90)", -2.5649493574615367),
("time-of-day (latent)integer (numeric)", -2.159484249353372),
("time-of-day (latent)integer 21..99", -2.159484249353372),
("hour", -0.8602012652231115),
("at <time-of-day>integer (numeric)", -2.159484249353372),
("time-of-day (latent)integer (20..90)", -1.8718021769015913)],
n = 10},
koData =
ClassData{prior = -2.3978952727983707,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("hour", -1.3862943611198906),
("time-of-day (latent)integer (20..90)", -1.3862943611198906)],
n = 1}}),
("Rama Navami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<hour-of-day> quarter",
Classifier{okData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 2}}),
("half a <time-grain>",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 5},
koData =
ClassData{prior = -1.791759469228055, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1}}),
("King's Day",
Classifier{okData =
ClassData{prior = -0.11778303565638351,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -2.1972245773362196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("Valentine's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from the <day-of-month> (ordinal or number) to the <day-of-month> (ordinal or number) of <named-month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods =
HashMap.fromList
[("ordinal (digits)ordinal (digits)July", -1.9810014688665833),
("integer (numeric)integer (numeric)July", -1.9810014688665833),
("integer (numeric)ordinal (digits)July", -1.9810014688665833),
("ordinal (digits)integer (numeric)July", -1.9810014688665833),
("month", -0.8023464725249373)],
n = 12},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("April",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Maha Saptami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("end of month",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("week (grain)",
Classifier{okData =
ClassData{prior = -4.546237407675729e-2,
unseen = -4.477336814478207,
likelihoods = HashMap.fromList [("", 0.0)], n = 86},
koData =
ClassData{prior = -3.1135153092103742, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("<part-of-day> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.2188758248682006,
likelihoods =
HashMap.fromList
[("part of daysintersect by \",\", \"of\", \"from\", \"'s\"",
-2.4849066497880004),
("part of daysintersect", -2.4849066497880004),
("hourday", -0.9808292530117262),
("part of daysthe <day-of-month> (ordinal)",
-2.4849066497880004),
("part of daysthe <day-of-month> (number)",
-2.4849066497880004),
("part of daysthis <time>", -2.4849066497880004),
("part of daysthe <day-of-month> (ordinal or number) of <named-month>",
-2.4849066497880004),
("part of daysChristmas", -2.0794415416798357)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("from <time> for <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("<time-of-day> am|pm<integer> <unit-of-duration>",
-1.7047480922384253),
("dayday", -1.2992829841302609),
("hourminute", -1.7047480922384253),
("intersect<integer> <unit-of-duration>", -1.7047480922384253),
("<day-of-month> (ordinal or number) <named-month><integer> <unit-of-duration>",
-1.7047480922384253)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <day-of-week> from <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("integer (numeric)Fridaynow", -2.2512917986064953),
("integer (0..19)Tuesdaynow", -2.2512917986064953),
("integer (0..19)Sundaynow", -2.2512917986064953),
("integer (0..19)Fridaynow", -2.2512917986064953),
("daynograin", -0.9985288301111273),
("integer (numeric)Sundaynow", -2.2512917986064953),
("integer (numeric)Tuesdaynow", -2.2512917986064953)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("Shrove Tuesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("now",
Classifier{okData =
ClassData{prior = -6.899287148695143e-2,
unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14},
koData =
ClassData{prior = -2.70805020110221, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<day-of-month> (ordinal or number) of <named-month>",
Classifier{okData =
ClassData{prior = -0.7339691750802004,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -2.740840023925201),
("ordinals (first..twentieth,thirtieth,...)March",
-1.6422277352570913),
("ordinal (digits)February", -2.740840023925201),
("integer (numeric)February", -2.3353749158170367),
("month", -0.8690378470236094),
("ordinal (digits)March", -2.3353749158170367),
("integer (numeric)July", -2.740840023925201)],
n = 12},
koData =
ClassData{prior = -0.6539264674066639,
unseen = -3.5263605246161616,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.550597412411167),
("ordinal (digits)February", -2.803360380906535),
("month", -0.8574502318512216),
("integer (numeric)July", -1.550597412411167)],
n = 13}}),
("this <part-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("hour", -0.6931471805599453),
("part of days", -0.6931471805599453)],
n = 14},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Kaanum Pongal",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Yom Kippur",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> minutes to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (numeric)minute (grain)time-of-day (latent)",
-0.6931471805599453),
("minutehour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Rabindra Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("powers of tens",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Pargat Diwas",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Friday",
Classifier{okData =
ClassData{prior = -0.3184537311185346, unseen = -2.890371757896165,
likelihoods = HashMap.fromList [("", 0.0)], n = 16},
koData =
ClassData{prior = -1.2992829841302609,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6}}),
("in|during the <part-of-day>",
Classifier{okData =
ClassData{prior = -6.899287148695143e-2,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("early morning", -2.740840023925201),
("hour", -0.7259370033829361),
("part of days", -0.7949298748698876)],
n = 14},
koData =
ClassData{prior = -2.70805020110221, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("hour", -0.916290731874155),
("part of days", -0.916290731874155)],
n = 1}}),
("St Patrick's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("tomorrow",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods = HashMap.fromList [("", 0.0)], n = 22},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh(:mm) - <time-of-day> am|pm",
Classifier{okData =
ClassData{prior = -0.10536051565782628,
unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0116009116784799),
("hh:mm", -1.9924301646902063), ("hour", -1.0116009116784799),
("minute", -1.9924301646902063)],
n = 9},
koData =
ClassData{prior = -2.3025850929940455,
unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0986122886681098),
("hour", -1.0986122886681098)],
n = 1}}),
("this|last|next <cycle>",
Classifier{okData =
ClassData{prior = -0.42050298547270487,
unseen = -5.241747015059643,
likelihoods =
HashMap.fromList
[("week", -1.2474579162656747),
("month (grain)", -2.3460702049337847),
("year (grain)", -2.528391761727739),
("week (grain)", -1.2474579162656747),
("quarter", -3.6270040503958487), ("year", -2.528391761727739),
("month", -2.3460702049337847),
("quarter (grain)", -3.6270040503958487)],
n = 88},
koData =
ClassData{prior = -1.0691984034618165, unseen = -4.653960350157523,
likelihoods =
HashMap.fromList
[("week", -1.8111775550851565),
("month (grain)", -2.4471663218051534),
("year (grain)", -3.0349529867072724),
("second", -3.0349529867072724),
("week (grain)", -1.8111775550851565),
("day", -2.2464956263430023), ("quarter", -3.0349529867072724),
("year", -3.0349529867072724),
("second (grain) ", -3.0349529867072724),
("month", -2.4471663218051534),
("quarter (grain)", -3.0349529867072724),
("day (grain)", -2.2464956263430023)],
n = 46}}),
("Simchat Torah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("New Year's Eve",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)year (latent)",
-0.6931471805599453),
("quarteryear", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Raksha Bandhan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ashura",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ratha-Yatra",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Palm Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Eid al-Adha",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.890371757896165,
likelihoods = HashMap.fromList [("", 0.0)], n = 16},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("by <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -1.9459101490553135),
("time-of-day (latent)", -1.9459101490553135),
("<time-of-day> am|pm", -1.9459101490553135),
("hh:mm", -1.9459101490553135), ("hour", -1.540445040947149),
("minute", -1.540445040947149)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.4818380868927383,
unseen = -3.1780538303479458,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-1.5260563034950494),
("ordinal (digits)", -0.24512245803298496)],
n = 21},
koData =
ClassData{prior = -0.9614111671546247, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-0.6286086594223742),
("ordinal (digits)", -0.7621400520468967)],
n = 13}}),
("last weekend of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("October", -0.9555114450274363), ("July", -1.8718021769015913),
("month", -0.7731898882334817)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (number)",
Classifier{okData =
ClassData{prior = -0.8649974374866046,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 8},
koData =
ClassData{prior = -0.5465437063680699,
unseen = -2.5649493574615367,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 11}}),
("Lag BaOmer",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("fractional number",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14}}),
("Guru Ravidass Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Sunday",
Classifier{okData =
ClassData{prior = -0.40546510810816444,
unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -1.0986122886681098,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("Chinese New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("February",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods = HashMap.fromList [("", 0.0)], n = 13},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("minute (grain)",
Classifier{okData =
ClassData{prior = -7.696104113612832e-2,
unseen = -3.295836866004329,
likelihoods = HashMap.fromList [("", 0.0)], n = 25},
koData =
ClassData{prior = -2.6026896854443837,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("last|this|next <season>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> quarter",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.6931471805599453),
("quarter", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.6931471805599453),
("quarter", -0.6931471805599453)],
n = 1}}),
("Orthodox Good Friday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("time-of-day (latent)",
Classifier{okData =
ClassData{prior = -0.6970764586998348, unseen = -4.867534450455582,
likelihoods =
HashMap.fromList
[("integer (numeric)", -9.763846956391606e-2),
("integer (0..19)", -2.374905754573672)],
n = 127},
koData =
ClassData{prior = -0.689233281238809, unseen = -4.875197323201151,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.15800424914324832),
("integer (0..19)", -1.923095471289142)],
n = 128}}),
("beginning of year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("last <day-of-week> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("daymonth", -0.916290731874155),
("SundayMarch", -2.0149030205422647),
("MondayMarch", -2.0149030205422647),
("FridayOctober", -1.6094379124341003),
("Sundayintersect", -2.0149030205422647)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <unit-of-duration>",
Classifier{okData =
ClassData{prior = -0.6164133863285559, unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("week", -2.6642475784438173),
("integer (0..19)year (grain)", -3.22386336637924),
("integer (numeric)day (grain)", -2.6642475784438173),
("integer (0..19)second (grain) ", -3.917010546939185),
("integer (0..19)hour (grain)", -3.1060803307228566),
("second", -3.5115454388310208),
("integer (numeric)second (grain) ", -4.204692619390966),
("integer (numeric)year (grain)", -3.3573947590037623),
("day", -2.412933150162911), ("year", -2.6642475784438173),
("integer (numeric)week (grain)", -3.22386336637924),
("integer (0..19)month (grain)", -3.6938669956249752),
("integer (20..90)minute (grain)", -4.61015772749913),
("hour", -2.738355550597539), ("month", -3.3573947590037623),
("integer (numeric)minute (grain)", -2.5952547069568657),
("integer (0..19)minute (grain)", -3.22386336637924),
("integer (numeric)month (grain)", -4.204692619390966),
("minute", -2.167810692129926),
("integer (numeric)hour (grain)", -3.6938669956249752),
("integer (0..19)day (grain)", -3.6938669956249752),
("integer (0..19)week (grain)", -3.3573947590037623)],
n = 88},
koData =
ClassData{prior = -0.7762620872704519, unseen = -5.170483995038151,
likelihoods =
HashMap.fromList
[("week", -3.5553480614894135),
("integer (0..19)year (grain)", -4.0661736852554045),
("integer (numeric)day (grain)", -4.0661736852554045),
("integer (numeric)quarter (grain)", -4.0661736852554045),
("integer (numeric)year (grain)", -4.0661736852554045),
("day", -3.5553480614894135), ("quarter", -3.5553480614894135),
("year", -3.5553480614894135),
("integer (numeric)week (grain)", -4.0661736852554045),
("integer (0..19)month (grain)", -4.0661736852554045),
("hour", -1.157452788691043), ("month", -3.5553480614894135),
("integer (numeric)minute (grain)", -4.471638793363569),
("integer (numeric)month (grain)", -4.0661736852554045),
("minute", -4.471638793363569),
("integer (numeric)hour (grain)", -1.157452788691043),
("integer (0..19)day (grain)", -4.0661736852554045),
("integer (0..19)week (grain)", -4.0661736852554045),
("integer (0..19)quarter (grain)", -4.0661736852554045)],
n = 75}}),
("from the <day-of-month> (ordinal or number) to the <day-of-month> (ordinal or number) <named-month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("ordinal (digits)ordinal (digits)July", -1.3217558399823195),
("integer (numeric)integer (numeric)July", -1.3217558399823195),
("month", -0.7621400520468967)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Guru Gobind Singh Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hhmm (latent)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Krishna Janmashtami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> am|pm",
Classifier{okData =
ClassData{prior = -0.2584829177595186, unseen = -5.697093486505405,
likelihoods =
HashMap.fromList
[("from|since|after <time>", -3.7478219897473863),
("integer after|past <hour-of-day>", -4.307437777682809),
("at <time-of-day>", -2.3978952727983707),
("<time-of-day> o'clock", -4.59511985013459),
("half after|past <hour-of-day>", -4.59511985013459),
("second", -5.000584958242754),
("hh:mm:ss", -5.000584958242754),
("<hour-of-day> <integer>", -4.084294226368599),
("<integer> minutes to|till|before <hour-of-day>",
-5.000584958242754),
("time-of-day (latent)", -1.6863989535702288),
("hhmm (latent)", -5.000584958242754),
("hh:mm", -2.3978952727983707),
("quarter after|past <hour-of-day>", -3.4965075614664802),
("until <time>", -4.307437777682809),
("about|exactly <time-of-day>", -5.000584958242754),
("hour", -1.2393848425491918),
("<time-of-day> sharp|exactly", -5.000584958242754),
("minute", -1.7047480922384253)],
n = 139},
koData =
ClassData{prior = -1.4793847841859027, unseen = -4.624972813284271,
likelihoods =
HashMap.fromList
[("<integer> to|till|before <hour-of-day>", -3.228826155721369),
("from|since|after <time>", -3.228826155721369),
("at <time-of-day>", -3.5165082281731497),
("time-of-day (latent)", -1.1811333123561132),
("hh:mm", -3.5165082281731497),
("until <time>", -3.9219733362813143),
("hour", -1.0316015783851495), ("minute", -2.6692103677859462)],
n = 41}}),
("Yom Ha'atzmaut",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("on <day>",
Classifier{okData =
ClassData{prior = -0.2231435513142097, unseen = -4.04305126783455,
likelihoods =
HashMap.fromList
[("Thursday", -1.8281271133989299),
("absorption of , after named day", -2.639057329615259),
("intersect", -2.639057329615259),
("Saturday", -2.639057329615259),
("Friday", -2.9267394020670396), ("day", -0.8064758658669484),
("the <day-of-month> (ordinal)", -2.9267394020670396),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-2.639057329615259)],
n = 24},
koData =
ClassData{prior = -1.6094379124341003, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("intersect", -1.6094379124341003),
("day", -1.0498221244986778),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-1.6094379124341003)],
n = 6}}),
("Thiru Onam",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Thai Pongal",
Classifier{okData =
ClassData{prior = -0.5596157879354228, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -0.8472978603872037,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3}}),
("Vijayadashami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("part of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("March", -0.6931471805599453), ("month", -0.6931471805599453)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("a <unit-of-duration>",
Classifier{okData =
ClassData{prior = -1.0296194171811581,
unseen = -3.5553480614894135,
likelihoods =
HashMap.fromList
[("week", -2.1400661634962708),
("year (grain)", -2.4277482359480516),
("second", -2.833213344056216),
("week (grain)", -2.1400661634962708),
("day", -2.1400661634962708),
("minute (grain)", -2.833213344056216),
("year", -2.4277482359480516),
("second (grain) ", -2.833213344056216),
("minute", -2.833213344056216),
("day (grain)", -2.1400661634962708)],
n = 10},
koData =
ClassData{prior = -0.4418327522790392,
unseen = -3.9318256327243257,
likelihoods =
HashMap.fromList
[("hour (grain)", -2.3025850929940455),
("quarter", -1.3470736479666092),
("minute (grain)", -2.8134107167600364),
("hour", -2.3025850929940455),
("quarter (grain)", -1.3470736479666092),
("minute", -2.8134107167600364)],
n = 18}}),
("at the beginning|end of <year>",
Classifier{okData =
ClassData{prior = -0.13353139262452263,
unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("year (latent)", -1.2237754316221157),
("this|last|next <cycle>", -1.4469189829363254),
("year", -0.7537718023763802)],
n = 7},
koData =
ClassData{prior = -2.0794415416798357, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("this|last|next <cycle>", -0.916290731874155),
("year", -0.916290731874155)],
n = 1}}),
("Dhanteras",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Tu BiShvat",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Whit Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh:mm",
Classifier{okData =
ClassData{prior = -0.12260232209233239,
unseen = -4.2626798770413155,
likelihoods = HashMap.fromList [("", 0.0)], n = 69},
koData =
ClassData{prior = -2.159484249353372, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9}}),
("Holi",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("upcoming <integer> <cycle>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.02535169073515,
likelihoods =
HashMap.fromList
[("week", -2.3978952727983707),
("integer (0..19)year (grain)", -2.908720896564361),
("integer (numeric)day (grain)", -2.908720896564361),
("integer (numeric)quarter (grain)", -2.908720896564361),
("integer (numeric)year (grain)", -2.908720896564361),
("day", -2.3978952727983707), ("quarter", -2.3978952727983707),
("year", -2.3978952727983707),
("integer (numeric)week (grain)", -2.908720896564361),
("integer (0..19)month (grain)", -2.908720896564361),
("month", -2.3978952727983707),
("integer (numeric)month (grain)", -2.908720896564361),
("integer (0..19)day (grain)", -2.908720896564361),
("integer (0..19)week (grain)", -2.908720896564361),
("integer (0..19)quarter (grain)", -2.908720896564361)],
n = 20},
koData =
ClassData{prior = -infinity, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [], n = 0}}),
("Rosh Hashanah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <named-day> ago|back",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("integer (numeric)Thursday", -0.6931471805599453),
("day", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> upcoming <cycle>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.02535169073515,
likelihoods =
HashMap.fromList
[("week", -2.3978952727983707),
("integer (0..19)year (grain)", -2.908720896564361),
("integer (numeric)day (grain)", -2.908720896564361),
("integer (numeric)quarter (grain)", -2.908720896564361),
("integer (numeric)year (grain)", -2.908720896564361),
("day", -2.3978952727983707), ("quarter", -2.3978952727983707),
("year", -2.3978952727983707),
("integer (numeric)week (grain)", -2.908720896564361),
("integer (0..19)month (grain)", -2.908720896564361),
("month", -2.3978952727983707),
("integer (numeric)month (grain)", -2.908720896564361),
("integer (0..19)day (grain)", -2.908720896564361),
("integer (0..19)week (grain)", -2.908720896564361),
("integer (0..19)quarter (grain)", -2.908720896564361)],
n = 20},
koData =
ClassData{prior = -infinity, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [], n = 0}}),
("Holika Dahan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter of an hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("second (grain) ",
Classifier{okData =
ClassData{prior = -0.5108256237659907,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -0.916290731874155, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("ordinals (first..twentieth,thirtieth,...)",
Classifier{okData =
ClassData{prior = -3.077165866675366e-2,
unseen = -3.5263605246161616,
likelihoods = HashMap.fromList [("", 0.0)], n = 32},
koData =
ClassData{prior = -3.4965075614664802,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("Mawlid",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Jumu'atul-Wida",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<duration> after|before|from|past <time>",
Classifier{okData =
ClassData{prior = -0.7691330875378672, unseen = -4.189654742026425,
likelihoods =
HashMap.fromList
[("a <unit-of-duration>now", -3.481240089335692),
("<integer> <unit-of-duration>hhhmm", -3.481240089335692),
("a <unit-of-duration>Christmas", -3.481240089335692),
("minuteminute", -3.481240089335692),
("dayday", -3.481240089335692),
("<integer> <unit-of-duration>today", -3.481240089335692),
("<integer> <unit-of-duration>time-of-day (latent)",
-2.382627800667582),
("minutehour", -1.7764919970972666),
("daysecond", -3.481240089335692),
("a <unit-of-duration>right now", -3.481240089335692),
("minutenograin", -3.481240089335692),
("<integer> <unit-of-duration>Christmas", -3.481240089335692),
("<integer> <unit-of-duration>Easter Sunday",
-3.481240089335692),
("secondnograin", -3.481240089335692),
("<integer> <unit-of-duration><time-of-day> am|pm",
-2.5649493574615367),
("yearday", -2.7880929087757464),
("<integer> <unit-of-duration>noon|midnight|EOD|end of day",
-3.481240089335692),
("daynograin", -3.481240089335692),
("<integer> <unit-of-duration>now", -3.0757749812275272)],
n = 19},
koData =
ClassData{prior = -0.6225296133459919, unseen = -4.276666119016055,
likelihoods =
HashMap.fromList
[("quarterhour", -1.318240897874875),
("dayhour", -3.56953269648137),
("<integer> <unit-of-duration>intersect", -3.56953269648137),
("<integer> <unit-of-duration><day-of-month> (ordinal)",
-3.56953269648137),
("a <unit-of-duration><time-of-day> am|pm", -2.065455299705096),
("a <unit-of-duration>time-of-day (latent)",
-2.065455299705096),
("dayday", -2.8763855159214247),
("<integer> <unit-of-duration>time-of-day (latent)",
-3.56953269648137),
("a <unit-of-duration>noon|midnight|EOD|end of day",
-3.164067588373206),
("<integer> <unit-of-duration><day-of-month> (ordinal or number) <named-month>",
-3.56953269648137)],
n = 22}}),
("nth <day-of-week> of <month-or-greater>",
Classifier{okData =
ClassData{prior = -0.2876820724517809, unseen = -3.258096538021482,
likelihoods =
HashMap.fromList
[("daymonth", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-2.5257286443082556),
("ordinals (first..twentieth,thirtieth,...)Wednesdayintersect",
-2.120263536200091),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-1.6094379124341003),
("ordinals (first..twentieth,thirtieth,...)TuesdayOctober",
-2.120263536200091)],
n = 9},
koData =
ClassData{prior = -1.3862943611198906, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("daymonth", -1.1786549963416462),
("ordinals (first..twentieth,thirtieth,...)TuesdaySeptember",
-1.8718021769015913),
("ordinals (first..twentieth,thirtieth,...)WednesdayOctober",
-1.466337068793427)],
n = 3}}),
("quarter after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -2.03688192726104),
("time-of-day (latent)", -0.9382696385929302),
("hour", -0.7375989431307791)],
n = 10},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyy-mm",
Classifier{okData =
ClassData{prior = -1.0986122886681098,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.40546510810816444,
unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("until <time>",
Classifier{okData =
ClassData{prior = -1.252762968495368, unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("year (latent)", -2.159484249353372),
("time-of-day (latent)", -2.5649493574615367),
("year", -2.159484249353372),
("<time-of-day> am|pm", -1.8718021769015913),
("hh:mm", -2.159484249353372), ("hour", -2.159484249353372),
("minute", -1.6486586255873816)],
n = 8},
koData =
ClassData{prior = -0.3364722366212129,
unseen = -3.9318256327243257,
likelihoods =
HashMap.fromList
[("intersect", -2.3025850929940455),
("yesterday", -2.8134107167600364),
("day", -2.8134107167600364),
("time-of-day (latent)", -1.6094379124341003),
("<time-of-day> am|pm", -3.2188758248682006),
("hh:mm", -2.3025850929940455), ("hour", -1.4271163556401458),
("minute", -1.8325814637483102)],
n = 20}}),
("the <cycle> after|before <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods =
HashMap.fromList
[("day (grain)tomorrow", -1.252762968495368),
("dayday", -0.8472978603872037),
("day (grain)yesterday", -1.252762968495368)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("about|exactly <time-of-day>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -3.6109179126442243,
likelihoods =
HashMap.fromList
[("week", -1.791759469228055),
("hh(:mm) - <time-of-day> am|pm", -2.890371757896165),
("this|last|next <cycle>", -1.791759469228055),
("day", -2.4849066497880004),
("time-of-day (latent)", -2.890371757896165),
("hhmm (latent)", -2.4849066497880004),
("<time-of-day> am|pm", -2.890371757896165),
("hour", -2.1972245773362196),
("next <time>", -2.890371757896165),
("this|next <day-of-week>", -2.890371757896165),
("minute", -2.4849066497880004)],
n = 12},
koData =
ClassData{prior = -1.9459101490553135, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("dd/mm", -2.0794415416798357), ("day", -2.0794415416798357),
("time-of-day (latent)", -2.0794415416798357),
("hour", -2.0794415416798357)],
n = 2}}),
("Sukkot",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day> in <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("monthyear", -1.2992829841302609),
("Marcha <unit-of-duration>", -1.7047480922384253),
("March<integer> <unit-of-duration>", -1.7047480922384253),
("Vijayadashami<integer> <unit-of-duration>",
-1.7047480922384253),
("dayyear", -1.7047480922384253)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("World Vegan Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect by \",\", \"of\", \"from\", \"'s\"",
Classifier{okData =
ClassData{prior = -0.5596157879354228, unseen = -5.407171771460119,
likelihoods =
HashMap.fromList
[("intersectthis|last|next <cycle>", -4.709530201312334),
("Wednesday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("dayhour", -4.304065093204169),
("daymonth", -2.001480000210124),
("<named-month> <day-of-month> (non ordinal)Friday",
-4.709530201312334),
("Friday<named-month> <day-of-month> (non ordinal)",
-3.4567672328169663),
("Wednesdayintersect", -4.709530201312334),
("from <datetime> - <datetime> (interval)July",
-3.3232358401924436),
("Black Fridaythis|last|next <cycle>", -4.709530201312334),
("<part-of-day> of <time>February", -4.709530201312334),
("Saturday<time-of-day> am|pm", -4.709530201312334),
("Martin Luther King's Daythis|last|next <cycle>",
-4.304065093204169),
("hourmonth", -4.709530201312334),
("Fridayintersect by \",\", \"of\", \"from\" for year",
-4.0163830207523885),
("dayday", -2.458238402705839),
("the <day-of-month> (ordinal)February", -4.304065093204169),
("WednesdayOctober", -4.709530201312334),
("Wednesdaythis|last|next <cycle>", -4.304065093204169),
("intersect<named-month> <day-of-month> (non ordinal)",
-3.4567672328169663),
("dayyear", -4.0163830207523885),
("Saturday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("Thursdayhh:mm", -4.304065093204169),
("TuesdayOctober", -4.709530201312334),
("the <day-of-month> (ordinal)March", -3.6109179126442243),
("Mondaythis|last|next <cycle>", -3.7932394694381792),
("Fridayintersect", -4.0163830207523885),
("Thursday<datetime> - <datetime> (interval)",
-4.304065093204169),
("intersectOctober", -4.304065093204169),
("Thursday<time-of-day> - <time-of-day> (interval)",
-3.7932394694381792),
("Tuesdaythis|last|next <cycle>", -4.304065093204169),
("Sunday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("dayminute", -2.917770732084279),
("minuteday", -3.4567672328169663),
("this|last|next <cycle>Sunday", -4.709530201312334),
("Sundaythis|last|next <cycle>", -4.709530201312334),
("on <day><time-of-day> am|pm", -4.709530201312334),
("intersectintersect", -4.709530201312334),
("weekday", -4.709530201312334),
("dayweek", -3.6109179126442243),
("Monday<named-month> <day-of-month> (non ordinal)",
-4.304065093204169),
("<datetime> - <datetime> (interval)July", -3.7932394694381792),
("on <day><named-month> <day-of-month> (non ordinal)",
-4.0163830207523885)],
n = 76},
koData =
ClassData{prior = -0.8472978603872037, unseen = -5.220355825078324,
likelihoods =
HashMap.fromList
[("week-endJuly", -4.5217885770490405),
("week-endOctober", -3.828641396489095),
("daymonth", -1.7809485531238394),
("TuesdaySeptember", -4.5217885770490405),
("Wednesdayintersect", -4.5217885770490405),
("from <datetime> - <datetime> (interval)July",
-3.4231762883809305),
("from <time-of-day> - <time-of-day> (interval)July",
-4.5217885770490405),
("hournograin", -4.116323468940876),
("from|since|after <time>July", -4.116323468940876),
("hourmonth", -2.575878427993727),
("Fridaythis|last|next <cycle>", -4.5217885770490405),
("SundayFebruary", -4.5217885770490405),
("on <day>September", -3.828641396489095),
("WednesdayOctober", -4.5217885770490405),
("intersectnow", -4.116323468940876),
("week-endintersect", -4.5217885770490405),
("dayyear", -4.5217885770490405),
("FridayJuly", -3.6054978451748854),
("FridaySeptember", -4.116323468940876),
("the <day-of-month> (ordinal)July", -3.6054978451748854),
("WednesdayFebruary", -4.5217885770490405),
("minutemonth", -3.0177111802727663),
("Mondaythis|last|next <cycle>", -4.5217885770490405),
("SundayMarch", -4.5217885770490405),
("MondayFebruary", -4.116323468940876),
("Fridayintersect", -4.5217885770490405),
("intersectOctober", -4.5217885770490405),
("dayminute", -4.5217885770490405),
("SaturdaySeptember", -4.5217885770490405),
("intersectSeptember", -3.1354942159291497),
("Tuesdaynow", -4.116323468940876),
("MondayMarch", -4.5217885770490405),
("FridayOctober", -4.5217885770490405),
("daynograin", -4.116323468940876),
("<integer> to|till|before <hour-of-day>July",
-4.5217885770490405),
("Tuesdayintersect", -4.5217885770490405),
("<time-of-day> - <time-of-day> (interval)July",
-4.5217885770490405),
("<datetime> - <datetime> (interval)July", -4.5217885770490405),
("Sundayintersect", -4.5217885770490405)],
n = 57}}),
("last <time>",
Classifier{okData =
ClassData{prior = -0.7537718023763802, unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("Martin Luther King's Day", -2.5649493574615367),
("day", -1.1786549963416462), ("Sunday", -2.5649493574615367),
("Chinese New Year", -1.8718021769015913),
("Easter Sunday", -2.5649493574615367),
("hour", -2.5649493574615367), ("Tuesday", -2.5649493574615367),
("week-end", -2.5649493574615367)],
n = 8},
koData =
ClassData{prior = -0.6359887667199967, unseen = -3.367295829986474,
likelihoods =
HashMap.fromList
[("Monday", -2.639057329615259), ("Friday", -2.2335922215070942),
("day", -1.7227665977411035), ("Sunday", -2.639057329615259),
("hour", -1.540445040947149), ("week-end", -1.540445040947149)],
n = 9}}),
("March",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.295836866004329,
likelihoods = HashMap.fromList [("", 0.0)], n = 25},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<named-month>|<named-day> <day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("Octoberordinal (digits)", -2.0149030205422647),
("Thursdayordinal (digits)", -2.70805020110221),
("day", -2.3025850929940455),
("Augustordinal (digits)", -2.70805020110221),
("Marchordinals (first..twentieth,thirtieth,...)",
-2.3025850929940455),
("Tuesdayordinal (digits)", -2.70805020110221),
("Octoberordinals (first..twentieth,thirtieth,...)",
-2.70805020110221),
("month", -1.2039728043259361),
("Marchordinal (digits)", -2.70805020110221)],
n = 10},
koData =
ClassData{prior = -1.791759469228055, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("from|since|after <time>ordinal (digits)",
-1.9459101490553135),
("Augustordinal (digits)", -1.9459101490553135),
("month", -1.540445040947149)],
n = 2}}),
("Clean Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.6325225587435105, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-1.3350010667323402),
("ordinal (digits)", -0.3053816495511819)],
n = 17},
koData =
ClassData{prior = -0.7576857016975165, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-0.5306282510621704),
("ordinal (digits)", -0.8873031950009028)],
n = 15}}),
("<time> (timezone)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("<time-of-day> am|pm", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Easter Sunday",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("Christmas",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods = HashMap.fromList [("", 0.0)], n = 13},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime> - <datetime> (interval) timezone",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("minuteminute", -0.8109302162163288),
("hh:mmhh:mm", -1.5040773967762742),
("hhhmmhhhmm", -1.0986122886681098)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Isra and Mi'raj",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal or number) of <month>",
Classifier{okData =
ClassData{prior = -0.5679840376059393, unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -3.068052935133617),
("ordinals (first..twentieth,thirtieth,...)March",
-1.9694406464655074),
("ordinal (digits)this|last|next <cycle>", -2.374905754573672),
("integer (numeric)this|last|next <cycle>", -2.662587827025453),
("ordinal (digits)February", -3.068052935133617),
("integer (numeric)February", -2.662587827025453),
("month", -0.8708283577973976),
("ordinal (digits)March", -2.662587827025453),
("integer (numeric)July", -3.068052935133617)],
n = 17},
koData =
ClassData{prior = -0.8362480242006186, unseen = -3.58351893845611,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.6094379124341003),
("ordinal (digits)February", -2.8622008809294686),
("month", -0.916290731874155),
("integer (numeric)July", -1.6094379124341003)],
n = 13}}),
("decimal number",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<day-of-month>(ordinal or number)/<named-month>/year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)April", -0.6931471805599453),
("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Naraka Chaturdashi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyyqq",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("beginning of month",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("next <time>",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("Martin Luther King's Day", -2.0149030205422647),
("Halloween", -2.70805020110221),
("Boss's Day", -2.70805020110221),
("Monday", -2.3025850929940455), ("day", -1.0986122886681098),
("March", -2.70805020110221), ("month", -2.70805020110221),
("Tuesday", -2.3025850929940455)],
n = 10},
koData =
ClassData{prior = -1.791759469228055, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("Wednesday", -1.9459101490553135),
("Saturday", -1.9459101490553135), ("day", -1.540445040947149)],
n = 2}}),
("<time-of-day> sharp|exactly",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.1400661634962708),
("time-of-day (latent)", -2.1400661634962708),
("hhmm (latent)", -2.1400661634962708),
("<time-of-day> am|pm", -2.1400661634962708),
("hh:mm", -2.1400661634962708), ("hour", -1.7346010553881064),
("minute", -1.4469189829363254)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> closest <day> to <time>",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)Christmastoday",
-1.791759469228055),
("dayday", -1.0986122886681098),
("ordinal (digits)Christmastoday", -1.791759469228055)],
n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -1.3862943611198906),
("ordinals (first..twentieth,thirtieth,...)MondayOctober",
-1.3862943611198906)],
n = 1}}),
("Islamic New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Lent",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("negative numbers",
Classifier{okData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -3.713572066704308,
likelihoods =
HashMap.fromList
[("integer (numeric)", -5.129329438755058e-2),
("integer (0..19)", -2.995732273553991)],
n = 38}}),
("about|exactly <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("half a <time-grain>", -0.6931471805599453),
("minute", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Purim",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<time> before last|after next",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("Wednesday", -1.8718021769015913),
("Friday", -1.466337068793427), ("day", -1.1786549963416462),
("March", -1.8718021769015913), ("month", -1.8718021769015913)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("by the end of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("this|last|next <cycle>", -0.8109302162163288),
("year", -1.5040773967762742), ("month", -1.0986122886681098)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("half an hour (abbrev).",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hhmm (military) am|pm",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime> - <datetime> (interval)",
Classifier{okData =
ClassData{prior = -1.1631508098056809, unseen = -4.770684624465665,
likelihoods =
HashMap.fromList
[("intersecthh:mm", -3.6635616461296463),
("from|since|after <time>hh:mm", -3.152736022363656),
("minuteminute", -1.5841201044498106),
("<time> timezone<time> timezone", -3.3758795736778655),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.6635616461296463),
("hh:mmhh:mm", -2.5649493574615367),
("dayday", -2.5649493574615367),
("hhhmmhhhmm", -3.152736022363656),
("hourhour", -3.6635616461296463),
("<named-month> <day-of-month> (non ordinal)<named-month> <day-of-month> (non ordinal)",
-3.6635616461296463),
("intersect by \",\", \"of\", \"from\", \"'s\"hh:mm",
-3.6635616461296463),
("<time-of-day> am|pmhh:mm:ss", -4.069026754237811),
("hoursecond", -3.6635616461296463),
("<time-of-day> am|pm<time-of-day> am|pm", -3.3758795736778655),
("from|since|after <time>the <day-of-month> (ordinal)",
-3.152736022363656)],
n = 35},
koData =
ClassData{prior = -0.3746934494414107, unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("hhhmm<time> timezone", -4.204692619390966),
("<time> timezonehhhmm", -4.204692619390966),
("hourday", -3.00071981506503),
("<named-month> <day-of-month> (non ordinal)July",
-4.61015772749913),
("dayhour", -4.61015772749913),
("daymonth", -3.6938669956249752),
("from|since|after <time><day-of-month> (ordinal or number) of <month>",
-3.6938669956249752),
("<time-of-day> am|pmintersect", -4.61015772749913),
("MondayOctober", -4.204692619390966),
("from|since|after <time>hh:mm", -4.61015772749913),
("hh:mm<time-of-day> am|pm", -3.5115454388310208),
("hhhmmintersect", -4.61015772749913),
("minuteminute", -2.167810692129926),
("from|since|after <time><time-of-day> am|pm",
-3.917010546939185),
("hh:mmhh:mm", -3.917010546939185),
("dayday", -1.8067973465925955),
("from|since|after <time><day-of-month> (ordinal or number) <named-month>",
-3.6938669956249752),
("hhhmmhhhmm", -4.204692619390966),
("hourhour", -3.6938669956249752),
("hourminute", -4.61015772749913),
("minutehour", -3.6938669956249752),
("<time> timezonehh:mm", -4.61015772749913),
("hh:mm<time> timezone", -4.61015772749913),
("the <day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.61015772749913),
("from|since|after <time><day-of-month> (ordinal or number) of <named-month>",
-3.6938669956249752),
("hh:mmintersect", -3.6938669956249752),
("<named-month> <day-of-month> (non ordinal)August",
-4.61015772749913),
("Christmastoday", -3.917010546939185),
("about|exactly <time-of-day><time-of-day> am|pm",
-4.61015772749913),
("from|since|after <time>intersect", -3.1060803307228566),
("from|since|after <time>intersect by \",\", \"of\", \"from\", \"'s\"",
-3.6938669956249752),
("Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-4.204692619390966),
("<time-of-day> am|pmhh:mm", -4.61015772749913),
("from|since|after <time>the <day-of-month> (ordinal or number) of <named-month>",
-3.1060803307228566),
("the <day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.61015772749913),
("from|since|after <time>the <day-of-month> (ordinal)",
-4.61015772749913),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.204692619390966),
("Monday<named-month> <day-of-month> (non ordinal)",
-4.61015772749913),
("the <day-of-month> (ordinal)intersect", -4.204692619390966)],
n = 77}}),
("Tuesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("New Year's Day",
Classifier{okData =
ClassData{prior = -1.8718021769015913,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.1670540846631662,
unseen = -2.5649493574615367,
likelihoods = HashMap.fromList [("", 0.0)], n = 11}}),
("fortnight",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> and an half hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Laylat al-Qadr",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Boghi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("at the beginning|end of <named-month>",
Classifier{okData =
ClassData{prior = -0.2231435513142097,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("January", -1.3862943611198906),
("April", -1.3862943611198906), ("month", -0.8754687373538999)],
n = 4},
koData =
ClassData{prior = -1.6094379124341003,
unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("October", -1.0986122886681098),
("month", -1.0986122886681098)],
n = 1}}),
("<time-of-day> - <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -1.116469906068116, unseen = -4.672828834461907,
likelihoods =
HashMap.fromList
[("from|since|after <time>hh:mm", -3.054001181677967),
("hh:mmtime-of-day (latent)", -3.2771447329921766),
("minuteminute", -1.667706820558076),
("<time> timezone<time> timezone", -3.2771447329921766),
("from|since|after <time><time-of-day> am|pm",
-3.970291913552122),
("hh:mmhh:mm", -2.466214516775848),
("<time-of-day> am|pmtime-of-day (latent)",
-3.2771447329921766),
("hhhmmhhhmm", -3.054001181677967),
("hourhour", -2.466214516775848),
("minutehour", -2.466214516775848),
("<time-of-day> am|pmhh:mm:ss", -3.970291913552122),
("hhhmmtime-of-day (latent)", -3.2771447329921766),
("hoursecond", -3.5648268054439574),
("from|since|after <time>time-of-day (latent)",
-3.2771447329921766),
("<time-of-day> am|pm<time-of-day> am|pm", -3.054001181677967)],
n = 37},
koData =
ClassData{prior = -0.3966544784260094, unseen = -5.220355825078324,
likelihoods =
HashMap.fromList
[("hhhmm<time> timezone", -4.116323468940876),
("<time> timezonehhhmm", -4.116323468940876),
("about|exactly <time-of-day>time-of-day (latent)",
-4.5217885770490405),
("until <time>time-of-day (latent)", -3.2690256085536724),
("from|since|after <time>hh:mm", -4.5217885770490405),
("hh:mmtime-of-day (latent)", -2.5068855565067754),
("hh:mm<time-of-day> am|pm", -3.2690256085536724),
("minuteminute", -2.4423470353692043),
("from|since|after <time><time-of-day> am|pm",
-3.6054978451748854),
("hh:mmhh:mm", -3.828641396489095),
("<time-of-day> am|pmtime-of-day (latent)", -4.116323468940876),
("hhhmmhhhmm", -4.116323468940876),
("hourhour", -2.03688192726104),
("from|since|after <time><integer> to|till|before <hour-of-day>",
-3.828641396489095),
("hourminute", -3.4231762883809305),
("minutehour", -1.6885752329928243),
("<time> timezonehh:mm", -4.5217885770490405),
("hh:mm<time> timezone", -4.5217885770490405),
("hhhmmtime-of-day (latent)", -3.828641396489095),
("until <time><time-of-day> am|pm", -4.116323468940876),
("about|exactly <time-of-day><time-of-day> am|pm",
-4.5217885770490405),
("<time-of-day> am|pmhh:mm", -4.5217885770490405),
("<part-of-day> at <time-of-day>time-of-day (latent)",
-3.828641396489095),
("from|since|after <time>time-of-day (latent)",
-3.0177111802727663),
("at <time-of-day>time-of-day (latent)", -3.828641396489095),
("<time> timezonetime-of-day (latent)", -3.828641396489095),
("<integer> to|till|before <hour-of-day><time-of-day> am|pm",
-4.5217885770490405),
("<integer> to|till|before <hour-of-day>time-of-day (latent)",
-3.828641396489095)],
n = 76}}),
("winter",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("nth <time> after <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("dayday", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-0.916290731874155)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("dayday", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)TuesdayChristmas",
-0.916290731874155)],
n = 1}}),
("Ugadi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<named-month> <day-of-month> (non ordinal)",
Classifier{okData =
ClassData{prior = -0.3646431135879093, unseen = -4.0943445622221,
likelihoods =
HashMap.fromList
[("Augustinteger (numeric)", -2.691243082785829),
("Marchinteger (numeric)", -2.9789251552376097),
("Aprilinteger (numeric)", -3.3843902633457743),
("month", -0.8194409058842375),
("Februaryinteger (numeric)", -2.1316272948504063),
("Septemberinteger (numeric)", -2.691243082785829),
("Octoberinteger (numeric)", -2.691243082785829),
("Julyinteger (numeric)", -1.9980959022258835)],
n = 25},
koData =
ClassData{prior = -1.1856236656577395,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("Augustinteger (numeric)", -2.3353749158170367),
("Marchinteger (numeric)", -2.740840023925201),
("Aprilinteger (numeric)", -2.740840023925201),
("month", -0.9490805546971459),
("from|since|after <time>integer (numeric)",
-2.3353749158170367),
("Julyinteger (numeric)", -1.6422277352570913)],
n = 11}}),
("Diwali",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("last night",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("this|next <day-of-week>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("Thursday", -2.3978952727983707),
("Wednesday", -2.3978952727983707),
("Saturday", -2.3978952727983707),
("Monday", -1.7047480922384253), ("day", -0.8938178760220964),
("Tuesday", -1.9924301646902063)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("ordinal (digits)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.143134726391533,
likelihoods = HashMap.fromList [("", 0.0)], n = 61},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter (grain)",
Classifier{okData =
ClassData{prior = -0.4700036292457356,
unseen = -3.0910424533583156,
likelihoods = HashMap.fromList [("", 0.0)], n = 20},
koData =
ClassData{prior = -0.9808292530117262, unseen = -2.639057329615259,
likelihoods = HashMap.fromList [("", 0.0)], n = 12}}),
("last <cycle> of <time>",
Classifier{okData =
ClassData{prior = -0.916290731874155, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("day (grain)October", -1.9924301646902063),
("daymonth", -1.4816045409242156),
("day (grain)intersect", -1.9924301646902063),
("weekmonth", -1.9924301646902063),
("week (grain)intersect", -2.3978952727983707),
("week (grain)September", -2.3978952727983707)],
n = 6},
koData =
ClassData{prior = -0.5108256237659907, unseen = -3.367295829986474,
likelihoods =
HashMap.fromList
[("daymonth", -2.2335922215070942),
("day (grain)May", -2.2335922215070942),
("week (grain)year (latent)", -1.9459101490553135),
("weekmonth", -1.7227665977411035),
("week (grain)October", -2.2335922215070942),
("weekyear", -1.9459101490553135),
("week (grain)intersect", -2.2335922215070942)],
n = 9}}),
("Chhath",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Vasant Panchami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month>(ordinal) <named-month> year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)April", -0.6931471805599453),
("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> last <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)week (grain)year (latent)",
-2.1972245773362196),
("daymonth", -2.1972245773362196),
("ordinal (digits)day (grain)May", -2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.1972245773362196),
("weekmonth", -1.791759469228055),
("ordinal (digits)week (grain)year (latent)",
-2.1972245773362196),
("weekyear", -1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.1972245773362196)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("Black Friday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("week-end",
Classifier{okData =
ClassData{prior = -1.252762968495368, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.3364722366212129,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("Great Lent",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Maundy Thursday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("day (grain)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6888794541139363,
likelihoods = HashMap.fromList [("", 0.0)], n = 38},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Vaisakhi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("right now",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("for <duration> from <time>",
Classifier{okData =
ClassData{prior = -0.3364722366212129, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("<integer> <unit-of-duration>intersect", -2.2512917986064953),
("<integer> <unit-of-duration><day-of-month> (ordinal)",
-2.2512917986064953),
("<integer> + '\"from|since|after <time>", -2.2512917986064953),
("dayday", -1.55814461804655),
("minutehour", -1.845826690498331),
("<integer> + '\"<time-of-day> am|pm", -2.2512917986064953),
("<integer> <unit-of-duration><day-of-month> (ordinal or number) <named-month>",
-2.2512917986064953)],
n = 5},
koData =
ClassData{prior = -1.252762968495368, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("dayhour", -1.8718021769015913),
("<integer> + '\"from|since|after <time>", -1.8718021769015913),
("<integer> <unit-of-duration>time-of-day (latent)",
-1.8718021769015913),
("minutehour", -1.8718021769015913)],
n = 2}}),
("compose by multiplication",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList [("integer (0..19)powers of tens", 0.0)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("end of year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("between <time> and <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("minuteminute", -1.791759469228055),
("hh:mmhh:mm", -2.1972245773362196),
("<time-of-day> am|pmtime-of-day (latent)",
-2.1972245773362196),
("hhhmmhhhmm", -2.1972245773362196),
("minutehour", -1.791759469228055),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.1972245773362196)],
n = 4},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -2.1972245773362196),
("hhhmmintersect", -2.1972245773362196),
("minuteminute", -1.791759469228055),
("minutehour", -1.791759469228055),
("hh:mmintersect", -2.1972245773362196),
("hhhmmtime-of-day (latent)", -2.1972245773362196)],
n = 4}}),
("<month> dd-dd (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("from|since|after <time>integer (numeric)integer (numeric)",
-2.740840023925201),
("from|since|after <time>ordinal (digits)ordinal (digits)",
-2.740840023925201),
("Julyinteger (numeric)integer (numeric)", -1.6422277352570913),
("Augustordinal (digits)integer (numeric)",
-2.3353749158170367),
("from|since|after <time>ordinal (digits)integer (numeric)",
-2.740840023925201),
("month", -0.8690378470236094),
("Augustordinal (digits)ordinal (digits)",
-2.3353749158170367)],
n = 12},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect by \",\", \"of\", \"from\" for year",
Classifier{okData =
ClassData{prior = -7.410797215372185e-2,
unseen = -3.5263605246161616,
likelihoods =
HashMap.fromList
[("Black Fridaythis|last|next <cycle>", -2.803360380906535),
("Martin Luther King's Daythis|last|next <cycle>",
-2.3978952727983707),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-2.1102132003465894),
("dayyear", -0.8574502318512216),
("intersectyear (latent)", -2.1102132003465894),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-1.8870696490323797)],
n = 13},
koData =
ClassData{prior = -2.639057329615259, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("Fridaythis|last|next <cycle>", -1.5040773967762742),
("dayyear", -1.5040773967762742)],
n = 1}}),
("part of days",
Classifier{okData =
ClassData{prior = -4.1672696400568074e-2,
unseen = -3.891820298110627,
likelihoods = HashMap.fromList [("", 0.0)], n = 47},
koData =
ClassData{prior = -3.1986731175506815,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("at the beginning|end of <week>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.330733340286331,
likelihoods =
HashMap.fromList
[("week", -0.706570200892086),
("this|last|next <cycle>", -0.8209805520698302),
("about|exactly <time-of-day>", -2.70805020110221)],
n = 36},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Eid al-Fitr",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("summer",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Trinity Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime>/<datetime> (interval)",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("secondsecond", -0.916290731874155),
("intersectintersect", -0.916290731874155)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("hh:mm:ssintersect", -0.916290731874155),
("secondsecond", -0.916290731874155)],
n = 1}}),
("Mid-day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("dd-dd <month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("integer (numeric)integer (numeric)September",
-1.9924301646902063),
("ordinal (digits)ordinal (digits)July", -1.9924301646902063),
("ordinal (digits)ordinal (digits)October",
-2.3978952727983707),
("integer (numeric)integer (numeric)July", -1.9924301646902063),
("month", -0.8938178760220964),
("ordinal (digits)ordinal (digits)August",
-2.3978952727983707)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("Pentecost",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("this <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.258096538021482,
likelihoods =
HashMap.fromList
[("Thursday", -2.5257286443082556),
("Martin Luther King's Day", -2.5257286443082556),
("Monday", -2.5257286443082556), ("day", -1.1394342831883648),
("Christmas", -2.5257286443082556),
("hour", -2.5257286443082556), ("winter", -2.5257286443082556),
("week-end", -2.5257286443082556),
("summer", -2.120263536200091)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [], n = 0}}),
("Shushan Purim",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("August",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}})] | 263,763 | classifiers :: Classifiers
classifiers
= HashMap.fromList
[("Bhai Dooj",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = -2.5649493574615367, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("integer (numeric)noon|midnight|EOD|end of day",
-0.916290731874155),
("hour", -0.916290731874155)],
n = 1},
koData =
ClassData{prior = -8.004270767353637e-2,
unseen = -3.332204510175204,
likelihoods =
HashMap.fromList
[("hour", -0.7308875085427924),
("integer (numeric)time-of-day (latent)", -0.7308875085427924)],
n = 12}}),
("week",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time> timezone",
Classifier{okData =
ClassData{prior = -9.237332013101517e-2,
unseen = -4.23410650459726,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.4277482359480516),
("hhhmm", -1.65455834771457),
("<time-of-day> am|pm", -2.0222831278398874),
("hh:mm", -2.2735975561207935), ("hour", -1.821612432377736),
("minute", -1.128465251817791)],
n = 31},
koData =
ClassData{prior = -2.4277482359480516,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hhhmm", -1.3862943611198906), ("hh:mm", -1.791759469228055),
("minute", -1.0986122886681098)],
n = 3}}),
("Thursday",
Classifier{okData =
ClassData{prior = -7.79615414697118e-2,
unseen = -3.6635616461296463,
likelihoods = HashMap.fromList [("", 0.0)], n = 37},
koData =
ClassData{prior = -2.5902671654458267,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3}}),
("integer (numeric)",
Classifier{okData =
ClassData{prior = -0.53208562319284, unseen = -6.186208623900494,
likelihoods = HashMap.fromList [("", 0.0)], n = 484},
koData =
ClassData{prior = -0.8852249122992647, unseen = -5.834810737062605,
likelihoods = HashMap.fromList [("", 0.0)], n = 340}}),
("<year> (bc|ad)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the nth <day-of-week> of <month-or-greater>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -0.6931471805599453),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-0.6931471805599453)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<duration> hence|ago",
Classifier{okData =
ClassData{prior = -5.406722127027582e-2,
unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("week", -1.563975538357343), ("day", -1.8152899666382492),
("year", -2.662587827025453),
("<integer> <unit-of-duration>", -1.0531499145913523),
("a <unit-of-duration>", -2.662587827025453),
("month", -2.662587827025453),
("fortnight", -2.662587827025453)],
n = 18},
koData =
ClassData{prior = -2.9444389791664407,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("year", -1.5040773967762742),
("<integer> <unit-of-duration>", -1.5040773967762742)],
n = 1}}),
("noon|midnight|EOD|end of day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Karva Chauth",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<cycle> after|before <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("day (grain)tomorrow", -1.6739764335716716),
("dayday", -1.1631508098056809),
("day (grain)yesterday", -1.6739764335716716)],
n = 4},
koData =
ClassData{prior = -0.6931471805599453, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("dayhour", -1.6739764335716716),
("year (grain)Christmas", -2.0794415416798357),
("dayday", -2.0794415416798357),
("day (grain)intersect", -1.6739764335716716),
("day (grain)Easter Sunday", -2.0794415416798357),
("yearday", -2.0794415416798357)],
n = 4}}),
("Easter Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Navaratri",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Martin Luther King's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("integer (20..90)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Shemini Atzeret",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in <duration> at <time-of-day>",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("dayhour", -1.3862943611198906),
("yearhour", -1.3862943611198906),
("<integer> <unit-of-duration><time-of-day> am|pm",
-0.9808292530117262)],
n = 2},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("dayhour", -1.3862943611198906),
("yearhour", -1.3862943611198906),
("<integer> <unit-of-duration>time-of-day (latent)",
-0.9808292530117262)],
n = 2}}),
("Maha Shivaratri",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ramadan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Lazarus Saturday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect 2 numbers",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("compose by multiplicationinteger (0..19)",
-0.2231435513142097)],
n = 3},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("powers of tensinteger (0..19)", -0.2231435513142097)],
n = 3}}),
("mm/yyyy",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("from|since|after <time>",
Classifier{okData =
ClassData{prior = -1.701375407759786, unseen = -4.51085950651685,
likelihoods =
HashMap.fromList
[("<day-of-month> (ordinal or number) <named-month>",
-3.8066624897703196),
("July", -3.8066624897703196),
("intersect", -3.8066624897703196),
("year (latent)", -3.4011973816621555),
("day", -2.4203681286504293),
("the <day-of-month> (ordinal)", -3.4011973816621555),
("the <day-of-month> (number)", -3.8066624897703196),
("time-of-day (latent)", -2.5538995212749516),
("year", -3.4011973816621555),
("<time-of-day> am|pm", -2.5538995212749516),
("hh:mm", -2.890371757896165),
("<day-of-month> (ordinal)", -3.4011973816621555),
("hour", -1.9348603128687285), ("month", -3.4011973816621555),
("minute", -2.890371757896165),
("August", -3.8066624897703196)],
n = 27},
koData =
ClassData{prior = -0.201421728167374, unseen = -5.631211781821365,
likelihoods =
HashMap.fromList
[("<integer> to|till|before <hour-of-day>", -4.018183201256536),
("week", -4.9344739331306915),
("<day-of-month> (ordinal or number) <named-month>",
-4.9344739331306915),
("today", -4.9344739331306915),
("intersect", -2.9885637840753785),
("<time> for <duration>", -4.241326752570746),
("second", -4.9344739331306915), ("now", -3.3250360206965914),
("tomorrow", -4.529008825022527),
("this|last|next <cycle>", -4.9344739331306915),
("day", -1.7774735119805785),
("the <day-of-month> (ordinal)", -4.529008825022527),
("the <day-of-month> (number)", -3.548179572010801),
("time-of-day (latent)", -2.492126897761487),
("<time-of-day> am|pm", -4.241326752570746),
("hh:mm", -4.529008825022527), ("nograin", -3.3250360206965914),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-4.529008825022527),
("<named-month>|<named-day> <day-of-month> (ordinal)",
-4.9344739331306915),
("<day-of-month> (ordinal)", -3.835861644462582),
("Easter Sunday", -4.9344739331306915),
("Christmas", -4.241326752570746),
("hour", -2.3317842476863078), ("month", -4.9344739331306915),
("<datetime> - <datetime> (interval)", -2.7372493557944724),
("<time-of-day> - <time-of-day> (interval)",
-2.9885637840753785),
("<named-month> <day-of-month> (non ordinal)",
-4.529008825022527),
("minute", -1.9900349539642512),
("right now", -4.9344739331306915),
("<month> dd-dd (interval)", -4.241326752570746),
("part of days", -4.9344739331306915),
("dd-dd <month> (interval)", -4.529008825022527)],
n = 121}}),
("integer after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("integer (numeric)noon|midnight|EOD|end of day",
-1.791759469228055),
("hour", -0.8754687373538999),
("integer (numeric)time-of-day (latent)", -1.3862943611198906),
("integer (20..90)time-of-day (latent)", -1.791759469228055)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> last <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)week (grain)year (latent)",
-2.268683541318364),
("daymonth", -2.268683541318364),
("ordinal (digits)day (grain)May", -2.6741486494265287),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.6741486494265287),
("weekmonth", -1.7578579175523736),
("ordinal (digits)week (grain)October", -2.6741486494265287),
("ordinal (digits)week (grain)intersect", -2.6741486494265287),
("ordinal (digits)week (grain)year (latent)",
-2.6741486494265287),
("weekyear", -1.9810014688665833),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.6741486494265287),
("ordinals (first..twentieth,thirtieth,...)day (grain)May",
-2.6741486494265287)],
n = 9},
koData =
ClassData{prior = -infinity, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [], n = 0}}),
("Yom HaShoah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal or number) <named-month>",
Classifier{okData =
ClassData{prior = -1.1631508098056809, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("ordinal (digits)December", -1.6094379124341003),
("ordinal (digits)February", -2.3025850929940455),
("integer (numeric)April", -2.3025850929940455),
("month", -1.2039728043259361)],
n = 5},
koData =
ClassData{prior = -0.3746934494414107,
unseen = -3.4965075614664802,
likelihoods =
HashMap.fromList
[("ordinal (digits)October", -2.772588722239781),
("ordinal (digits)July", -2.0794415416798357),
("integer (numeric)September", -2.367123614131617),
("ordinal (digits)August", -2.772588722239781),
("ordinal (digits)April", -2.772588722239781),
("month", -0.9808292530117262),
("integer (numeric)July", -2.0794415416798357)],
n = 11}}),
("<time> <part-of-day>",
Classifier{okData =
ClassData{prior = -0.19105523676270922,
unseen = -4.6443908991413725,
likelihoods =
HashMap.fromList
[("<day-of-month> (ordinal)in|during the <part-of-day>",
-3.9415818076696905),
("dayhour", -1.499234772300486),
("Mondayearly morning", -3.536116699561526),
("time-of-day (latent)tonight", -3.536116699561526),
("hourhour", -2.236833715431265),
("<time-of-day> o'clockin|during the <part-of-day>",
-3.9415818076696905),
("todaypart of days", -3.9415818076696905),
("minutehour", -2.6888188391743224),
("at <time-of-day>in|during the <part-of-day>",
-3.536116699561526),
("time-of-day (latent)this <part-of-day>", -3.9415818076696905),
("Mondayin|during the <part-of-day>", -3.9415818076696905),
("intersectpart of days", -3.0252910757955354),
("Saturdaypart of days", -3.9415818076696905),
("intersectin|during the <part-of-day>", -3.9415818076696905),
("<day-of-month> (ordinal or number) of <named-month>in|during the <part-of-day>",
-3.9415818076696905),
("the <day-of-month> (ordinal)in|during the <part-of-day>",
-3.9415818076696905),
("tomorrowpart of days", -2.33214389523559),
("hh:mmin|during the <part-of-day>", -3.0252910757955354),
("time-of-day (latent)in|during the <part-of-day>",
-3.9415818076696905),
("hhmm (latent)in|during the <part-of-day>",
-3.9415818076696905),
("yesterdaypart of days", -3.536116699561526),
("<day-of-month> (ordinal or number) of <month>in|during the <part-of-day>",
-3.9415818076696905),
("Mondaypart of days", -3.9415818076696905)],
n = 38},
koData =
ClassData{prior = -1.749199854809259, unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("dayhour", -3.068052935133617),
("yearhour", -3.068052935133617),
("monthhour", -3.068052935133617),
("hourhour", -1.9694406464655074),
("at <time-of-day>in|during the <part-of-day>",
-3.068052935133617),
("year (latent)in|during the <part-of-day>",
-3.068052935133617),
("Februaryin|during the <part-of-day>", -3.068052935133617),
("tomorrowpart of days", -3.068052935133617),
("time-of-day (latent)in|during the <part-of-day>",
-2.151762203259462)],
n = 8}}),
("dd/mm",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods = HashMap.fromList [("", 0.0)], n = 28}}),
("today",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("at <time-of-day>",
Classifier{okData =
ClassData{prior = -0.22957444164450025,
unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("<time> timezone", -3.917010546939185),
("noon|midnight|EOD|end of day", -4.204692619390966),
("integer after|past <hour-of-day>", -3.917010546939185),
("<time-of-day> o'clock", -4.61015772749913),
("half after|past <hour-of-day>", -4.61015772749913),
("hhhmm", -3.6938669956249752),
("<hour-of-day> <integer>", -3.917010546939185),
("time-of-day (latent)", -1.6397432619294292),
("hhmm (latent)", -3.917010546939185),
("<time-of-day> am|pm", -2.0074680420547466),
("hh:mm", -3.3573947590037623),
("about|exactly <time-of-day>", -4.204692619390966),
("hour", -1.11365016603265),
("<time-of-day> sharp|exactly", -4.61015772749913),
("minute", -1.9360090780726016)],
n = 93},
koData =
ClassData{prior = -1.5841201044498106,
unseen = -4.1588830833596715,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0076405104623831),
("<time-of-day> am|pm", -3.044522437723423),
("hour", -0.924258901523332)],
n = 24}}),
("December",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("absorption of , after named day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.58351893845611,
likelihoods =
HashMap.fromList
[("Wednesday", -2.8622008809294686),
("Saturday", -2.8622008809294686),
("Monday", -2.456735772821304), ("Friday", -1.6094379124341003),
("day", -0.8472978603872037), ("Sunday", -2.8622008809294686),
("on <day>", -2.169053700369523)],
n = 14},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("September",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("tonight",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("last|past|next <duration>",
Classifier{okData =
ClassData{prior = -3.17486983145803e-2,
unseen = -4.2626798770413155,
likelihoods =
HashMap.fromList
[("week", -2.456735772821304), ("second", -2.639057329615259),
("day", -2.3025850929940455), ("year", -2.639057329615259),
("<integer> <unit-of-duration>", -0.7827593392496325),
("hour", -2.639057329615259), ("month", -2.639057329615259),
("minute", -2.639057329615259)],
n = 31},
koData =
ClassData{prior = -3.4657359027997265,
unseen = -2.3978952727983707,
likelihoods =
HashMap.fromList
[("<integer> <unit-of-duration>", -1.6094379124341003),
("hour", -1.6094379124341003)],
n = 1}}),
("the ides of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("March", -0.6931471805599453), ("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (ordinal or number) of <named-month>",
Classifier{okData =
ClassData{prior = -0.7621400520468967, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)March",
-1.6094379124341003),
("ordinal (digits)February", -1.8971199848858813),
("month", -0.916290731874155),
("ordinal (digits)March", -1.8971199848858813)],
n = 7},
koData =
ClassData{prior = -0.6286086594223742,
unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.4816045409242156),
("month", -0.8938178760220964),
("integer (numeric)July", -1.4816045409242156)],
n = 8}}),
("integer (0..19)",
Classifier{okData =
ClassData{prior = -1.227009259181436e-2,
unseen = -4.418840607796598,
likelihoods = HashMap.fromList [("", 0.0)], n = 81},
koData =
ClassData{prior = -4.406719247264253, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("in|during <named-month>|year",
Classifier{okData =
ClassData{prior = -0.2744368457017603,
unseen = -3.8066624897703196,
likelihoods =
HashMap.fromList
[("<year> (bc|ad)", -1.9924301646902063),
("October", -3.0910424533583156),
("year (latent)", -1.2992829841302609),
("year", -0.9509762898620451), ("March", -2.6855773452501515),
("month", -2.3978952727983707)],
n = 19},
koData =
ClassData{prior = -1.4271163556401458,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("October", -1.5040773967762742),
("year (latent)", -1.5040773967762742),
("year", -1.5040773967762742), ("month", -1.5040773967762742)],
n = 6}}),
("<part-of-day> at <time-of-day>",
Classifier{okData =
ClassData{prior = -8.223809823697212e-2,
unseen = -4.406719247264253,
likelihoods =
HashMap.fromList
[("this <part-of-day>hh:mm", -3.7013019741124937),
("tonighthh:mm", -3.7013019741124937),
("hourhour", -0.8979415932059586),
("hourminute", -3.0081547935525483),
("in|during the <part-of-day>time-of-day (latent)",
-3.7013019741124937),
("this <part-of-day>time-of-day (latent)", -1.9965538818740682),
("early morningtime-of-day (latent)", -3.7013019741124937),
("tonight<time-of-day> o'clock", -3.7013019741124937),
("tonighttime-of-day (latent)", -2.7850112422383386),
("part of dayshh:mm", -3.7013019741124937),
("part of daystime-of-day (latent)", -1.6218604324326575)],
n = 35},
koData =
ClassData{prior = -2.538973871058276, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("hourhour", -1.4469189829363254),
("this <part-of-day>time-of-day (latent)", -2.1400661634962708),
("tonighttime-of-day (latent)", -2.1400661634962708),
("part of daystime-of-day (latent)", -2.1400661634962708)],
n = 3}}),
("between <time-of-day> and <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -0.40546510810816444,
unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("minuteminute", -1.6739764335716716),
("hh:mmhh:mm", -2.0794415416798357),
("<time-of-day> am|pmtime-of-day (latent)",
-2.0794415416798357),
("hhhmmhhhmm", -2.0794415416798357),
("minutehour", -1.6739764335716716),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.0794415416798357)],
n = 4},
koData =
ClassData{prior = -1.0986122886681098,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -1.791759469228055),
("minutehour", -1.3862943611198906),
("hhhmmtime-of-day (latent)", -1.791759469228055)],
n = 2}}),
("Halloween",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Passover",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from <month> dd-dd (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods =
HashMap.fromList
[("Julyinteger (numeric)integer (numeric)", -1.6094379124341003),
("Augustordinal (digits)integer (numeric)",
-1.6094379124341003),
("month", -0.916290731874155),
("Augustordinal (digits)ordinal (digits)",
-1.6094379124341003)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("Good Friday",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("October",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods = HashMap.fromList [("", 0.0)], n = 22},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("month (grain)",
Classifier{okData =
ClassData{prior = -0.12136085700426748,
unseen = -3.4965075614664802,
likelihoods = HashMap.fromList [("", 0.0)], n = 31},
koData =
ClassData{prior = -2.169053700369523, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("<integer> more <unit-of-duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (numeric)minute (grain)", -0.6931471805599453),
("minute", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> o'clock",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.0794415416798357),
("<part-of-day> at <time-of-day>", -2.0794415416798357),
("time-of-day (latent)", -1.1631508098056809),
("hour", -0.8266785731844679)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("Vesak",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Earth Hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in|within|after <duration>",
Classifier{okData =
ClassData{prior = -0.12260232209233239,
unseen = -4.709530201312334,
likelihoods =
HashMap.fromList
[("week", -3.3141860046725258),
("<integer> more <unit-of-duration>", -4.007333185232471),
("three-quarters of an hour", -3.0910424533583156),
("<integer> + '\"", -3.3141860046725258),
("number.number hours", -4.007333185232471),
("second", -3.6018680771243066),
("half a <time-grain>", -3.0910424533583156),
("day", -3.3141860046725258), ("year", -4.007333185232471),
("<integer> <unit-of-duration>", -1.6094379124341003),
("a <unit-of-duration>", -3.0910424533583156),
("quarter of an hour", -3.0910424533583156),
("hour", -2.503255788456197),
("about|exactly <duration>", -4.007333185232471),
("half an hour (abbrev).", -3.6018680771243066),
("<integer> and an half hour", -4.007333185232471),
("minute", -1.2992829841302609)],
n = 46},
koData =
ClassData{prior = -2.159484249353372, unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("day", -2.70805020110221), ("quarter", -2.70805020110221),
("year", -1.791759469228055),
("<integer> <unit-of-duration>", -1.791759469228055),
("a <unit-of-duration>", -2.3025850929940455)],
n = 6}}),
("the closest <day> to <time>",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("dayday", -1.0986122886681098),
("Christmastoday", -1.791759469228055),
("Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-1.791759469228055),
("Monday<named-month> <day-of-month> (non ordinal)",
-1.791759469228055)],
n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -1.3862943611198906),
("MondayOctober", -1.3862943611198906)],
n = 1}}),
("January",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("three-quarters of an hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Mattu Pongal",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Wednesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("half after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> + '\"",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("half <integer> (UK style hour-of-day)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Ganesh Chaturthi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("July",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.5553480614894135,
likelihoods = HashMap.fromList [("", 0.0)], n = 33},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> <part-of-day>",
Classifier{okData =
ClassData{prior = -0.12516314295400605,
unseen = -3.6888794541139363,
likelihoods =
HashMap.fromList
[("time-of-day (latent)tonight", -2.5649493574615367),
("hourhour", -1.3609765531356008),
("<time-of-day> o'clockin|during the <part-of-day>",
-2.9704144655697013),
("minutehour", -1.717651497074333),
("at <time-of-day>in|during the <part-of-day>",
-2.277267285009756),
("time-of-day (latent)this <part-of-day>", -2.9704144655697013),
("hh:mmin|during the <part-of-day>", -2.0541237336955462),
("time-of-day (latent)in|during the <part-of-day>",
-2.277267285009756),
("hhmm (latent)in|during the <part-of-day>",
-2.9704144655697013)],
n = 15},
koData =
ClassData{prior = -2.1400661634962708, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("hourhour", -1.466337068793427),
("time-of-day (latent)in|during the <part-of-day>",
-1.466337068793427)],
n = 2}}),
("hour (grain)",
Classifier{okData =
ClassData{prior = -1.3723081191451507, unseen = -2.995732273553991,
likelihoods = HashMap.fromList [("", 0.0)], n = 18},
koData =
ClassData{prior = -0.2923879634891936, unseen = -4.007333185232471,
likelihoods = HashMap.fromList [("", 0.0)], n = 53}}),
("Parsi New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Shavuot",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day> <duration> hence|ago",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("dayyear", -0.6931471805599453),
("Diwali<integer> <unit-of-duration>", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> quarter",
Classifier{okData =
ClassData{prior = -0.4700036292457356, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -1.1786549963416462),
("ordinals (first..twentieth,thirtieth,...)quarter (grain)",
-1.466337068793427),
("quarter", -0.7731898882334817)],
n = 5},
koData =
ClassData{prior = -0.9808292530117262,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.8109302162163288),
("quarter", -0.8109302162163288)],
n = 3}}),
("Boss's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Orthodox Easter Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("one twenty two",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("May",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect",
Classifier{okData =
ClassData{prior = -0.4907042205665696, unseen = -7.174724309836376,
likelihoods =
HashMap.fromList
[("Navaratriyear (latent)", -6.480811139196849),
("Karva Chauthyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)in|during the <part-of-day>",
-6.480811139196849),
("Maha Shivaratriyear (latent)", -6.480811139196849),
("Ramadanyear (latent)", -5.228048170701481),
("<datetime> - <datetime> (interval)on <day>",
-5.094516778076958),
("Bhai Doojyear (latent)", -6.480811139196849),
("hourday", -4.465908118654584),
("dayhour", -3.4362887014734254),
("<time-of-day> - <time-of-day> (interval)on <day>",
-5.094516778076958),
("Martin Luther King's Dayyear (latent)", -6.075346031088684),
("Shemini Atzeretyear (latent)", -6.480811139196849),
("daymonth", -4.465908118654584),
("monthday", -6.075346031088684),
("monthyear", -4.689051669968793),
("Yom Ha'atzmautyear (latent)", -6.480811139196849),
("Orthodox Good Fridayyear (latent)", -6.075346031088684),
("Vijayadashamiyear (latent)", -6.480811139196849),
("Thai Pongalyear (latent)", -5.787663958636903),
("Thiru Onamyear (latent)", -5.787663958636903),
("hhhmmabsorption of , after named day", -6.480811139196849),
("Tuesdaythe <day-of-month> (ordinal)", -6.480811139196849),
("from <datetime> - <datetime> (interval)July",
-5.564520407322694),
("<day-of-month> (ordinal)Wednesday", -6.480811139196849),
("Krishna Janmashtamiyear (latent)", -6.075346031088684),
("Guru Gobind Singh Jayantiyear (latent)", -6.480811139196849),
("houryear", -5.564520407322694),
("this|next <day-of-week>hh(:mm) - <time-of-day> am|pm",
-6.480811139196849),
("Christmas<time-of-day> am|pm", -6.480811139196849),
("last <day-of-week> of <time>year (latent)",
-6.480811139196849),
("<time-of-day> am|pmintersect by \",\", \"of\", \"from\", \"'s\"",
-5.787663958636903),
("intersectin|during <named-month>|year", -6.480811139196849),
("<time-of-day> am|pmintersect", -5.228048170701481),
("Earth Houryear (latent)", -6.480811139196849),
("Ganesh Chaturthiyear (latent)", -6.480811139196849),
("Octoberyear (latent)", -4.976733742420574),
("intersect<time-of-day> am|pm", -6.480811139196849),
("Mattu Pongalyear (latent)", -6.480811139196849),
("Saturday<part-of-day> at <time-of-day>", -6.480811139196849),
("Shavuotyear (latent)", -6.480811139196849),
("Parsi New Yearyear (latent)", -5.564520407322694),
("at <time-of-day>in|within|after <duration>",
-6.480811139196849),
("Thursdayhh(:mm) - <time-of-day> am|pm", -6.480811139196849),
("todayin|within|after <duration>", -6.480811139196849),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-6.075346031088684),
("Marchyear (latent)", -6.480811139196849),
("intersect by \",\", \"of\", \"from\", \"'s\"hhhmm",
-6.075346031088684),
("Sukkotyear (latent)", -6.075346031088684),
("hhhmmintersect", -6.075346031088684),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-6.075346031088684),
("Clean Mondayyear (latent)", -6.075346031088684),
("monthhour", -6.075346031088684),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.564520407322694),
("todayat <time-of-day>", -6.480811139196849),
("Thursday<time> timezone", -4.082915866398478),
("tonight<time-of-day> am|pm", -6.480811139196849),
("time-of-day (latent)tonight", -6.075346031088684),
("from|since|after <time>December", -6.480811139196849),
("<time-of-day> am|pmon <day>", -4.465908118654584),
("this <time>hh(:mm) - <time-of-day> am|pm",
-6.480811139196849),
("yyyy-mm-ddhh:mm:ss", -6.075346031088684),
("dayday", -3.7082224169570672),
("<time> <part-of-day>at <time-of-day>", -6.075346031088684),
("tonightat <time-of-day>", -5.382198850528739),
("<time-of-day> am|pmabsorption of , after named day",
-5.787663958636903),
("Dayananda Saraswati Jayantiyear (latent)",
-6.480811139196849),
("today<time-of-day> am|pm", -6.480811139196849),
("Februarythe <day-of-month> (ordinal)", -6.075346031088684),
("at <time-of-day><time> <part-of-day>", -6.480811139196849),
("<day-of-month> (ordinal)intersect", -6.075346031088684),
("hourhour", -3.5103966736271475),
("Mahavir Jayantiyear (latent)", -6.075346031088684),
("Navaratriin|during <named-month>|year", -6.480811139196849),
("Wednesdaythis|last|next <cycle>", -6.480811139196849),
("Lentyear (latent)", -6.480811139196849),
("intersect<named-month> <day-of-month> (non ordinal)",
-4.609008962295257),
("Boghiyear (latent)", -6.480811139196849),
("dayyear", -1.9216848917101639),
("Karva Chauthin|during <named-month>|year",
-6.480811139196849),
("Thursdayfrom|since|after <time>", -6.075346031088684),
("<time-of-day> o'clockin|during the <part-of-day>",
-6.480811139196849),
("Thursdayat <time-of-day>", -5.787663958636903),
("Islamic New Yearyear (latent)", -6.075346031088684),
("Laylat al-Qadryear (latent)", -5.564520407322694),
("part of days<time-of-day> am|pm", -6.480811139196849),
("Shrove Tuesdayyear (latent)", -6.480811139196849),
("intersect by \",\", \"of\", \"from\" for year<time-of-day> am|pm",
-5.787663958636903),
("hourminute", -6.075346031088684),
("<time-of-day> am|pmtomorrow", -5.564520407322694),
("Yom Kippuryear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)Tuesday", -5.787663958636903),
("<part-of-day> of <time>year (latent)", -6.480811139196849),
("minutehour", -5.228048170701481),
("Kaanum Pongalyear (latent)", -6.075346031088684),
("Maha Saptamiyear (latent)", -6.480811139196849),
("at <time-of-day>in|during the <part-of-day>",
-5.787663958636903),
("time-of-day (latent)tomorrow", -5.564520407322694),
("part of daysat <time-of-day>", -4.871373226762748),
("absorption of , after named day<named-month> <day-of-month> (non ordinal)",
-4.465908118654584),
("for <duration> from <time>December", -6.480811139196849),
("tomorrow<time-of-day> sharp|exactly", -6.480811139196849),
("Thursdayfrom <datetime> - <datetime> (interval)",
-5.228048170701481),
("intersect by \",\", \"of\", \"from\" for yearhhhmm",
-5.228048170701481),
("time-of-day (latent)this <part-of-day>", -6.480811139196849),
("Pentecostyear (latent)", -6.480811139196849),
("Thursdayfrom <time-of-day> - <time-of-day> (interval)",
-5.228048170701481),
("<day-of-month> (ordinal)February", -6.480811139196849),
("Eid al-Fitryear (latent)", -5.094516778076958),
("Vasant Panchamiin|during <named-month>|year",
-6.480811139196849),
("Mondayin|during the <part-of-day>", -6.480811139196849),
("Chhathin|during <named-month>|year", -6.480811139196849),
("Diwaliin|during <named-month>|year", -6.480811139196849),
("this <part-of-day><time-of-day> am|pm", -6.480811139196849),
("Vaisakhiin|during <named-month>|year", -6.480811139196849),
("Guru Ravidass Jayantiyear (latent)", -5.228048170701481),
("Raksha Bandhanyear (latent)", -6.480811139196849),
("daysecond", -6.075346031088684),
("tomorrowfrom <time-of-day> - <time-of-day> (interval)",
-6.075346031088684),
("Ratha-Yatrayear (latent)", -6.480811139196849),
("Ashurayear (latent)", -6.480811139196849),
("Tuesdayin|during <named-month>|year", -6.480811139196849),
("Chinese New Yearyear (latent)", -6.480811139196849),
("tomorrowintersect", -6.480811139196849),
("Lag BaOmeryear (latent)", -6.480811139196849),
("last weekend of <named-month>year (latent)",
-6.480811139196849),
("Eid al-Adhayear (latent)", -4.340744975700578),
("intersectin|during the <part-of-day>", -6.480811139196849),
("Palm Sundayyear (latent)", -6.480811139196849),
("Christmasat <time-of-day>", -6.480811139196849),
("Passoveryear (latent)", -6.480811139196849),
("Lazarus Saturdayyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal or number) <named-month>year (latent)",
-6.480811139196849),
("hhhmmon <day>", -5.564520407322694),
("Yom HaShoahyear (latent)", -6.075346031088684),
("Thursday<datetime> - <datetime> (interval)",
-6.075346031088684),
("<day-of-month> (ordinal or number) of <named-month>in|during the <part-of-day>",
-6.480811139196849),
("Septemberyear (latent)", -6.075346031088684),
("Thursday<time-of-day> - <time-of-day> (interval)",
-4.976733742420574),
("Halloweenyear (latent)", -6.480811139196849),
("<ordinal> last <cycle> of <time>year (latent)",
-6.075346031088684),
("from <time-of-day> - <time-of-day> (interval)on <day>",
-5.787663958636903),
("intersect by \",\", \"of\", \"from\", \"'s\"<time-of-day> am|pm",
-6.480811139196849),
("at <time-of-day>intersect", -5.564520407322694),
("Rosh Hashanahyear (latent)", -5.787663958636903),
("Dhanterasyear (latent)", -6.480811139196849),
("Tu BiShvatyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)December", -5.787663958636903),
("Holiyear (latent)", -5.787663958636903),
("<time-of-day> - <time-of-day> (interval)tomorrow",
-6.480811139196849),
("Holika Dahanyear (latent)", -5.787663958636903),
("at <time-of-day>intersect by \",\", \"of\", \"from\", \"'s\"",
-6.075346031088684),
("dayminute", -3.166625134524323),
("Mawlidyear (latent)", -6.480811139196849),
("from <datetime> - <datetime> (interval)on <day>",
-6.075346031088684),
("<datetime> - <datetime> (interval)tomorrow",
-6.480811139196849),
("Jumu'atul-Widayear (latent)", -5.564520407322694),
("minuteday", -2.7313070632664775),
("absorption of , after named dayintersect",
-5.787663958636903),
("intersectyear (latent)", -6.480811139196849),
("Orthodox Easter Sundayyear (latent)", -6.480811139196849),
("time-of-day (latent)in|within|after <duration>",
-6.480811139196849),
("<ordinal> <cycle> of <time>year (latent)",
-6.480811139196849),
("intersecthhhmm", -6.075346031088684),
("the <day-of-month> (ordinal)in|during the <part-of-day>",
-6.480811139196849),
("Boss's Dayyear (latent)", -6.075346031088684),
("hhhmmintersect by \",\", \"of\", \"from\", \"'s\"",
-6.480811139196849),
("Global Youth Service Dayyear (latent)", -6.480811139196849),
("Dhanterasin|during <named-month>|year", -6.480811139196849),
("tonight<time-of-day> o'clock", -6.480811139196849),
("Tisha B'Avyear (latent)", -6.480811139196849),
("Isra and Mi'rajyear (latent)", -5.564520407322694),
("at <time-of-day>on <day>", -4.871373226762748),
("at <time-of-day>absorption of , after named day",
-6.075346031088684),
("time-of-day (latent)<time> <part-of-day>",
-5.787663958636903),
("Christmasyear (latent)", -6.075346031088684),
("Saturdayintersect", -6.480811139196849),
("Naraka Chaturdashiyear (latent)", -6.075346031088684),
("Thai Pongalin|during <named-month>|year", -6.480811139196849),
("dayweek", -6.480811139196849),
("Easter Sundayyear (latent)", -5.787663958636903),
("between <time-of-day> and <time-of-day> (interval)on <day>",
-6.075346031088684),
("weekyear", -5.382198850528739),
("King's Dayyear (latent)", -4.976733742420574),
("hh:mmin|during the <part-of-day>", -5.564520407322694),
("<cycle> after|before <time><time-of-day> am|pm",
-6.075346031088684),
("first|second|third|fourth|fifth <day-of-week> of <time>year (latent)",
-5.787663958636903),
("Hanukkahyear (latent)", -5.787663958636903),
("Rama Navamiyear (latent)", -6.480811139196849),
("February<time> <part-of-day>", -6.480811139196849),
("time-of-day (latent)in|during the <part-of-day>",
-5.787663958636903),
("Great Lentyear (latent)", -6.480811139196849),
("tomorrowat <time-of-day>", -5.787663958636903),
("hhmm (latent)in|during the <part-of-day>",
-6.480811139196849),
("tomorrow<part-of-day> at <time-of-day>", -6.075346031088684),
("Ugadiyear (latent)", -5.094516778076958),
("Vaisakhiyear (latent)", -5.787663958636903),
("absorption of , after named dayintersect by \",\", \"of\", \"from\" for year",
-5.787663958636903),
("last <cycle> of <time>year (latent)", -5.787663958636903),
("at <time-of-day>tomorrow", -6.075346031088684),
("tomorrow<time-of-day> am|pm", -6.480811139196849),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-6.480811139196849),
("Diwaliyear (latent)", -6.480811139196849),
("between <time> and <time>on <day>", -6.075346031088684),
("Black Fridayyear (latent)", -6.075346031088684),
("the <ordinal> last <cycle> of <time>year (latent)",
-6.480811139196849),
("in|during the <part-of-day>at <time-of-day>",
-6.480811139196849),
("Chhathyear (latent)", -6.075346031088684),
("Vasant Panchamiyear (latent)", -6.480811139196849),
("Rabindra Jayantiyear (latent)", -5.228048170701481),
("this <part-of-day>at <time-of-day>", -5.228048170701481),
("St Patrick's Dayyear (latent)", -6.480811139196849),
("Thursday<time> (timezone)", -6.480811139196849),
("<day-of-month> (ordinal or number) of <month>in|during the <part-of-day>",
-6.480811139196849),
("Pargat Diwasyear (latent)", -5.228048170701481),
("<datetime> - <datetime> (interval)July", -6.075346031088684),
("on <day><named-month> <day-of-month> (non ordinal)",
-5.787663958636903),
("Februaryintersect", -6.480811139196849),
("Simchat Torahyear (latent)", -6.480811139196849),
("minuteyear", -6.480811139196849)],
n = 502},
koData =
ClassData{prior = -0.9472529574781219, unseen = -6.843749949006225,
likelihoods =
HashMap.fromList
[("Thursdayhhhmm", -4.645458704902203),
("hourday", -3.546846416234093),
("<hour-of-day> <integer><time-of-day> am|pm",
-6.149536101678477),
("<day-of-month> (ordinal)August", -6.149536101678477),
("dayhour", -3.5845867442169403),
("<time> timezoneyear (latent)", -5.456388921118531),
("<time-of-day> - <time-of-day> (interval)on <day>",
-5.2332453698043215),
("Tuesdayfrom|since|after <time>", -5.456388921118531),
("daymonth", -3.441485900576267),
("hourquarter", -5.2332453698043215),
("monthyear", -4.896773133183109),
("<time-of-day> am|pmyear (latent)", -5.456388921118531),
("Thai Pongalyear (latent)", -5.456388921118531),
("intersecthh:mm", -6.149536101678477),
("from <datetime> - <datetime> (interval)July",
-5.744070993570313),
("<day-of-month> (ordinal)Wednesday", -6.149536101678477),
("houryear", -4.357776632450422),
("from <time-of-day> - <time-of-day> (interval)July",
-6.149536101678477),
("<day-of-month> (ordinal)October", -6.149536101678477),
("<time-of-day> am|pmintersect by \",\", \"of\", \"from\", \"'s\"",
-5.456388921118531),
("hournograin", -4.896773133183109),
("<time-of-day> am|pmintersect", -4.896773133183109),
("Octoberyear (latent)", -6.149536101678477),
("Good Fridayyear (latent)", -5.744070993570313),
("time-of-day (latent)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("early morningat <time-of-day>", -6.149536101678477),
("until <time>on <day>", -5.456388921118531),
("part of days<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("time-of-day (latent)intersect", -5.456388921118531),
("todayin <number> (implicit minutes)", -6.149536101678477),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-5.456388921118531),
("this <part-of-day><time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("about|exactly <time-of-day>year (latent)",
-6.149536101678477),
("hh:mmon <day>", -4.896773133183109),
("hhhmmintersect", -5.744070993570313),
("absorption of , after named dayJuly", -5.2332453698043215),
("from|since|after <time>July", -5.744070993570313),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-5.2332453698043215),
("Clean Mondayyear (latent)", -6.149536101678477),
("monthhour", -6.149536101678477),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("hourmonth", -4.009469938182206),
("todayat <time-of-day>", -6.149536101678477),
("hhhmmyear (latent)", -4.896773133183109),
("from|since|after <time>December", -6.149536101678477),
("from|since|after <time><time-of-day> am|pm",
-6.149536101678477),
("<time-of-day> am|pmon <day>", -4.896773133183109),
("Mondayyear (latent)", -5.456388921118531),
("dayday", -4.009469938182206),
("on <day>September", -5.456388921118531),
("time-of-day (latent)September", -5.744070993570313),
("hourhour", -4.0700945599986404),
("time-of-day (latent)on <day>", -4.645458704902203),
("Thursdaydd/mm", -6.149536101678477),
("time-of-day (latent)<cycle> after|before <time>",
-5.744070993570313),
("dayyear", -3.1291112155341145),
("New Year's Dayyear (latent)", -5.2332453698043215),
("time-of-day (latent)Sunday", -5.744070993570313),
("Thursdayfrom|since|after <time>", -4.444788009440051),
("Thursdayat <time-of-day>", -4.540098189244376),
("<integer> to|till|before <hour-of-day>September",
-6.149536101678477),
("Aprilyear (latent)", -6.149536101678477),
("the <day-of-month> (ordinal)July", -6.149536101678477),
("the <day-of-month> (number)July", -6.149536101678477),
("monthminute", -6.149536101678477),
("<time-of-day> am|pmtomorrow", -5.744070993570313),
("Thursdayhh:mm", -5.2332453698043215),
("<day-of-month> (ordinal)Tuesday", -5.744070993570313),
("minutemonth", -4.009469938182206),
("time-of-day (latent)Friday", -5.744070993570313),
("minutehour", -6.149536101678477),
("part of daysat <time-of-day>", -5.0509238130103675),
("time-of-day (latent)this|last|next <cycle>",
-3.7981608445149995),
("Augustyear (latent)", -5.744070993570313),
("week-endin|during <named-month>|year", -6.149536101678477),
("time-of-day (latent)Tuesday", -5.744070993570313),
("tomorrowfrom <time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("tonight<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("Sundayyear (latent)", -5.2332453698043215),
("hourweek", -5.2332453698043215),
("the <day-of-month> (ordinal)Monday", -5.456388921118531),
("Christmasat <time-of-day>", -6.149536101678477),
("from|since|after <time>year (latent)", -5.0509238130103675),
("hhhmmon <day>", -5.2332453698043215),
("yesterday<time-of-day> am|pm", -6.149536101678477),
("<day-of-month> (ordinal)July", -5.456388921118531),
("intersect by \",\", \"of\", \"from\", \"'s\"hh:mm",
-6.149536101678477),
("Thursday<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("in|during <named-month>|yearyear (latent)",
-6.149536101678477),
("at <time-of-day>intersect", -5.2332453698043215),
("hh:mmyear (latent)", -4.763241740558586),
("Holiyear (latent)", -6.149536101678477),
("until <time><time-of-day> am|pm", -6.149536101678477),
("at <time-of-day>intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("dayminute", -3.316322757622261),
("yyyy-mm-ddhh:mm", -5.744070993570313),
("intersectfrom|since|after <time>", -5.744070993570313),
("intersectSeptember", -4.277733924776886),
("minuteday", -2.9925356805283636),
("absorption of , after named dayintersect",
-6.149536101678477),
("intersectyear (latent)", -6.149536101678477),
("Februaryin|during the <part-of-day>", -6.149536101678477),
("<duration> after|before|from|past <time>December",
-6.149536101678477),
("time-of-day (latent)July", -5.456388921118531),
("Saturdayyear (latent)", -6.149536101678477),
("hhhmmintersect by \",\", \"of\", \"from\", \"'s\"",
-6.149536101678477),
("<day-of-month> (ordinal)Monday", -4.896773133183109),
("at <time-of-day>on <day>", -5.2332453698043215),
("absorption of , after named daySeptember",
-4.896773133183109),
("Naraka Chaturdashiyear (latent)", -6.149536101678477),
("from|since|after <time>on <day>", -5.2332453698043215),
("dayweek", -6.149536101678477),
("Easter Sundayyear (latent)", -5.744070993570313),
("Thursday<time-of-day> am|pm", -4.896773133183109),
("weekyear", -5.744070993570313),
("time-of-day (latent)Thursday", -5.744070993570313),
("<named-month> <day-of-month> (non ordinal)until <time>",
-6.149536101678477),
("<day-of-month> (ordinal)April", -6.149536101678477),
("yyyy-mm-dd<time-of-day> - <time-of-day> (interval)",
-5.744070993570313),
("intersect by \",\", \"of\", \"from\" for yearhh:mm",
-5.456388921118531),
("Sundayfrom|since|after <time>", -6.149536101678477),
("absorption of , after named dayFebruary",
-5.2332453698043215),
("time-of-day (latent)in|during the <part-of-day>",
-5.744070993570313),
("July<integer> to|till|before <hour-of-day>",
-6.149536101678477),
("tomorrowat <time-of-day>", -6.149536101678477),
("daynograin", -5.744070993570313),
("Fridayin|during <named-month>|year", -6.149536101678477),
("<integer> to|till|before <hour-of-day>July",
-5.744070993570313),
("last <cycle> of <time>year (latent)", -5.744070993570313),
("tomorrow<time-of-day> am|pm", -6.149536101678477),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-5.456388921118531),
("Diwaliyear (latent)", -5.744070993570313),
("<time-of-day> - <time-of-day> (interval)July",
-6.149536101678477),
("this <part-of-day>at <time-of-day>", -5.2332453698043215),
("Fridayyear (latent)", -5.2332453698043215),
("time-of-day (latent)April", -6.149536101678477),
("minuteyear", -3.9523115243422575)],
n = 318}}),
("one eleven",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("after lunch/work/school",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("early morning",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in <number> (implicit minutes)",
Classifier{okData =
ClassData{prior = -1.329135947279942, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.3184537311185346),
("integer (0..19)", -1.2992829841302609)],
n = 9},
koData =
ClassData{prior = -0.30748469974796055,
unseen = -3.332204510175204,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.20479441264601328),
("integer (0..19)", -1.6863989535702288)],
n = 25}}),
("<ordinal> <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("daymonth", -1.791759469228055),
("ordinal (digits)quarter (grain)year (latent)",
-2.1972245773362196),
("quarteryear", -2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)day (grain)October",
-2.1972245773362196),
("ordinal (digits)day (grain)this|last|next <cycle>",
-2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.1972245773362196),
("weekmonth", -1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.1972245773362196)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("year (grain)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6635616461296463,
likelihoods = HashMap.fromList [("", 0.0)], n = 37},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from <datetime> - <datetime> (interval)",
Classifier{okData =
ClassData{prior = -1.3737155789130304, unseen = -4.532599493153256,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -3.4231762883809305),
("minuteminute", -2.91235066461494),
("the <day-of-month> (number)the <day-of-month> (ordinal)",
-3.828641396489095),
("<day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.4231762883809305),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.4231762883809305),
("hh:mmhh:mm", -2.91235066461494),
("dayday", -1.9568392195875037),
("the <day-of-month> (ordinal)the <day-of-month> (number)",
-3.828641396489095),
("the <day-of-month> (number)the <day-of-month> (number)",
-3.4231762883809305),
("<named-month>|<named-day> <day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.828641396489095),
("<time-of-day> am|pmtime-of-day (latent)", -3.828641396489095),
("hourhour", -3.4231762883809305),
("minutehour", -3.4231762883809305),
("<day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.828641396489095),
("the <day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.828641396489095),
("<time-of-day> am|pm<time-of-day> am|pm", -3.828641396489095),
("<day-of-month> (ordinal)the <day-of-month> (number)",
-3.828641396489095)],
n = 20},
koData =
ClassData{prior = -0.29191040856130207, unseen = -5.14166355650266,
likelihoods =
HashMap.fromList
[("hourday", -2.570849079588725),
("dayhour", -3.056356895370426),
("<day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("time-of-day (latent)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("time-of-day (latent)<day-of-month> (ordinal)",
-4.442651256490317),
("time-of-day (latent)intersect", -4.442651256490317),
("<day-of-month> (ordinal)time-of-day (latent)",
-3.7495040759303713),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-4.442651256490317),
("hh:mmtime-of-day (latent)", -3.5263605246161616),
("hh:mm<time-of-day> am|pm", -4.037186148382152),
("minuteminute", -3.5263605246161616),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("time-of-day (latent)time-of-day (latent)",
-3.5263605246161616),
("hh:mmhh:mm", -4.442651256490317),
("dayday", -1.916922612182061),
("the <day-of-month> (ordinal)the <day-of-month> (number)",
-4.037186148382152),
("the <day-of-month> (number)the <day-of-month> (number)",
-4.442651256490317),
("time-of-day (latent)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)intersect", -4.442651256490317),
("hourhour", -3.1898882879949486),
("time-of-day (latent)the <day-of-month> (ordinal)",
-4.442651256490317),
("dayyear", -4.442651256490317),
("the <day-of-month> (ordinal)time-of-day (latent)",
-4.442651256490317),
("the <day-of-month> (number)time-of-day (latent)",
-4.442651256490317),
("minutehour", -3.3440389678222067),
("the <day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("the <day-of-month> (number)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("hh:mmintersect", -4.037186148382152),
("time-of-day (latent)<day-of-month> (ordinal or number) of <month>",
-4.037186148382152),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) of <month>",
-4.037186148382152),
("time-of-day (latent)<time-of-day> am|pm", -4.442651256490317),
("time-of-day (latent)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("time-of-day (latent)the <day-of-month> (number)",
-4.037186148382152),
("the <day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("the <day-of-month> (number)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("the <day-of-month> (number)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("time-of-day (latent)<day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)the <day-of-month> (number)",
-4.442651256490317),
("the <day-of-month> (ordinal)intersect", -4.037186148382152),
("<named-month> <day-of-month> (non ordinal)time-of-day (latent)",
-4.442651256490317),
("the <day-of-month> (number)intersect", -4.037186148382152)],
n = 59}}),
("Saturday",
Classifier{okData =
ClassData{prior = -0.11778303565638351,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -2.1972245773362196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("the <cycle> of <time>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("week (grain)<named-month>|<named-day> <day-of-month> (ordinal)",
-1.845826690498331),
("weekmonth", -1.845826690498331),
("week (grain)October", -1.845826690498331),
("week (grain)<named-month> <day-of-month> (non ordinal)",
-1.845826690498331),
("weekday", -1.3350010667323402)],
n = 6},
koData =
ClassData{prior = -1.9459101490553135,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("second (grain) March", -1.5040773967762742),
("secondmonth", -1.5040773967762742)],
n = 1}}),
("number.number hours",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("from <time-of-day> - <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -0.7308875085427924,
unseen = -3.6888794541139363,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -2.5649493574615367),
("minuteminute", -1.8718021769015913),
("hh:mmhh:mm", -1.8718021769015913),
("<time-of-day> am|pmtime-of-day (latent)",
-2.5649493574615367),
("hourhour", -2.5649493574615367),
("hourminute", -2.5649493574615367),
("minutehour", -2.0541237336955462),
("time-of-day (latent)<time-of-day> sharp|exactly",
-2.9704144655697013),
("time-of-day (latent)hh:mm", -2.9704144655697013),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.5649493574615367)],
n = 13},
koData =
ClassData{prior = -0.6567795363890705,
unseen = -3.7376696182833684,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -1.9218125974762528),
("hh:mm<time-of-day> am|pm", -2.6149597780361984),
("minuteminute", -2.6149597780361984),
("time-of-day (latent)time-of-day (latent)",
-1.9218125974762528),
("hh:mmhh:mm", -3.0204248861443626),
("hourhour", -1.7676619176489945),
("minutehour", -1.7676619176489945),
("time-of-day (latent)<time-of-day> am|pm",
-3.0204248861443626)],
n = 14}}),
("integer 21..99",
Classifier{okData =
ClassData{prior = -0.916290731874155, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (20..90)integer (0..19)", -0.2876820724517809)],
n = 2},
koData =
ClassData{prior = -0.5108256237659907, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("integer (numeric)integer (numeric)", -0.2231435513142097)],
n = 3}}),
("Global Youth Service Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Tisha B'Av",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyy-mm-dd",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("year (latent)",
Classifier{okData =
ClassData{prior = -0.14681486833704485,
unseen = -5.393627546352362,
likelihoods =
HashMap.fromList
[("integer (numeric)", -2.7779564107075706e-2),
("intersect 2 numbers", -4.00277736869661)],
n = 215},
koData =
ClassData{prior = -1.9910923718485463,
unseen = -3.6635616461296463,
likelihoods =
HashMap.fromList
[("integer (numeric)", -1.55814461804655),
("negative numbers", -0.41871033485818493),
("compose by multiplication", -2.2512917986064953)],
n = 34}}),
("<time> for <duration>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -3.5553480614894135,
likelihoods =
HashMap.fromList
[("minuteminute", -2.833213344056216),
("<time-of-day> am|pm<integer> <unit-of-duration>",
-2.1400661634962708),
("dayday", -1.4469189829363254),
("hourminute", -1.916922612182061),
("hhhmm<integer> <unit-of-duration>", -2.833213344056216),
("intersect<integer> <unit-of-duration>", -2.1400661634962708),
("<day-of-month> (ordinal or number) <named-month><integer> <unit-of-duration>",
-2.4277482359480516),
("from|since|after <time><integer> <unit-of-duration>",
-2.1400661634962708)],
n = 12},
koData =
ClassData{prior = -1.9459101490553135, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("monthday", -1.540445040947149),
("December<integer> <unit-of-duration>", -1.540445040947149)],
n = 2}}),
("hhhmm",
Classifier{okData =
ClassData{prior = -2.247285585205863e-2,
unseen = -3.828641396489095,
likelihoods = HashMap.fromList [("", 0.0)], n = 44},
koData =
ClassData{prior = -3.8066624897703196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("as soon as possible",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Mahavir Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Monday",
Classifier{okData =
ClassData{prior = -0.21357410029805904,
unseen = -3.1354942159291497,
likelihoods = HashMap.fromList [("", 0.0)], n = 21},
koData =
ClassData{prior = -1.6486586255873816,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("dd/mm/yyyy",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yesterday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> quarter <year>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)year (latent)",
-0.6931471805599453),
("quarteryear", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Dayananda Saraswati Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh:mm:ss",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Hanukkah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("first|second|third|fourth|fifth <day-of-week> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6635616461296463,
likelihoods =
HashMap.fromList
[("daymonth", -0.8649974374866046),
("ordinals (first..twentieth,thirtieth,...)Tuesdaythis|last|next <cycle>",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)TuesdaySeptember",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)WednesdayOctober",
-2.538973871058276),
("ordinals (first..twentieth,thirtieth,...)Wednesdayintersect",
-2.538973871058276),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-1.6916760106710724),
("ordinals (first..twentieth,thirtieth,...)TuesdayOctober",
-2.538973871058276)],
n = 15},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("<hour-of-day> <integer>",
Classifier{okData =
ClassData{prior = -9.53101798043249e-2,
unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("at <time-of-day>integer (20..90)", -2.5649493574615367),
("time-of-day (latent)integer (numeric)", -2.159484249353372),
("time-of-day (latent)integer 21..99", -2.159484249353372),
("hour", -0.8602012652231115),
("at <time-of-day>integer (numeric)", -2.159484249353372),
("time-of-day (latent)integer (20..90)", -1.8718021769015913)],
n = 10},
koData =
ClassData{prior = -2.3978952727983707,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("hour", -1.3862943611198906),
("time-of-day (latent)integer (20..90)", -1.3862943611198906)],
n = 1}}),
("Rama Navami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<hour-of-day> quarter",
Classifier{okData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 2}}),
("half a <time-grain>",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 5},
koData =
ClassData{prior = -1.791759469228055, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1}}),
("King's Day",
Classifier{okData =
ClassData{prior = -0.11778303565638351,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -2.1972245773362196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("Valentine's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from the <day-of-month> (ordinal or number) to the <day-of-month> (ordinal or number) of <named-month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods =
HashMap.fromList
[("ordinal (digits)ordinal (digits)July", -1.9810014688665833),
("integer (numeric)integer (numeric)July", -1.9810014688665833),
("integer (numeric)ordinal (digits)July", -1.9810014688665833),
("ordinal (digits)integer (numeric)July", -1.9810014688665833),
("month", -0.8023464725249373)],
n = 12},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("April",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Maha Saptami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("end of month",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("week (grain)",
Classifier{okData =
ClassData{prior = -4.546237407675729e-2,
unseen = -4.477336814478207,
likelihoods = HashMap.fromList [("", 0.0)], n = 86},
koData =
ClassData{prior = -3.1135153092103742, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("<part-of-day> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.2188758248682006,
likelihoods =
HashMap.fromList
[("part of daysintersect by \",\", \"of\", \"from\", \"'s\"",
-2.4849066497880004),
("part of daysintersect", -2.4849066497880004),
("hourday", -0.9808292530117262),
("part of daysthe <day-of-month> (ordinal)",
-2.4849066497880004),
("part of daysthe <day-of-month> (number)",
-2.4849066497880004),
("part of daysthis <time>", -2.4849066497880004),
("part of daysthe <day-of-month> (ordinal or number) of <named-month>",
-2.4849066497880004),
("part of daysChristmas", -2.0794415416798357)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("from <time> for <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("<time-of-day> am|pm<integer> <unit-of-duration>",
-1.7047480922384253),
("dayday", -1.2992829841302609),
("hourminute", -1.7047480922384253),
("intersect<integer> <unit-of-duration>", -1.7047480922384253),
("<day-of-month> (ordinal or number) <named-month><integer> <unit-of-duration>",
-1.7047480922384253)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <day-of-week> from <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("integer (numeric)Fridaynow", -2.2512917986064953),
("integer (0..19)Tuesdaynow", -2.2512917986064953),
("integer (0..19)Sundaynow", -2.2512917986064953),
("integer (0..19)Fridaynow", -2.2512917986064953),
("daynograin", -0.9985288301111273),
("integer (numeric)Sundaynow", -2.2512917986064953),
("integer (numeric)Tuesdaynow", -2.2512917986064953)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("Shrove Tuesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("now",
Classifier{okData =
ClassData{prior = -6.899287148695143e-2,
unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14},
koData =
ClassData{prior = -2.70805020110221, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<day-of-month> (ordinal or number) of <named-month>",
Classifier{okData =
ClassData{prior = -0.7339691750802004,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -2.740840023925201),
("ordinals (first..twentieth,thirtieth,...)March",
-1.6422277352570913),
("ordinal (digits)February", -2.740840023925201),
("integer (numeric)February", -2.3353749158170367),
("month", -0.8690378470236094),
("ordinal (digits)March", -2.3353749158170367),
("integer (numeric)July", -2.740840023925201)],
n = 12},
koData =
ClassData{prior = -0.6539264674066639,
unseen = -3.5263605246161616,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.550597412411167),
("ordinal (digits)February", -2.803360380906535),
("month", -0.8574502318512216),
("integer (numeric)July", -1.550597412411167)],
n = 13}}),
("this <part-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("hour", -0.6931471805599453),
("part of days", -0.6931471805599453)],
n = 14},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Kaanum Pongal",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Yom Kippur",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> minutes to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (numeric)minute (grain)time-of-day (latent)",
-0.6931471805599453),
("minutehour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Rabindra Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("powers of tens",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Pargat Diwas",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Friday",
Classifier{okData =
ClassData{prior = -0.3184537311185346, unseen = -2.890371757896165,
likelihoods = HashMap.fromList [("", 0.0)], n = 16},
koData =
ClassData{prior = -1.2992829841302609,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6}}),
("in|during the <part-of-day>",
Classifier{okData =
ClassData{prior = -6.899287148695143e-2,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("early morning", -2.740840023925201),
("hour", -0.7259370033829361),
("part of days", -0.7949298748698876)],
n = 14},
koData =
ClassData{prior = -2.70805020110221, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("hour", -0.916290731874155),
("part of days", -0.916290731874155)],
n = 1}}),
("St Patrick's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("tomorrow",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods = HashMap.fromList [("", 0.0)], n = 22},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh(:mm) - <time-of-day> am|pm",
Classifier{okData =
ClassData{prior = -0.10536051565782628,
unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0116009116784799),
("hh:mm", -1.9924301646902063), ("hour", -1.0116009116784799),
("minute", -1.9924301646902063)],
n = 9},
koData =
ClassData{prior = -2.3025850929940455,
unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0986122886681098),
("hour", -1.0986122886681098)],
n = 1}}),
("this|last|next <cycle>",
Classifier{okData =
ClassData{prior = -0.42050298547270487,
unseen = -5.241747015059643,
likelihoods =
HashMap.fromList
[("week", -1.2474579162656747),
("month (grain)", -2.3460702049337847),
("year (grain)", -2.528391761727739),
("week (grain)", -1.2474579162656747),
("quarter", -3.6270040503958487), ("year", -2.528391761727739),
("month", -2.3460702049337847),
("quarter (grain)", -3.6270040503958487)],
n = 88},
koData =
ClassData{prior = -1.0691984034618165, unseen = -4.653960350157523,
likelihoods =
HashMap.fromList
[("week", -1.8111775550851565),
("month (grain)", -2.4471663218051534),
("year (grain)", -3.0349529867072724),
("second", -3.0349529867072724),
("week (grain)", -1.8111775550851565),
("day", -2.2464956263430023), ("quarter", -3.0349529867072724),
("year", -3.0349529867072724),
("second (grain) ", -3.0349529867072724),
("month", -2.4471663218051534),
("quarter (grain)", -3.0349529867072724),
("day (grain)", -2.2464956263430023)],
n = 46}}),
("Simchat Torah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("New Year's Eve",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)year (latent)",
-0.6931471805599453),
("quarteryear", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Raksha Bandhan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ashura",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ratha-Yatra",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Palm Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Eid al-Adha",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.890371757896165,
likelihoods = HashMap.fromList [("", 0.0)], n = 16},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("by <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -1.9459101490553135),
("time-of-day (latent)", -1.9459101490553135),
("<time-of-day> am|pm", -1.9459101490553135),
("hh:mm", -1.9459101490553135), ("hour", -1.540445040947149),
("minute", -1.540445040947149)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.4818380868927383,
unseen = -3.1780538303479458,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-1.5260563034950494),
("ordinal (digits)", -0.24512245803298496)],
n = 21},
koData =
ClassData{prior = -0.9614111671546247, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-0.6286086594223742),
("ordinal (digits)", -0.7621400520468967)],
n = 13}}),
("last weekend of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("October", -0.9555114450274363), ("July", -1.8718021769015913),
("month", -0.7731898882334817)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (number)",
Classifier{okData =
ClassData{prior = -0.8649974374866046,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 8},
koData =
ClassData{prior = -0.5465437063680699,
unseen = -2.5649493574615367,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 11}}),
("Lag BaOmer",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("fractional number",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14}}),
("Guru Ravidass Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Sunday",
Classifier{okData =
ClassData{prior = -0.40546510810816444,
unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -1.0986122886681098,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("Chinese New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("February",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods = HashMap.fromList [("", 0.0)], n = 13},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("minute (grain)",
Classifier{okData =
ClassData{prior = -7.696104113612832e-2,
unseen = -3.295836866004329,
likelihoods = HashMap.fromList [("", 0.0)], n = 25},
koData =
ClassData{prior = -2.6026896854443837,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("last|this|next <season>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> quarter",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.6931471805599453),
("quarter", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.6931471805599453),
("quarter", -0.6931471805599453)],
n = 1}}),
("Orthodox Good Friday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("time-of-day (latent)",
Classifier{okData =
ClassData{prior = -0.6970764586998348, unseen = -4.867534450455582,
likelihoods =
HashMap.fromList
[("integer (numeric)", -9.763846956391606e-2),
("integer (0..19)", -2.374905754573672)],
n = 127},
koData =
ClassData{prior = -0.689233281238809, unseen = -4.875197323201151,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.15800424914324832),
("integer (0..19)", -1.923095471289142)],
n = 128}}),
("beginning of year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("last <day-of-week> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("daymonth", -0.916290731874155),
("SundayMarch", -2.0149030205422647),
("MondayMarch", -2.0149030205422647),
("FridayOctober", -1.6094379124341003),
("Sundayintersect", -2.0149030205422647)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <unit-of-duration>",
Classifier{okData =
ClassData{prior = -0.6164133863285559, unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("week", -2.6642475784438173),
("integer (0..19)year (grain)", -3.22386336637924),
("integer (numeric)day (grain)", -2.6642475784438173),
("integer (0..19)second (grain) ", -3.917010546939185),
("integer (0..19)hour (grain)", -3.1060803307228566),
("second", -3.5115454388310208),
("integer (numeric)second (grain) ", -4.204692619390966),
("integer (numeric)year (grain)", -3.3573947590037623),
("day", -2.412933150162911), ("year", -2.6642475784438173),
("integer (numeric)week (grain)", -3.22386336637924),
("integer (0..19)month (grain)", -3.6938669956249752),
("integer (20..90)minute (grain)", -4.61015772749913),
("hour", -2.738355550597539), ("month", -3.3573947590037623),
("integer (numeric)minute (grain)", -2.5952547069568657),
("integer (0..19)minute (grain)", -3.22386336637924),
("integer (numeric)month (grain)", -4.204692619390966),
("minute", -2.167810692129926),
("integer (numeric)hour (grain)", -3.6938669956249752),
("integer (0..19)day (grain)", -3.6938669956249752),
("integer (0..19)week (grain)", -3.3573947590037623)],
n = 88},
koData =
ClassData{prior = -0.7762620872704519, unseen = -5.170483995038151,
likelihoods =
HashMap.fromList
[("week", -3.5553480614894135),
("integer (0..19)year (grain)", -4.0661736852554045),
("integer (numeric)day (grain)", -4.0661736852554045),
("integer (numeric)quarter (grain)", -4.0661736852554045),
("integer (numeric)year (grain)", -4.0661736852554045),
("day", -3.5553480614894135), ("quarter", -3.5553480614894135),
("year", -3.5553480614894135),
("integer (numeric)week (grain)", -4.0661736852554045),
("integer (0..19)month (grain)", -4.0661736852554045),
("hour", -1.157452788691043), ("month", -3.5553480614894135),
("integer (numeric)minute (grain)", -4.471638793363569),
("integer (numeric)month (grain)", -4.0661736852554045),
("minute", -4.471638793363569),
("integer (numeric)hour (grain)", -1.157452788691043),
("integer (0..19)day (grain)", -4.0661736852554045),
("integer (0..19)week (grain)", -4.0661736852554045),
("integer (0..19)quarter (grain)", -4.0661736852554045)],
n = 75}}),
("from the <day-of-month> (ordinal or number) to the <day-of-month> (ordinal or number) <named-month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("ordinal (digits)ordinal (digits)July", -1.3217558399823195),
("integer (numeric)integer (numeric)July", -1.3217558399823195),
("month", -0.7621400520468967)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Guru Gobind Singh Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hhmm (latent)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Krishna Janmashtami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> am|pm",
Classifier{okData =
ClassData{prior = -0.2584829177595186, unseen = -5.697093486505405,
likelihoods =
HashMap.fromList
[("from|since|after <time>", -3.7478219897473863),
("integer after|past <hour-of-day>", -4.307437777682809),
("at <time-of-day>", -2.3978952727983707),
("<time-of-day> o'clock", -4.59511985013459),
("half after|past <hour-of-day>", -4.59511985013459),
("second", -5.000584958242754),
("hh:mm:ss", -5.000584958242754),
("<hour-of-day> <integer>", -4.084294226368599),
("<integer> minutes to|till|before <hour-of-day>",
-5.000584958242754),
("time-of-day (latent)", -1.6863989535702288),
("hhmm (latent)", -5.000584958242754),
("hh:mm", -2.3978952727983707),
("quarter after|past <hour-of-day>", -3.4965075614664802),
("until <time>", -4.307437777682809),
("about|exactly <time-of-day>", -5.000584958242754),
("hour", -1.2393848425491918),
("<time-of-day> sharp|exactly", -5.000584958242754),
("minute", -1.7047480922384253)],
n = 139},
koData =
ClassData{prior = -1.4793847841859027, unseen = -4.624972813284271,
likelihoods =
HashMap.fromList
[("<integer> to|till|before <hour-of-day>", -3.228826155721369),
("from|since|after <time>", -3.228826155721369),
("at <time-of-day>", -3.5165082281731497),
("time-of-day (latent)", -1.1811333123561132),
("hh:mm", -3.5165082281731497),
("until <time>", -3.9219733362813143),
("hour", -1.0316015783851495), ("minute", -2.6692103677859462)],
n = 41}}),
("Yom Ha'atzmaut",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("on <day>",
Classifier{okData =
ClassData{prior = -0.2231435513142097, unseen = -4.04305126783455,
likelihoods =
HashMap.fromList
[("Thursday", -1.8281271133989299),
("absorption of , after named day", -2.639057329615259),
("intersect", -2.639057329615259),
("Saturday", -2.639057329615259),
("Friday", -2.9267394020670396), ("day", -0.8064758658669484),
("the <day-of-month> (ordinal)", -2.9267394020670396),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-2.639057329615259)],
n = 24},
koData =
ClassData{prior = -1.6094379124341003, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("intersect", -1.6094379124341003),
("day", -1.0498221244986778),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-1.6094379124341003)],
n = 6}}),
("Thiru Onam",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Thai Pongal",
Classifier{okData =
ClassData{prior = -0.5596157879354228, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -0.8472978603872037,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3}}),
("Vijayadashami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("part of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("March", -0.6931471805599453), ("month", -0.6931471805599453)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("a <unit-of-duration>",
Classifier{okData =
ClassData{prior = -1.0296194171811581,
unseen = -3.5553480614894135,
likelihoods =
HashMap.fromList
[("week", -2.1400661634962708),
("year (grain)", -2.4277482359480516),
("second", -2.833213344056216),
("week (grain)", -2.1400661634962708),
("day", -2.1400661634962708),
("minute (grain)", -2.833213344056216),
("year", -2.4277482359480516),
("second (grain) ", -2.833213344056216),
("minute", -2.833213344056216),
("day (grain)", -2.1400661634962708)],
n = 10},
koData =
ClassData{prior = -0.4418327522790392,
unseen = -3.9318256327243257,
likelihoods =
HashMap.fromList
[("hour (grain)", -2.3025850929940455),
("quarter", -1.3470736479666092),
("minute (grain)", -2.8134107167600364),
("hour", -2.3025850929940455),
("quarter (grain)", -1.3470736479666092),
("minute", -2.8134107167600364)],
n = 18}}),
("at the beginning|end of <year>",
Classifier{okData =
ClassData{prior = -0.13353139262452263,
unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("year (latent)", -1.2237754316221157),
("this|last|next <cycle>", -1.4469189829363254),
("year", -0.7537718023763802)],
n = 7},
koData =
ClassData{prior = -2.0794415416798357, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("this|last|next <cycle>", -0.916290731874155),
("year", -0.916290731874155)],
n = 1}}),
("Dhanteras",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Tu BiShvat",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Whit Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh:mm",
Classifier{okData =
ClassData{prior = -0.12260232209233239,
unseen = -4.2626798770413155,
likelihoods = HashMap.fromList [("", 0.0)], n = 69},
koData =
ClassData{prior = -2.159484249353372, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9}}),
("Holi",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("upcoming <integer> <cycle>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.02535169073515,
likelihoods =
HashMap.fromList
[("week", -2.3978952727983707),
("integer (0..19)year (grain)", -2.908720896564361),
("integer (numeric)day (grain)", -2.908720896564361),
("integer (numeric)quarter (grain)", -2.908720896564361),
("integer (numeric)year (grain)", -2.908720896564361),
("day", -2.3978952727983707), ("quarter", -2.3978952727983707),
("year", -2.3978952727983707),
("integer (numeric)week (grain)", -2.908720896564361),
("integer (0..19)month (grain)", -2.908720896564361),
("month", -2.3978952727983707),
("integer (numeric)month (grain)", -2.908720896564361),
("integer (0..19)day (grain)", -2.908720896564361),
("integer (0..19)week (grain)", -2.908720896564361),
("integer (0..19)quarter (grain)", -2.908720896564361)],
n = 20},
koData =
ClassData{prior = -infinity, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [], n = 0}}),
("Rosh Hashanah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <named-day> ago|back",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("integer (numeric)Thursday", -0.6931471805599453),
("day", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> upcoming <cycle>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.02535169073515,
likelihoods =
HashMap.fromList
[("week", -2.3978952727983707),
("integer (0..19)year (grain)", -2.908720896564361),
("integer (numeric)day (grain)", -2.908720896564361),
("integer (numeric)quarter (grain)", -2.908720896564361),
("integer (numeric)year (grain)", -2.908720896564361),
("day", -2.3978952727983707), ("quarter", -2.3978952727983707),
("year", -2.3978952727983707),
("integer (numeric)week (grain)", -2.908720896564361),
("integer (0..19)month (grain)", -2.908720896564361),
("month", -2.3978952727983707),
("integer (numeric)month (grain)", -2.908720896564361),
("integer (0..19)day (grain)", -2.908720896564361),
("integer (0..19)week (grain)", -2.908720896564361),
("integer (0..19)quarter (grain)", -2.908720896564361)],
n = 20},
koData =
ClassData{prior = -infinity, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [], n = 0}}),
("Holika Dahan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter of an hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("second (grain) ",
Classifier{okData =
ClassData{prior = -0.5108256237659907,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -0.916290731874155, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("ordinals (first..twentieth,thirtieth,...)",
Classifier{okData =
ClassData{prior = -3.077165866675366e-2,
unseen = -3.5263605246161616,
likelihoods = HashMap.fromList [("", 0.0)], n = 32},
koData =
ClassData{prior = -3.4965075614664802,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("Mawlid",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Jumu'atul-Wida",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<duration> after|before|from|past <time>",
Classifier{okData =
ClassData{prior = -0.7691330875378672, unseen = -4.189654742026425,
likelihoods =
HashMap.fromList
[("a <unit-of-duration>now", -3.481240089335692),
("<integer> <unit-of-duration>hhhmm", -3.481240089335692),
("a <unit-of-duration>Christmas", -3.481240089335692),
("minuteminute", -3.481240089335692),
("dayday", -3.481240089335692),
("<integer> <unit-of-duration>today", -3.481240089335692),
("<integer> <unit-of-duration>time-of-day (latent)",
-2.382627800667582),
("minutehour", -1.7764919970972666),
("daysecond", -3.481240089335692),
("a <unit-of-duration>right now", -3.481240089335692),
("minutenograin", -3.481240089335692),
("<integer> <unit-of-duration>Christmas", -3.481240089335692),
("<integer> <unit-of-duration>Easter Sunday",
-3.481240089335692),
("secondnograin", -3.481240089335692),
("<integer> <unit-of-duration><time-of-day> am|pm",
-2.5649493574615367),
("yearday", -2.7880929087757464),
("<integer> <unit-of-duration>noon|midnight|EOD|end of day",
-3.481240089335692),
("daynograin", -3.481240089335692),
("<integer> <unit-of-duration>now", -3.0757749812275272)],
n = 19},
koData =
ClassData{prior = -0.6225296133459919, unseen = -4.276666119016055,
likelihoods =
HashMap.fromList
[("quarterhour", -1.318240897874875),
("dayhour", -3.56953269648137),
("<integer> <unit-of-duration>intersect", -3.56953269648137),
("<integer> <unit-of-duration><day-of-month> (ordinal)",
-3.56953269648137),
("a <unit-of-duration><time-of-day> am|pm", -2.065455299705096),
("a <unit-of-duration>time-of-day (latent)",
-2.065455299705096),
("dayday", -2.8763855159214247),
("<integer> <unit-of-duration>time-of-day (latent)",
-3.56953269648137),
("a <unit-of-duration>noon|midnight|EOD|end of day",
-3.164067588373206),
("<integer> <unit-of-duration><day-of-month> (ordinal or number) <named-month>",
-3.56953269648137)],
n = 22}}),
("nth <day-of-week> of <month-or-greater>",
Classifier{okData =
ClassData{prior = -0.2876820724517809, unseen = -3.258096538021482,
likelihoods =
HashMap.fromList
[("daymonth", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-2.5257286443082556),
("ordinals (first..twentieth,thirtieth,...)Wednesdayintersect",
-2.120263536200091),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-1.6094379124341003),
("ordinals (first..twentieth,thirtieth,...)TuesdayOctober",
-2.120263536200091)],
n = 9},
koData =
ClassData{prior = -1.3862943611198906, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("daymonth", -1.1786549963416462),
("ordinals (first..twentieth,thirtieth,...)TuesdaySeptember",
-1.8718021769015913),
("ordinals (first..twentieth,thirtieth,...)WednesdayOctober",
-1.466337068793427)],
n = 3}}),
("quarter after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -2.03688192726104),
("time-of-day (latent)", -0.9382696385929302),
("hour", -0.7375989431307791)],
n = 10},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyy-mm",
Classifier{okData =
ClassData{prior = -1.0986122886681098,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.40546510810816444,
unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("until <time>",
Classifier{okData =
ClassData{prior = -1.252762968495368, unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("year (latent)", -2.159484249353372),
("time-of-day (latent)", -2.5649493574615367),
("year", -2.159484249353372),
("<time-of-day> am|pm", -1.8718021769015913),
("hh:mm", -2.159484249353372), ("hour", -2.159484249353372),
("minute", -1.6486586255873816)],
n = 8},
koData =
ClassData{prior = -0.3364722366212129,
unseen = -3.9318256327243257,
likelihoods =
HashMap.fromList
[("intersect", -2.3025850929940455),
("yesterday", -2.8134107167600364),
("day", -2.8134107167600364),
("time-of-day (latent)", -1.6094379124341003),
("<time-of-day> am|pm", -3.2188758248682006),
("hh:mm", -2.3025850929940455), ("hour", -1.4271163556401458),
("minute", -1.8325814637483102)],
n = 20}}),
("the <cycle> after|before <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods =
HashMap.fromList
[("day (grain)tomorrow", -1.252762968495368),
("dayday", -0.8472978603872037),
("day (grain)yesterday", -1.252762968495368)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("about|exactly <time-of-day>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -3.6109179126442243,
likelihoods =
HashMap.fromList
[("week", -1.791759469228055),
("hh(:mm) - <time-of-day> am|pm", -2.890371757896165),
("this|last|next <cycle>", -1.791759469228055),
("day", -2.4849066497880004),
("time-of-day (latent)", -2.890371757896165),
("hhmm (latent)", -2.4849066497880004),
("<time-of-day> am|pm", -2.890371757896165),
("hour", -2.1972245773362196),
("next <time>", -2.890371757896165),
("this|next <day-of-week>", -2.890371757896165),
("minute", -2.4849066497880004)],
n = 12},
koData =
ClassData{prior = -1.9459101490553135, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("dd/mm", -2.0794415416798357), ("day", -2.0794415416798357),
("time-of-day (latent)", -2.0794415416798357),
("hour", -2.0794415416798357)],
n = 2}}),
("Sukkot",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day> in <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("monthyear", -1.2992829841302609),
("Marcha <unit-of-duration>", -1.7047480922384253),
("March<integer> <unit-of-duration>", -1.7047480922384253),
("Vijayadashami<integer> <unit-of-duration>",
-1.7047480922384253),
("dayyear", -1.7047480922384253)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("World Vegan Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect by \",\", \"of\", \"from\", \"'s\"",
Classifier{okData =
ClassData{prior = -0.5596157879354228, unseen = -5.407171771460119,
likelihoods =
HashMap.fromList
[("intersectthis|last|next <cycle>", -4.709530201312334),
("Wednesday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("dayhour", -4.304065093204169),
("daymonth", -2.001480000210124),
("<named-month> <day-of-month> (non ordinal)Friday",
-4.709530201312334),
("Friday<named-month> <day-of-month> (non ordinal)",
-3.4567672328169663),
("Wednesdayintersect", -4.709530201312334),
("from <datetime> - <datetime> (interval)July",
-3.3232358401924436),
("Black Fridaythis|last|next <cycle>", -4.709530201312334),
("<part-of-day> of <time>February", -4.709530201312334),
("Saturday<time-of-day> am|pm", -4.709530201312334),
("Martin Luther King's Daythis|last|next <cycle>",
-4.304065093204169),
("hourmonth", -4.709530201312334),
("Fridayintersect by \",\", \"of\", \"from\" for year",
-4.0163830207523885),
("dayday", -2.458238402705839),
("the <day-of-month> (ordinal)February", -4.304065093204169),
("WednesdayOctober", -4.709530201312334),
("Wednesdaythis|last|next <cycle>", -4.304065093204169),
("intersect<named-month> <day-of-month> (non ordinal)",
-3.4567672328169663),
("dayyear", -4.0163830207523885),
("Saturday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("Thursdayhh:mm", -4.304065093204169),
("TuesdayOctober", -4.709530201312334),
("the <day-of-month> (ordinal)March", -3.6109179126442243),
("Mondaythis|last|next <cycle>", -3.7932394694381792),
("Fridayintersect", -4.0163830207523885),
("Thursday<datetime> - <datetime> (interval)",
-4.304065093204169),
("intersectOctober", -4.304065093204169),
("Thursday<time-of-day> - <time-of-day> (interval)",
-3.7932394694381792),
("Tuesdaythis|last|next <cycle>", -4.304065093204169),
("Sunday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("dayminute", -2.917770732084279),
("minuteday", -3.4567672328169663),
("this|last|next <cycle>Sunday", -4.709530201312334),
("Sundaythis|last|next <cycle>", -4.709530201312334),
("on <day><time-of-day> am|pm", -4.709530201312334),
("intersectintersect", -4.709530201312334),
("weekday", -4.709530201312334),
("dayweek", -3.6109179126442243),
("Monday<named-month> <day-of-month> (non ordinal)",
-4.304065093204169),
("<datetime> - <datetime> (interval)July", -3.7932394694381792),
("on <day><named-month> <day-of-month> (non ordinal)",
-4.0163830207523885)],
n = 76},
koData =
ClassData{prior = -0.8472978603872037, unseen = -5.220355825078324,
likelihoods =
HashMap.fromList
[("week-endJuly", -4.5217885770490405),
("week-endOctober", -3.828641396489095),
("daymonth", -1.7809485531238394),
("TuesdaySeptember", -4.5217885770490405),
("Wednesdayintersect", -4.5217885770490405),
("from <datetime> - <datetime> (interval)July",
-3.4231762883809305),
("from <time-of-day> - <time-of-day> (interval)July",
-4.5217885770490405),
("hournograin", -4.116323468940876),
("from|since|after <time>July", -4.116323468940876),
("hourmonth", -2.575878427993727),
("Fridaythis|last|next <cycle>", -4.5217885770490405),
("SundayFebruary", -4.5217885770490405),
("on <day>September", -3.828641396489095),
("WednesdayOctober", -4.5217885770490405),
("intersectnow", -4.116323468940876),
("week-endintersect", -4.5217885770490405),
("dayyear", -4.5217885770490405),
("FridayJuly", -3.6054978451748854),
("FridaySeptember", -4.116323468940876),
("the <day-of-month> (ordinal)July", -3.6054978451748854),
("WednesdayFebruary", -4.5217885770490405),
("minutemonth", -3.0177111802727663),
("Mondaythis|last|next <cycle>", -4.5217885770490405),
("SundayMarch", -4.5217885770490405),
("MondayFebruary", -4.116323468940876),
("Fridayintersect", -4.5217885770490405),
("intersectOctober", -4.5217885770490405),
("dayminute", -4.5217885770490405),
("SaturdaySeptember", -4.5217885770490405),
("intersectSeptember", -3.1354942159291497),
("Tuesdaynow", -4.116323468940876),
("MondayMarch", -4.5217885770490405),
("FridayOctober", -4.5217885770490405),
("daynograin", -4.116323468940876),
("<integer> to|till|before <hour-of-day>July",
-4.5217885770490405),
("Tuesdayintersect", -4.5217885770490405),
("<time-of-day> - <time-of-day> (interval)July",
-4.5217885770490405),
("<datetime> - <datetime> (interval)July", -4.5217885770490405),
("Sundayintersect", -4.5217885770490405)],
n = 57}}),
("last <time>",
Classifier{okData =
ClassData{prior = -0.7537718023763802, unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("Martin Luther King's Day", -2.5649493574615367),
("day", -1.1786549963416462), ("Sunday", -2.5649493574615367),
("Chinese New Year", -1.8718021769015913),
("Easter Sunday", -2.5649493574615367),
("hour", -2.5649493574615367), ("Tuesday", -2.5649493574615367),
("week-end", -2.5649493574615367)],
n = 8},
koData =
ClassData{prior = -0.6359887667199967, unseen = -3.367295829986474,
likelihoods =
HashMap.fromList
[("Monday", -2.639057329615259), ("Friday", -2.2335922215070942),
("day", -1.7227665977411035), ("Sunday", -2.639057329615259),
("hour", -1.540445040947149), ("week-end", -1.540445040947149)],
n = 9}}),
("March",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.295836866004329,
likelihoods = HashMap.fromList [("", 0.0)], n = 25},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<named-month>|<named-day> <day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("Octoberordinal (digits)", -2.0149030205422647),
("Thursdayordinal (digits)", -2.70805020110221),
("day", -2.3025850929940455),
("Augustordinal (digits)", -2.70805020110221),
("Marchordinals (first..twentieth,thirtieth,...)",
-2.3025850929940455),
("Tuesdayordinal (digits)", -2.70805020110221),
("Octoberordinals (first..twentieth,thirtieth,...)",
-2.70805020110221),
("month", -1.2039728043259361),
("Marchordinal (digits)", -2.70805020110221)],
n = 10},
koData =
ClassData{prior = -1.791759469228055, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("from|since|after <time>ordinal (digits)",
-1.9459101490553135),
("Augustordinal (digits)", -1.9459101490553135),
("month", -1.540445040947149)],
n = 2}}),
("Clean Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.6325225587435105, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-1.3350010667323402),
("ordinal (digits)", -0.3053816495511819)],
n = 17},
koData =
ClassData{prior = -0.7576857016975165, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-0.5306282510621704),
("ordinal (digits)", -0.8873031950009028)],
n = 15}}),
("<time> (timezone)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("<time-of-day> am|pm", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Easter Sunday",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("Christmas",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods = HashMap.fromList [("", 0.0)], n = 13},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime> - <datetime> (interval) timezone",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("minuteminute", -0.8109302162163288),
("hh:mmhh:mm", -1.5040773967762742),
("hhhmmhhhmm", -1.0986122886681098)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Isra and Mi'raj",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal or number) of <month>",
Classifier{okData =
ClassData{prior = -0.5679840376059393, unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -3.068052935133617),
("ordinals (first..twentieth,thirtieth,...)March",
-1.9694406464655074),
("ordinal (digits)this|last|next <cycle>", -2.374905754573672),
("integer (numeric)this|last|next <cycle>", -2.662587827025453),
("ordinal (digits)February", -3.068052935133617),
("integer (numeric)February", -2.662587827025453),
("month", -0.8708283577973976),
("ordinal (digits)March", -2.662587827025453),
("integer (numeric)July", -3.068052935133617)],
n = 17},
koData =
ClassData{prior = -0.8362480242006186, unseen = -3.58351893845611,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.6094379124341003),
("ordinal (digits)February", -2.8622008809294686),
("month", -0.916290731874155),
("integer (numeric)July", -1.6094379124341003)],
n = 13}}),
("decimal number",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<day-of-month>(ordinal or number)/<named-month>/year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)April", -0.6931471805599453),
("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Naraka Chaturdashi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyyqq",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("beginning of month",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("next <time>",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("Martin Luther King's Day", -2.0149030205422647),
("Halloween", -2.70805020110221),
("Boss's Day", -2.70805020110221),
("Monday", -2.3025850929940455), ("day", -1.0986122886681098),
("March", -2.70805020110221), ("month", -2.70805020110221),
("Tuesday", -2.3025850929940455)],
n = 10},
koData =
ClassData{prior = -1.791759469228055, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("Wednesday", -1.9459101490553135),
("Saturday", -1.9459101490553135), ("day", -1.540445040947149)],
n = 2}}),
("<time-of-day> sharp|exactly",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.1400661634962708),
("time-of-day (latent)", -2.1400661634962708),
("hhmm (latent)", -2.1400661634962708),
("<time-of-day> am|pm", -2.1400661634962708),
("hh:mm", -2.1400661634962708), ("hour", -1.7346010553881064),
("minute", -1.4469189829363254)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> closest <day> to <time>",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)Christmastoday",
-1.791759469228055),
("dayday", -1.0986122886681098),
("ordinal (digits)Christmastoday", -1.791759469228055)],
n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -1.3862943611198906),
("ordinals (first..twentieth,thirtieth,...)MondayOctober",
-1.3862943611198906)],
n = 1}}),
("Islamic New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Lent",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("negative numbers",
Classifier{okData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -3.713572066704308,
likelihoods =
HashMap.fromList
[("integer (numeric)", -5.129329438755058e-2),
("integer (0..19)", -2.995732273553991)],
n = 38}}),
("about|exactly <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("half a <time-grain>", -0.6931471805599453),
("minute", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Purim",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<time> before last|after next",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("Wednesday", -1.8718021769015913),
("Friday", -1.466337068793427), ("day", -1.1786549963416462),
("March", -1.8718021769015913), ("month", -1.8718021769015913)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("by the end of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("this|last|next <cycle>", -0.8109302162163288),
("year", -1.5040773967762742), ("month", -1.0986122886681098)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("half an hour (abbrev).",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hhmm (military) am|pm",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime> - <datetime> (interval)",
Classifier{okData =
ClassData{prior = -1.1631508098056809, unseen = -4.770684624465665,
likelihoods =
HashMap.fromList
[("intersecthh:mm", -3.6635616461296463),
("from|since|after <time>hh:mm", -3.152736022363656),
("minuteminute", -1.5841201044498106),
("<time> timezone<time> timezone", -3.3758795736778655),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.6635616461296463),
("hh:mmhh:mm", -2.5649493574615367),
("dayday", -2.5649493574615367),
("hhhmmhhhmm", -3.152736022363656),
("hourhour", -3.6635616461296463),
("<named-month> <day-of-month> (non ordinal)<named-month> <day-of-month> (non ordinal)",
-3.6635616461296463),
("intersect by \",\", \"of\", \"from\", \"'s\"hh:mm",
-3.6635616461296463),
("<time-of-day> am|pmhh:mm:ss", -4.069026754237811),
("hoursecond", -3.6635616461296463),
("<time-of-day> am|pm<time-of-day> am|pm", -3.3758795736778655),
("from|since|after <time>the <day-of-month> (ordinal)",
-3.152736022363656)],
n = 35},
koData =
ClassData{prior = -0.3746934494414107, unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("hhhmm<time> timezone", -4.204692619390966),
("<time> timezonehhhmm", -4.204692619390966),
("hourday", -3.00071981506503),
("<named-month> <day-of-month> (non ordinal)July",
-4.61015772749913),
("dayhour", -4.61015772749913),
("daymonth", -3.6938669956249752),
("from|since|after <time><day-of-month> (ordinal or number) of <month>",
-3.6938669956249752),
("<time-of-day> am|pmintersect", -4.61015772749913),
("MondayOctober", -4.204692619390966),
("from|since|after <time>hh:mm", -4.61015772749913),
("hh:mm<time-of-day> am|pm", -3.5115454388310208),
("hhhmmintersect", -4.61015772749913),
("minuteminute", -2.167810692129926),
("from|since|after <time><time-of-day> am|pm",
-3.917010546939185),
("hh:mmhh:mm", -3.917010546939185),
("dayday", -1.8067973465925955),
("from|since|after <time><day-of-month> (ordinal or number) <named-month>",
-3.6938669956249752),
("hhhmmhhhmm", -4.204692619390966),
("hourhour", -3.6938669956249752),
("hourminute", -4.61015772749913),
("minutehour", -3.6938669956249752),
("<time> timezonehh:mm", -4.61015772749913),
("hh:mm<time> timezone", -4.61015772749913),
("the <day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.61015772749913),
("from|since|after <time><day-of-month> (ordinal or number) of <named-month>",
-3.6938669956249752),
("hh:mmintersect", -3.6938669956249752),
("<named-month> <day-of-month> (non ordinal)August",
-4.61015772749913),
("Christmastoday", -3.917010546939185),
("about|exactly <time-of-day><time-of-day> am|pm",
-4.61015772749913),
("from|since|after <time>intersect", -3.1060803307228566),
("from|since|after <time>intersect by \",\", \"of\", \"from\", \"'s\"",
-3.6938669956249752),
("Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-4.204692619390966),
("<time-of-day> am|pmhh:mm", -4.61015772749913),
("from|since|after <time>the <day-of-month> (ordinal or number) of <named-month>",
-3.1060803307228566),
("the <day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.61015772749913),
("from|since|after <time>the <day-of-month> (ordinal)",
-4.61015772749913),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.204692619390966),
("Monday<named-month> <day-of-month> (non ordinal)",
-4.61015772749913),
("the <day-of-month> (ordinal)intersect", -4.204692619390966)],
n = 77}}),
("Tuesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("New Year's Day",
Classifier{okData =
ClassData{prior = -1.8718021769015913,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.1670540846631662,
unseen = -2.5649493574615367,
likelihoods = HashMap.fromList [("", 0.0)], n = 11}}),
("fortnight",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> and an half hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Laylat al-Qadr",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Boghi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("at the beginning|end of <named-month>",
Classifier{okData =
ClassData{prior = -0.2231435513142097,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("January", -1.3862943611198906),
("April", -1.3862943611198906), ("month", -0.8754687373538999)],
n = 4},
koData =
ClassData{prior = -1.6094379124341003,
unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("October", -1.0986122886681098),
("month", -1.0986122886681098)],
n = 1}}),
("<time-of-day> - <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -1.116469906068116, unseen = -4.672828834461907,
likelihoods =
HashMap.fromList
[("from|since|after <time>hh:mm", -3.054001181677967),
("hh:mmtime-of-day (latent)", -3.2771447329921766),
("minuteminute", -1.667706820558076),
("<time> timezone<time> timezone", -3.2771447329921766),
("from|since|after <time><time-of-day> am|pm",
-3.970291913552122),
("hh:mmhh:mm", -2.466214516775848),
("<time-of-day> am|pmtime-of-day (latent)",
-3.2771447329921766),
("hhhmmhhhmm", -3.054001181677967),
("hourhour", -2.466214516775848),
("minutehour", -2.466214516775848),
("<time-of-day> am|pmhh:mm:ss", -3.970291913552122),
("hhhmmtime-of-day (latent)", -3.2771447329921766),
("hoursecond", -3.5648268054439574),
("from|since|after <time>time-of-day (latent)",
-3.2771447329921766),
("<time-of-day> am|pm<time-of-day> am|pm", -3.054001181677967)],
n = 37},
koData =
ClassData{prior = -0.3966544784260094, unseen = -5.220355825078324,
likelihoods =
HashMap.fromList
[("hhhmm<time> timezone", -4.116323468940876),
("<time> timezonehhhmm", -4.116323468940876),
("about|exactly <time-of-day>time-of-day (latent)",
-4.5217885770490405),
("until <time>time-of-day (latent)", -3.2690256085536724),
("from|since|after <time>hh:mm", -4.5217885770490405),
("hh:mmtime-of-day (latent)", -2.5068855565067754),
("hh:mm<time-of-day> am|pm", -3.2690256085536724),
("minuteminute", -2.4423470353692043),
("from|since|after <time><time-of-day> am|pm",
-3.6054978451748854),
("hh:mmhh:mm", -3.828641396489095),
("<time-of-day> am|pmtime-of-day (latent)", -4.116323468940876),
("hhhmmhhhmm", -4.116323468940876),
("hourhour", -2.03688192726104),
("from|since|after <time><integer> to|till|before <hour-of-day>",
-3.828641396489095),
("hourminute", -3.4231762883809305),
("minutehour", -1.6885752329928243),
("<time> timezonehh:mm", -4.5217885770490405),
("hh:mm<time> timezone", -4.5217885770490405),
("hhhmmtime-of-day (latent)", -3.828641396489095),
("until <time><time-of-day> am|pm", -4.116323468940876),
("about|exactly <time-of-day><time-of-day> am|pm",
-4.5217885770490405),
("<time-of-day> am|pmhh:mm", -4.5217885770490405),
("<part-of-day> at <time-of-day>time-of-day (latent)",
-3.828641396489095),
("from|since|after <time>time-of-day (latent)",
-3.0177111802727663),
("at <time-of-day>time-of-day (latent)", -3.828641396489095),
("<time> timezonetime-of-day (latent)", -3.828641396489095),
("<integer> to|till|before <hour-of-day><time-of-day> am|pm",
-4.5217885770490405),
("<integer> to|till|before <hour-of-day>time-of-day (latent)",
-3.828641396489095)],
n = 76}}),
("winter",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("nth <time> after <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("dayday", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-0.916290731874155)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("dayday", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)TuesdayChristmas",
-0.916290731874155)],
n = 1}}),
("Ugadi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<named-month> <day-of-month> (non ordinal)",
Classifier{okData =
ClassData{prior = -0.3646431135879093, unseen = -4.0943445622221,
likelihoods =
HashMap.fromList
[("Augustinteger (numeric)", -2.691243082785829),
("Marchinteger (numeric)", -2.9789251552376097),
("Aprilinteger (numeric)", -3.3843902633457743),
("month", -0.8194409058842375),
("Februaryinteger (numeric)", -2.1316272948504063),
("Septemberinteger (numeric)", -2.691243082785829),
("Octoberinteger (numeric)", -2.691243082785829),
("Julyinteger (numeric)", -1.9980959022258835)],
n = 25},
koData =
ClassData{prior = -1.1856236656577395,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("Augustinteger (numeric)", -2.3353749158170367),
("Marchinteger (numeric)", -2.740840023925201),
("Aprilinteger (numeric)", -2.740840023925201),
("month", -0.9490805546971459),
("from|since|after <time>integer (numeric)",
-2.3353749158170367),
("Julyinteger (numeric)", -1.6422277352570913)],
n = 11}}),
("Diwali",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("last night",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("this|next <day-of-week>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("Thursday", -2.3978952727983707),
("Wednesday", -2.3978952727983707),
("Saturday", -2.3978952727983707),
("Monday", -1.7047480922384253), ("day", -0.8938178760220964),
("Tuesday", -1.9924301646902063)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("ordinal (digits)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.143134726391533,
likelihoods = HashMap.fromList [("", 0.0)], n = 61},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter (grain)",
Classifier{okData =
ClassData{prior = -0.4700036292457356,
unseen = -3.0910424533583156,
likelihoods = HashMap.fromList [("", 0.0)], n = 20},
koData =
ClassData{prior = -0.9808292530117262, unseen = -2.639057329615259,
likelihoods = HashMap.fromList [("", 0.0)], n = 12}}),
("last <cycle> of <time>",
Classifier{okData =
ClassData{prior = -0.916290731874155, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("day (grain)October", -1.9924301646902063),
("daymonth", -1.4816045409242156),
("day (grain)intersect", -1.9924301646902063),
("weekmonth", -1.9924301646902063),
("week (grain)intersect", -2.3978952727983707),
("week (grain)September", -2.3978952727983707)],
n = 6},
koData =
ClassData{prior = -0.5108256237659907, unseen = -3.367295829986474,
likelihoods =
HashMap.fromList
[("daymonth", -2.2335922215070942),
("day (grain)May", -2.2335922215070942),
("week (grain)year (latent)", -1.9459101490553135),
("weekmonth", -1.7227665977411035),
("week (grain)October", -2.2335922215070942),
("weekyear", -1.9459101490553135),
("week (grain)intersect", -2.2335922215070942)],
n = 9}}),
("Chhath",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Vasant Panchami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month>(ordinal) <named-month> year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)April", -0.6931471805599453),
("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> last <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)week (grain)year (latent)",
-2.1972245773362196),
("daymonth", -2.1972245773362196),
("ordinal (digits)day (grain)May", -2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.1972245773362196),
("weekmonth", -1.791759469228055),
("ordinal (digits)week (grain)year (latent)",
-2.1972245773362196),
("weekyear", -1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.1972245773362196)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("Black Friday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("week-end",
Classifier{okData =
ClassData{prior = -1.252762968495368, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.3364722366212129,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("Great Lent",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Maundy Thursday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("day (grain)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6888794541139363,
likelihoods = HashMap.fromList [("", 0.0)], n = 38},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Vaisakhi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("right now",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("for <duration> from <time>",
Classifier{okData =
ClassData{prior = -0.3364722366212129, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("<integer> <unit-of-duration>intersect", -2.2512917986064953),
("<integer> <unit-of-duration><day-of-month> (ordinal)",
-2.2512917986064953),
("<integer> + '\"from|since|after <time>", -2.2512917986064953),
("dayday", -1.55814461804655),
("minutehour", -1.845826690498331),
("<integer> + '\"<time-of-day> am|pm", -2.2512917986064953),
("<integer> <unit-of-duration><day-of-month> (ordinal or number) <named-month>",
-2.2512917986064953)],
n = 5},
koData =
ClassData{prior = -1.252762968495368, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("dayhour", -1.8718021769015913),
("<integer> + '\"from|since|after <time>", -1.8718021769015913),
("<integer> <unit-of-duration>time-of-day (latent)",
-1.8718021769015913),
("minutehour", -1.8718021769015913)],
n = 2}}),
("compose by multiplication",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList [("integer (0..19)powers of tens", 0.0)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("end of year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("between <time> and <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("minuteminute", -1.791759469228055),
("hh:mmhh:mm", -2.1972245773362196),
("<time-of-day> am|pmtime-of-day (latent)",
-2.1972245773362196),
("hhhmmhhhmm", -2.1972245773362196),
("minutehour", -1.791759469228055),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.1972245773362196)],
n = 4},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -2.1972245773362196),
("hhhmmintersect", -2.1972245773362196),
("minuteminute", -1.791759469228055),
("minutehour", -1.791759469228055),
("hh:mmintersect", -2.1972245773362196),
("hhhmmtime-of-day (latent)", -2.1972245773362196)],
n = 4}}),
("<month> dd-dd (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("from|since|after <time>integer (numeric)integer (numeric)",
-2.740840023925201),
("from|since|after <time>ordinal (digits)ordinal (digits)",
-2.740840023925201),
("Julyinteger (numeric)integer (numeric)", -1.6422277352570913),
("Augustordinal (digits)integer (numeric)",
-2.3353749158170367),
("from|since|after <time>ordinal (digits)integer (numeric)",
-2.740840023925201),
("month", -0.8690378470236094),
("Augustordinal (digits)ordinal (digits)",
-2.3353749158170367)],
n = 12},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect by \",\", \"of\", \"from\" for year",
Classifier{okData =
ClassData{prior = -7.410797215372185e-2,
unseen = -3.5263605246161616,
likelihoods =
HashMap.fromList
[("Black Fridaythis|last|next <cycle>", -2.803360380906535),
("Martin Luther King's Daythis|last|next <cycle>",
-2.3978952727983707),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-2.1102132003465894),
("dayyear", -0.8574502318512216),
("intersectyear (latent)", -2.1102132003465894),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-1.8870696490323797)],
n = 13},
koData =
ClassData{prior = -2.639057329615259, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("Fridaythis|last|next <cycle>", -1.5040773967762742),
("dayyear", -1.5040773967762742)],
n = 1}}),
("part of days",
Classifier{okData =
ClassData{prior = -4.1672696400568074e-2,
unseen = -3.891820298110627,
likelihoods = HashMap.fromList [("", 0.0)], n = 47},
koData =
ClassData{prior = -3.1986731175506815,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("at the beginning|end of <week>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.330733340286331,
likelihoods =
HashMap.fromList
[("week", -0.706570200892086),
("this|last|next <cycle>", -0.8209805520698302),
("about|exactly <time-of-day>", -2.70805020110221)],
n = 36},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Eid al-Fitr",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("summer",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Trinity Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime>/<datetime> (interval)",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("secondsecond", -0.916290731874155),
("intersectintersect", -0.916290731874155)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("hh:mm:ssintersect", -0.916290731874155),
("secondsecond", -0.916290731874155)],
n = 1}}),
("Mid-day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("dd-dd <month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("integer (numeric)integer (numeric)September",
-1.9924301646902063),
("ordinal (digits)ordinal (digits)July", -1.9924301646902063),
("ordinal (digits)ordinal (digits)October",
-2.3978952727983707),
("integer (numeric)integer (numeric)July", -1.9924301646902063),
("month", -0.8938178760220964),
("ordinal (digits)ordinal (digits)August",
-2.3978952727983707)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("Pentecost",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("this <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.258096538021482,
likelihoods =
HashMap.fromList
[("Thursday", -2.5257286443082556),
("Martin Luther King's Day", -2.5257286443082556),
("Monday", -2.5257286443082556), ("day", -1.1394342831883648),
("Christmas", -2.5257286443082556),
("hour", -2.5257286443082556), ("winter", -2.5257286443082556),
("week-end", -2.5257286443082556),
("summer", -2.120263536200091)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [], n = 0}}),
("Shushan Purim",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("August",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}})] | 263,763 | classifiers
= HashMap.fromList
[("Bhai Dooj",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = -2.5649493574615367, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("integer (numeric)noon|midnight|EOD|end of day",
-0.916290731874155),
("hour", -0.916290731874155)],
n = 1},
koData =
ClassData{prior = -8.004270767353637e-2,
unseen = -3.332204510175204,
likelihoods =
HashMap.fromList
[("hour", -0.7308875085427924),
("integer (numeric)time-of-day (latent)", -0.7308875085427924)],
n = 12}}),
("week",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time> timezone",
Classifier{okData =
ClassData{prior = -9.237332013101517e-2,
unseen = -4.23410650459726,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.4277482359480516),
("hhhmm", -1.65455834771457),
("<time-of-day> am|pm", -2.0222831278398874),
("hh:mm", -2.2735975561207935), ("hour", -1.821612432377736),
("minute", -1.128465251817791)],
n = 31},
koData =
ClassData{prior = -2.4277482359480516,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hhhmm", -1.3862943611198906), ("hh:mm", -1.791759469228055),
("minute", -1.0986122886681098)],
n = 3}}),
("Thursday",
Classifier{okData =
ClassData{prior = -7.79615414697118e-2,
unseen = -3.6635616461296463,
likelihoods = HashMap.fromList [("", 0.0)], n = 37},
koData =
ClassData{prior = -2.5902671654458267,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3}}),
("integer (numeric)",
Classifier{okData =
ClassData{prior = -0.53208562319284, unseen = -6.186208623900494,
likelihoods = HashMap.fromList [("", 0.0)], n = 484},
koData =
ClassData{prior = -0.8852249122992647, unseen = -5.834810737062605,
likelihoods = HashMap.fromList [("", 0.0)], n = 340}}),
("<year> (bc|ad)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the nth <day-of-week> of <month-or-greater>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -0.6931471805599453),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-0.6931471805599453)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<duration> hence|ago",
Classifier{okData =
ClassData{prior = -5.406722127027582e-2,
unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("week", -1.563975538357343), ("day", -1.8152899666382492),
("year", -2.662587827025453),
("<integer> <unit-of-duration>", -1.0531499145913523),
("a <unit-of-duration>", -2.662587827025453),
("month", -2.662587827025453),
("fortnight", -2.662587827025453)],
n = 18},
koData =
ClassData{prior = -2.9444389791664407,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("year", -1.5040773967762742),
("<integer> <unit-of-duration>", -1.5040773967762742)],
n = 1}}),
("noon|midnight|EOD|end of day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Karva Chauth",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<cycle> after|before <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("day (grain)tomorrow", -1.6739764335716716),
("dayday", -1.1631508098056809),
("day (grain)yesterday", -1.6739764335716716)],
n = 4},
koData =
ClassData{prior = -0.6931471805599453, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("dayhour", -1.6739764335716716),
("year (grain)Christmas", -2.0794415416798357),
("dayday", -2.0794415416798357),
("day (grain)intersect", -1.6739764335716716),
("day (grain)Easter Sunday", -2.0794415416798357),
("yearday", -2.0794415416798357)],
n = 4}}),
("Easter Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Navaratri",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Martin Luther King's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("integer (20..90)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Shemini Atzeret",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in <duration> at <time-of-day>",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("dayhour", -1.3862943611198906),
("yearhour", -1.3862943611198906),
("<integer> <unit-of-duration><time-of-day> am|pm",
-0.9808292530117262)],
n = 2},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("dayhour", -1.3862943611198906),
("yearhour", -1.3862943611198906),
("<integer> <unit-of-duration>time-of-day (latent)",
-0.9808292530117262)],
n = 2}}),
("Maha Shivaratri",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ramadan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Lazarus Saturday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect 2 numbers",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("compose by multiplicationinteger (0..19)",
-0.2231435513142097)],
n = 3},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("powers of tensinteger (0..19)", -0.2231435513142097)],
n = 3}}),
("mm/yyyy",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("from|since|after <time>",
Classifier{okData =
ClassData{prior = -1.701375407759786, unseen = -4.51085950651685,
likelihoods =
HashMap.fromList
[("<day-of-month> (ordinal or number) <named-month>",
-3.8066624897703196),
("July", -3.8066624897703196),
("intersect", -3.8066624897703196),
("year (latent)", -3.4011973816621555),
("day", -2.4203681286504293),
("the <day-of-month> (ordinal)", -3.4011973816621555),
("the <day-of-month> (number)", -3.8066624897703196),
("time-of-day (latent)", -2.5538995212749516),
("year", -3.4011973816621555),
("<time-of-day> am|pm", -2.5538995212749516),
("hh:mm", -2.890371757896165),
("<day-of-month> (ordinal)", -3.4011973816621555),
("hour", -1.9348603128687285), ("month", -3.4011973816621555),
("minute", -2.890371757896165),
("August", -3.8066624897703196)],
n = 27},
koData =
ClassData{prior = -0.201421728167374, unseen = -5.631211781821365,
likelihoods =
HashMap.fromList
[("<integer> to|till|before <hour-of-day>", -4.018183201256536),
("week", -4.9344739331306915),
("<day-of-month> (ordinal or number) <named-month>",
-4.9344739331306915),
("today", -4.9344739331306915),
("intersect", -2.9885637840753785),
("<time> for <duration>", -4.241326752570746),
("second", -4.9344739331306915), ("now", -3.3250360206965914),
("tomorrow", -4.529008825022527),
("this|last|next <cycle>", -4.9344739331306915),
("day", -1.7774735119805785),
("the <day-of-month> (ordinal)", -4.529008825022527),
("the <day-of-month> (number)", -3.548179572010801),
("time-of-day (latent)", -2.492126897761487),
("<time-of-day> am|pm", -4.241326752570746),
("hh:mm", -4.529008825022527), ("nograin", -3.3250360206965914),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-4.529008825022527),
("<named-month>|<named-day> <day-of-month> (ordinal)",
-4.9344739331306915),
("<day-of-month> (ordinal)", -3.835861644462582),
("Easter Sunday", -4.9344739331306915),
("Christmas", -4.241326752570746),
("hour", -2.3317842476863078), ("month", -4.9344739331306915),
("<datetime> - <datetime> (interval)", -2.7372493557944724),
("<time-of-day> - <time-of-day> (interval)",
-2.9885637840753785),
("<named-month> <day-of-month> (non ordinal)",
-4.529008825022527),
("minute", -1.9900349539642512),
("right now", -4.9344739331306915),
("<month> dd-dd (interval)", -4.241326752570746),
("part of days", -4.9344739331306915),
("dd-dd <month> (interval)", -4.529008825022527)],
n = 121}}),
("integer after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("integer (numeric)noon|midnight|EOD|end of day",
-1.791759469228055),
("hour", -0.8754687373538999),
("integer (numeric)time-of-day (latent)", -1.3862943611198906),
("integer (20..90)time-of-day (latent)", -1.791759469228055)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> last <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)week (grain)year (latent)",
-2.268683541318364),
("daymonth", -2.268683541318364),
("ordinal (digits)day (grain)May", -2.6741486494265287),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.6741486494265287),
("weekmonth", -1.7578579175523736),
("ordinal (digits)week (grain)October", -2.6741486494265287),
("ordinal (digits)week (grain)intersect", -2.6741486494265287),
("ordinal (digits)week (grain)year (latent)",
-2.6741486494265287),
("weekyear", -1.9810014688665833),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.6741486494265287),
("ordinals (first..twentieth,thirtieth,...)day (grain)May",
-2.6741486494265287)],
n = 9},
koData =
ClassData{prior = -infinity, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [], n = 0}}),
("Yom HaShoah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal or number) <named-month>",
Classifier{okData =
ClassData{prior = -1.1631508098056809, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("ordinal (digits)December", -1.6094379124341003),
("ordinal (digits)February", -2.3025850929940455),
("integer (numeric)April", -2.3025850929940455),
("month", -1.2039728043259361)],
n = 5},
koData =
ClassData{prior = -0.3746934494414107,
unseen = -3.4965075614664802,
likelihoods =
HashMap.fromList
[("ordinal (digits)October", -2.772588722239781),
("ordinal (digits)July", -2.0794415416798357),
("integer (numeric)September", -2.367123614131617),
("ordinal (digits)August", -2.772588722239781),
("ordinal (digits)April", -2.772588722239781),
("month", -0.9808292530117262),
("integer (numeric)July", -2.0794415416798357)],
n = 11}}),
("<time> <part-of-day>",
Classifier{okData =
ClassData{prior = -0.19105523676270922,
unseen = -4.6443908991413725,
likelihoods =
HashMap.fromList
[("<day-of-month> (ordinal)in|during the <part-of-day>",
-3.9415818076696905),
("dayhour", -1.499234772300486),
("Mondayearly morning", -3.536116699561526),
("time-of-day (latent)tonight", -3.536116699561526),
("hourhour", -2.236833715431265),
("<time-of-day> o'clockin|during the <part-of-day>",
-3.9415818076696905),
("todaypart of days", -3.9415818076696905),
("minutehour", -2.6888188391743224),
("at <time-of-day>in|during the <part-of-day>",
-3.536116699561526),
("time-of-day (latent)this <part-of-day>", -3.9415818076696905),
("Mondayin|during the <part-of-day>", -3.9415818076696905),
("intersectpart of days", -3.0252910757955354),
("Saturdaypart of days", -3.9415818076696905),
("intersectin|during the <part-of-day>", -3.9415818076696905),
("<day-of-month> (ordinal or number) of <named-month>in|during the <part-of-day>",
-3.9415818076696905),
("the <day-of-month> (ordinal)in|during the <part-of-day>",
-3.9415818076696905),
("tomorrowpart of days", -2.33214389523559),
("hh:mmin|during the <part-of-day>", -3.0252910757955354),
("time-of-day (latent)in|during the <part-of-day>",
-3.9415818076696905),
("hhmm (latent)in|during the <part-of-day>",
-3.9415818076696905),
("yesterdaypart of days", -3.536116699561526),
("<day-of-month> (ordinal or number) of <month>in|during the <part-of-day>",
-3.9415818076696905),
("Mondaypart of days", -3.9415818076696905)],
n = 38},
koData =
ClassData{prior = -1.749199854809259, unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("dayhour", -3.068052935133617),
("yearhour", -3.068052935133617),
("monthhour", -3.068052935133617),
("hourhour", -1.9694406464655074),
("at <time-of-day>in|during the <part-of-day>",
-3.068052935133617),
("year (latent)in|during the <part-of-day>",
-3.068052935133617),
("Februaryin|during the <part-of-day>", -3.068052935133617),
("tomorrowpart of days", -3.068052935133617),
("time-of-day (latent)in|during the <part-of-day>",
-2.151762203259462)],
n = 8}}),
("dd/mm",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods = HashMap.fromList [("", 0.0)], n = 28}}),
("today",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("at <time-of-day>",
Classifier{okData =
ClassData{prior = -0.22957444164450025,
unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("<time> timezone", -3.917010546939185),
("noon|midnight|EOD|end of day", -4.204692619390966),
("integer after|past <hour-of-day>", -3.917010546939185),
("<time-of-day> o'clock", -4.61015772749913),
("half after|past <hour-of-day>", -4.61015772749913),
("hhhmm", -3.6938669956249752),
("<hour-of-day> <integer>", -3.917010546939185),
("time-of-day (latent)", -1.6397432619294292),
("hhmm (latent)", -3.917010546939185),
("<time-of-day> am|pm", -2.0074680420547466),
("hh:mm", -3.3573947590037623),
("about|exactly <time-of-day>", -4.204692619390966),
("hour", -1.11365016603265),
("<time-of-day> sharp|exactly", -4.61015772749913),
("minute", -1.9360090780726016)],
n = 93},
koData =
ClassData{prior = -1.5841201044498106,
unseen = -4.1588830833596715,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0076405104623831),
("<time-of-day> am|pm", -3.044522437723423),
("hour", -0.924258901523332)],
n = 24}}),
("December",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("absorption of , after named day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.58351893845611,
likelihoods =
HashMap.fromList
[("Wednesday", -2.8622008809294686),
("Saturday", -2.8622008809294686),
("Monday", -2.456735772821304), ("Friday", -1.6094379124341003),
("day", -0.8472978603872037), ("Sunday", -2.8622008809294686),
("on <day>", -2.169053700369523)],
n = 14},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("September",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("tonight",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("last|past|next <duration>",
Classifier{okData =
ClassData{prior = -3.17486983145803e-2,
unseen = -4.2626798770413155,
likelihoods =
HashMap.fromList
[("week", -2.456735772821304), ("second", -2.639057329615259),
("day", -2.3025850929940455), ("year", -2.639057329615259),
("<integer> <unit-of-duration>", -0.7827593392496325),
("hour", -2.639057329615259), ("month", -2.639057329615259),
("minute", -2.639057329615259)],
n = 31},
koData =
ClassData{prior = -3.4657359027997265,
unseen = -2.3978952727983707,
likelihoods =
HashMap.fromList
[("<integer> <unit-of-duration>", -1.6094379124341003),
("hour", -1.6094379124341003)],
n = 1}}),
("the ides of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("March", -0.6931471805599453), ("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (ordinal or number) of <named-month>",
Classifier{okData =
ClassData{prior = -0.7621400520468967, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)March",
-1.6094379124341003),
("ordinal (digits)February", -1.8971199848858813),
("month", -0.916290731874155),
("ordinal (digits)March", -1.8971199848858813)],
n = 7},
koData =
ClassData{prior = -0.6286086594223742,
unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.4816045409242156),
("month", -0.8938178760220964),
("integer (numeric)July", -1.4816045409242156)],
n = 8}}),
("integer (0..19)",
Classifier{okData =
ClassData{prior = -1.227009259181436e-2,
unseen = -4.418840607796598,
likelihoods = HashMap.fromList [("", 0.0)], n = 81},
koData =
ClassData{prior = -4.406719247264253, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("in|during <named-month>|year",
Classifier{okData =
ClassData{prior = -0.2744368457017603,
unseen = -3.8066624897703196,
likelihoods =
HashMap.fromList
[("<year> (bc|ad)", -1.9924301646902063),
("October", -3.0910424533583156),
("year (latent)", -1.2992829841302609),
("year", -0.9509762898620451), ("March", -2.6855773452501515),
("month", -2.3978952727983707)],
n = 19},
koData =
ClassData{prior = -1.4271163556401458,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("October", -1.5040773967762742),
("year (latent)", -1.5040773967762742),
("year", -1.5040773967762742), ("month", -1.5040773967762742)],
n = 6}}),
("<part-of-day> at <time-of-day>",
Classifier{okData =
ClassData{prior = -8.223809823697212e-2,
unseen = -4.406719247264253,
likelihoods =
HashMap.fromList
[("this <part-of-day>hh:mm", -3.7013019741124937),
("tonighthh:mm", -3.7013019741124937),
("hourhour", -0.8979415932059586),
("hourminute", -3.0081547935525483),
("in|during the <part-of-day>time-of-day (latent)",
-3.7013019741124937),
("this <part-of-day>time-of-day (latent)", -1.9965538818740682),
("early morningtime-of-day (latent)", -3.7013019741124937),
("tonight<time-of-day> o'clock", -3.7013019741124937),
("tonighttime-of-day (latent)", -2.7850112422383386),
("part of dayshh:mm", -3.7013019741124937),
("part of daystime-of-day (latent)", -1.6218604324326575)],
n = 35},
koData =
ClassData{prior = -2.538973871058276, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("hourhour", -1.4469189829363254),
("this <part-of-day>time-of-day (latent)", -2.1400661634962708),
("tonighttime-of-day (latent)", -2.1400661634962708),
("part of daystime-of-day (latent)", -2.1400661634962708)],
n = 3}}),
("between <time-of-day> and <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -0.40546510810816444,
unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("minuteminute", -1.6739764335716716),
("hh:mmhh:mm", -2.0794415416798357),
("<time-of-day> am|pmtime-of-day (latent)",
-2.0794415416798357),
("hhhmmhhhmm", -2.0794415416798357),
("minutehour", -1.6739764335716716),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.0794415416798357)],
n = 4},
koData =
ClassData{prior = -1.0986122886681098,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -1.791759469228055),
("minutehour", -1.3862943611198906),
("hhhmmtime-of-day (latent)", -1.791759469228055)],
n = 2}}),
("Halloween",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Passover",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from <month> dd-dd (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3978952727983707,
likelihoods =
HashMap.fromList
[("Julyinteger (numeric)integer (numeric)", -1.6094379124341003),
("Augustordinal (digits)integer (numeric)",
-1.6094379124341003),
("month", -0.916290731874155),
("Augustordinal (digits)ordinal (digits)",
-1.6094379124341003)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("Good Friday",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("October",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods = HashMap.fromList [("", 0.0)], n = 22},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("month (grain)",
Classifier{okData =
ClassData{prior = -0.12136085700426748,
unseen = -3.4965075614664802,
likelihoods = HashMap.fromList [("", 0.0)], n = 31},
koData =
ClassData{prior = -2.169053700369523, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("<integer> more <unit-of-duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (numeric)minute (grain)", -0.6931471805599453),
("minute", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> o'clock",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.0794415416798357),
("<part-of-day> at <time-of-day>", -2.0794415416798357),
("time-of-day (latent)", -1.1631508098056809),
("hour", -0.8266785731844679)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [], n = 0}}),
("Vesak",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Earth Hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in|within|after <duration>",
Classifier{okData =
ClassData{prior = -0.12260232209233239,
unseen = -4.709530201312334,
likelihoods =
HashMap.fromList
[("week", -3.3141860046725258),
("<integer> more <unit-of-duration>", -4.007333185232471),
("three-quarters of an hour", -3.0910424533583156),
("<integer> + '\"", -3.3141860046725258),
("number.number hours", -4.007333185232471),
("second", -3.6018680771243066),
("half a <time-grain>", -3.0910424533583156),
("day", -3.3141860046725258), ("year", -4.007333185232471),
("<integer> <unit-of-duration>", -1.6094379124341003),
("a <unit-of-duration>", -3.0910424533583156),
("quarter of an hour", -3.0910424533583156),
("hour", -2.503255788456197),
("about|exactly <duration>", -4.007333185232471),
("half an hour (abbrev).", -3.6018680771243066),
("<integer> and an half hour", -4.007333185232471),
("minute", -1.2992829841302609)],
n = 46},
koData =
ClassData{prior = -2.159484249353372, unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("day", -2.70805020110221), ("quarter", -2.70805020110221),
("year", -1.791759469228055),
("<integer> <unit-of-duration>", -1.791759469228055),
("a <unit-of-duration>", -2.3025850929940455)],
n = 6}}),
("the closest <day> to <time>",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("dayday", -1.0986122886681098),
("Christmastoday", -1.791759469228055),
("Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-1.791759469228055),
("Monday<named-month> <day-of-month> (non ordinal)",
-1.791759469228055)],
n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -1.3862943611198906),
("MondayOctober", -1.3862943611198906)],
n = 1}}),
("January",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("three-quarters of an hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Mattu Pongal",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Wednesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("half after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> + '\"",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("half <integer> (UK style hour-of-day)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Ganesh Chaturthi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("July",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.5553480614894135,
likelihoods = HashMap.fromList [("", 0.0)], n = 33},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> <part-of-day>",
Classifier{okData =
ClassData{prior = -0.12516314295400605,
unseen = -3.6888794541139363,
likelihoods =
HashMap.fromList
[("time-of-day (latent)tonight", -2.5649493574615367),
("hourhour", -1.3609765531356008),
("<time-of-day> o'clockin|during the <part-of-day>",
-2.9704144655697013),
("minutehour", -1.717651497074333),
("at <time-of-day>in|during the <part-of-day>",
-2.277267285009756),
("time-of-day (latent)this <part-of-day>", -2.9704144655697013),
("hh:mmin|during the <part-of-day>", -2.0541237336955462),
("time-of-day (latent)in|during the <part-of-day>",
-2.277267285009756),
("hhmm (latent)in|during the <part-of-day>",
-2.9704144655697013)],
n = 15},
koData =
ClassData{prior = -2.1400661634962708, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("hourhour", -1.466337068793427),
("time-of-day (latent)in|during the <part-of-day>",
-1.466337068793427)],
n = 2}}),
("hour (grain)",
Classifier{okData =
ClassData{prior = -1.3723081191451507, unseen = -2.995732273553991,
likelihoods = HashMap.fromList [("", 0.0)], n = 18},
koData =
ClassData{prior = -0.2923879634891936, unseen = -4.007333185232471,
likelihoods = HashMap.fromList [("", 0.0)], n = 53}}),
("Parsi New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Shavuot",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day> <duration> hence|ago",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("dayyear", -0.6931471805599453),
("Diwali<integer> <unit-of-duration>", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> quarter",
Classifier{okData =
ClassData{prior = -0.4700036292457356, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -1.1786549963416462),
("ordinals (first..twentieth,thirtieth,...)quarter (grain)",
-1.466337068793427),
("quarter", -0.7731898882334817)],
n = 5},
koData =
ClassData{prior = -0.9808292530117262,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.8109302162163288),
("quarter", -0.8109302162163288)],
n = 3}}),
("Boss's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Orthodox Easter Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("one twenty two",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("May",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect",
Classifier{okData =
ClassData{prior = -0.4907042205665696, unseen = -7.174724309836376,
likelihoods =
HashMap.fromList
[("Navaratriyear (latent)", -6.480811139196849),
("Karva Chauthyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)in|during the <part-of-day>",
-6.480811139196849),
("Maha Shivaratriyear (latent)", -6.480811139196849),
("Ramadanyear (latent)", -5.228048170701481),
("<datetime> - <datetime> (interval)on <day>",
-5.094516778076958),
("Bhai Doojyear (latent)", -6.480811139196849),
("hourday", -4.465908118654584),
("dayhour", -3.4362887014734254),
("<time-of-day> - <time-of-day> (interval)on <day>",
-5.094516778076958),
("Martin Luther King's Dayyear (latent)", -6.075346031088684),
("Shemini Atzeretyear (latent)", -6.480811139196849),
("daymonth", -4.465908118654584),
("monthday", -6.075346031088684),
("monthyear", -4.689051669968793),
("Yom Ha'atzmautyear (latent)", -6.480811139196849),
("Orthodox Good Fridayyear (latent)", -6.075346031088684),
("Vijayadashamiyear (latent)", -6.480811139196849),
("Thai Pongalyear (latent)", -5.787663958636903),
("Thiru Onamyear (latent)", -5.787663958636903),
("hhhmmabsorption of , after named day", -6.480811139196849),
("Tuesdaythe <day-of-month> (ordinal)", -6.480811139196849),
("from <datetime> - <datetime> (interval)July",
-5.564520407322694),
("<day-of-month> (ordinal)Wednesday", -6.480811139196849),
("Krishna Janmashtamiyear (latent)", -6.075346031088684),
("Guru Gobind Singh Jayantiyear (latent)", -6.480811139196849),
("houryear", -5.564520407322694),
("this|next <day-of-week>hh(:mm) - <time-of-day> am|pm",
-6.480811139196849),
("Christmas<time-of-day> am|pm", -6.480811139196849),
("last <day-of-week> of <time>year (latent)",
-6.480811139196849),
("<time-of-day> am|pmintersect by \",\", \"of\", \"from\", \"'s\"",
-5.787663958636903),
("intersectin|during <named-month>|year", -6.480811139196849),
("<time-of-day> am|pmintersect", -5.228048170701481),
("Earth Houryear (latent)", -6.480811139196849),
("Ganesh Chaturthiyear (latent)", -6.480811139196849),
("Octoberyear (latent)", -4.976733742420574),
("intersect<time-of-day> am|pm", -6.480811139196849),
("Mattu Pongalyear (latent)", -6.480811139196849),
("Saturday<part-of-day> at <time-of-day>", -6.480811139196849),
("Shavuotyear (latent)", -6.480811139196849),
("Parsi New Yearyear (latent)", -5.564520407322694),
("at <time-of-day>in|within|after <duration>",
-6.480811139196849),
("Thursdayhh(:mm) - <time-of-day> am|pm", -6.480811139196849),
("todayin|within|after <duration>", -6.480811139196849),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-6.075346031088684),
("Marchyear (latent)", -6.480811139196849),
("intersect by \",\", \"of\", \"from\", \"'s\"hhhmm",
-6.075346031088684),
("Sukkotyear (latent)", -6.075346031088684),
("hhhmmintersect", -6.075346031088684),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-6.075346031088684),
("Clean Mondayyear (latent)", -6.075346031088684),
("monthhour", -6.075346031088684),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.564520407322694),
("todayat <time-of-day>", -6.480811139196849),
("Thursday<time> timezone", -4.082915866398478),
("tonight<time-of-day> am|pm", -6.480811139196849),
("time-of-day (latent)tonight", -6.075346031088684),
("from|since|after <time>December", -6.480811139196849),
("<time-of-day> am|pmon <day>", -4.465908118654584),
("this <time>hh(:mm) - <time-of-day> am|pm",
-6.480811139196849),
("yyyy-mm-ddhh:mm:ss", -6.075346031088684),
("dayday", -3.7082224169570672),
("<time> <part-of-day>at <time-of-day>", -6.075346031088684),
("tonightat <time-of-day>", -5.382198850528739),
("<time-of-day> am|pmabsorption of , after named day",
-5.787663958636903),
("Dayananda Saraswati Jayantiyear (latent)",
-6.480811139196849),
("today<time-of-day> am|pm", -6.480811139196849),
("Februarythe <day-of-month> (ordinal)", -6.075346031088684),
("at <time-of-day><time> <part-of-day>", -6.480811139196849),
("<day-of-month> (ordinal)intersect", -6.075346031088684),
("hourhour", -3.5103966736271475),
("Mahavir Jayantiyear (latent)", -6.075346031088684),
("Navaratriin|during <named-month>|year", -6.480811139196849),
("Wednesdaythis|last|next <cycle>", -6.480811139196849),
("Lentyear (latent)", -6.480811139196849),
("intersect<named-month> <day-of-month> (non ordinal)",
-4.609008962295257),
("Boghiyear (latent)", -6.480811139196849),
("dayyear", -1.9216848917101639),
("Karva Chauthin|during <named-month>|year",
-6.480811139196849),
("Thursdayfrom|since|after <time>", -6.075346031088684),
("<time-of-day> o'clockin|during the <part-of-day>",
-6.480811139196849),
("Thursdayat <time-of-day>", -5.787663958636903),
("Islamic New Yearyear (latent)", -6.075346031088684),
("Laylat al-Qadryear (latent)", -5.564520407322694),
("part of days<time-of-day> am|pm", -6.480811139196849),
("Shrove Tuesdayyear (latent)", -6.480811139196849),
("intersect by \",\", \"of\", \"from\" for year<time-of-day> am|pm",
-5.787663958636903),
("hourminute", -6.075346031088684),
("<time-of-day> am|pmtomorrow", -5.564520407322694),
("Yom Kippuryear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)Tuesday", -5.787663958636903),
("<part-of-day> of <time>year (latent)", -6.480811139196849),
("minutehour", -5.228048170701481),
("Kaanum Pongalyear (latent)", -6.075346031088684),
("Maha Saptamiyear (latent)", -6.480811139196849),
("at <time-of-day>in|during the <part-of-day>",
-5.787663958636903),
("time-of-day (latent)tomorrow", -5.564520407322694),
("part of daysat <time-of-day>", -4.871373226762748),
("absorption of , after named day<named-month> <day-of-month> (non ordinal)",
-4.465908118654584),
("for <duration> from <time>December", -6.480811139196849),
("tomorrow<time-of-day> sharp|exactly", -6.480811139196849),
("Thursdayfrom <datetime> - <datetime> (interval)",
-5.228048170701481),
("intersect by \",\", \"of\", \"from\" for yearhhhmm",
-5.228048170701481),
("time-of-day (latent)this <part-of-day>", -6.480811139196849),
("Pentecostyear (latent)", -6.480811139196849),
("Thursdayfrom <time-of-day> - <time-of-day> (interval)",
-5.228048170701481),
("<day-of-month> (ordinal)February", -6.480811139196849),
("Eid al-Fitryear (latent)", -5.094516778076958),
("Vasant Panchamiin|during <named-month>|year",
-6.480811139196849),
("Mondayin|during the <part-of-day>", -6.480811139196849),
("Chhathin|during <named-month>|year", -6.480811139196849),
("Diwaliin|during <named-month>|year", -6.480811139196849),
("this <part-of-day><time-of-day> am|pm", -6.480811139196849),
("Vaisakhiin|during <named-month>|year", -6.480811139196849),
("Guru Ravidass Jayantiyear (latent)", -5.228048170701481),
("Raksha Bandhanyear (latent)", -6.480811139196849),
("daysecond", -6.075346031088684),
("tomorrowfrom <time-of-day> - <time-of-day> (interval)",
-6.075346031088684),
("Ratha-Yatrayear (latent)", -6.480811139196849),
("Ashurayear (latent)", -6.480811139196849),
("Tuesdayin|during <named-month>|year", -6.480811139196849),
("Chinese New Yearyear (latent)", -6.480811139196849),
("tomorrowintersect", -6.480811139196849),
("Lag BaOmeryear (latent)", -6.480811139196849),
("last weekend of <named-month>year (latent)",
-6.480811139196849),
("Eid al-Adhayear (latent)", -4.340744975700578),
("intersectin|during the <part-of-day>", -6.480811139196849),
("Palm Sundayyear (latent)", -6.480811139196849),
("Christmasat <time-of-day>", -6.480811139196849),
("Passoveryear (latent)", -6.480811139196849),
("Lazarus Saturdayyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal or number) <named-month>year (latent)",
-6.480811139196849),
("hhhmmon <day>", -5.564520407322694),
("Yom HaShoahyear (latent)", -6.075346031088684),
("Thursday<datetime> - <datetime> (interval)",
-6.075346031088684),
("<day-of-month> (ordinal or number) of <named-month>in|during the <part-of-day>",
-6.480811139196849),
("Septemberyear (latent)", -6.075346031088684),
("Thursday<time-of-day> - <time-of-day> (interval)",
-4.976733742420574),
("Halloweenyear (latent)", -6.480811139196849),
("<ordinal> last <cycle> of <time>year (latent)",
-6.075346031088684),
("from <time-of-day> - <time-of-day> (interval)on <day>",
-5.787663958636903),
("intersect by \",\", \"of\", \"from\", \"'s\"<time-of-day> am|pm",
-6.480811139196849),
("at <time-of-day>intersect", -5.564520407322694),
("Rosh Hashanahyear (latent)", -5.787663958636903),
("Dhanterasyear (latent)", -6.480811139196849),
("Tu BiShvatyear (latent)", -6.480811139196849),
("<day-of-month> (ordinal)December", -5.787663958636903),
("Holiyear (latent)", -5.787663958636903),
("<time-of-day> - <time-of-day> (interval)tomorrow",
-6.480811139196849),
("Holika Dahanyear (latent)", -5.787663958636903),
("at <time-of-day>intersect by \",\", \"of\", \"from\", \"'s\"",
-6.075346031088684),
("dayminute", -3.166625134524323),
("Mawlidyear (latent)", -6.480811139196849),
("from <datetime> - <datetime> (interval)on <day>",
-6.075346031088684),
("<datetime> - <datetime> (interval)tomorrow",
-6.480811139196849),
("Jumu'atul-Widayear (latent)", -5.564520407322694),
("minuteday", -2.7313070632664775),
("absorption of , after named dayintersect",
-5.787663958636903),
("intersectyear (latent)", -6.480811139196849),
("Orthodox Easter Sundayyear (latent)", -6.480811139196849),
("time-of-day (latent)in|within|after <duration>",
-6.480811139196849),
("<ordinal> <cycle> of <time>year (latent)",
-6.480811139196849),
("intersecthhhmm", -6.075346031088684),
("the <day-of-month> (ordinal)in|during the <part-of-day>",
-6.480811139196849),
("Boss's Dayyear (latent)", -6.075346031088684),
("hhhmmintersect by \",\", \"of\", \"from\", \"'s\"",
-6.480811139196849),
("Global Youth Service Dayyear (latent)", -6.480811139196849),
("Dhanterasin|during <named-month>|year", -6.480811139196849),
("tonight<time-of-day> o'clock", -6.480811139196849),
("Tisha B'Avyear (latent)", -6.480811139196849),
("Isra and Mi'rajyear (latent)", -5.564520407322694),
("at <time-of-day>on <day>", -4.871373226762748),
("at <time-of-day>absorption of , after named day",
-6.075346031088684),
("time-of-day (latent)<time> <part-of-day>",
-5.787663958636903),
("Christmasyear (latent)", -6.075346031088684),
("Saturdayintersect", -6.480811139196849),
("Naraka Chaturdashiyear (latent)", -6.075346031088684),
("Thai Pongalin|during <named-month>|year", -6.480811139196849),
("dayweek", -6.480811139196849),
("Easter Sundayyear (latent)", -5.787663958636903),
("between <time-of-day> and <time-of-day> (interval)on <day>",
-6.075346031088684),
("weekyear", -5.382198850528739),
("King's Dayyear (latent)", -4.976733742420574),
("hh:mmin|during the <part-of-day>", -5.564520407322694),
("<cycle> after|before <time><time-of-day> am|pm",
-6.075346031088684),
("first|second|third|fourth|fifth <day-of-week> of <time>year (latent)",
-5.787663958636903),
("Hanukkahyear (latent)", -5.787663958636903),
("Rama Navamiyear (latent)", -6.480811139196849),
("February<time> <part-of-day>", -6.480811139196849),
("time-of-day (latent)in|during the <part-of-day>",
-5.787663958636903),
("Great Lentyear (latent)", -6.480811139196849),
("tomorrowat <time-of-day>", -5.787663958636903),
("hhmm (latent)in|during the <part-of-day>",
-6.480811139196849),
("tomorrow<part-of-day> at <time-of-day>", -6.075346031088684),
("Ugadiyear (latent)", -5.094516778076958),
("Vaisakhiyear (latent)", -5.787663958636903),
("absorption of , after named dayintersect by \",\", \"of\", \"from\" for year",
-5.787663958636903),
("last <cycle> of <time>year (latent)", -5.787663958636903),
("at <time-of-day>tomorrow", -6.075346031088684),
("tomorrow<time-of-day> am|pm", -6.480811139196849),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-6.480811139196849),
("Diwaliyear (latent)", -6.480811139196849),
("between <time> and <time>on <day>", -6.075346031088684),
("Black Fridayyear (latent)", -6.075346031088684),
("the <ordinal> last <cycle> of <time>year (latent)",
-6.480811139196849),
("in|during the <part-of-day>at <time-of-day>",
-6.480811139196849),
("Chhathyear (latent)", -6.075346031088684),
("Vasant Panchamiyear (latent)", -6.480811139196849),
("Rabindra Jayantiyear (latent)", -5.228048170701481),
("this <part-of-day>at <time-of-day>", -5.228048170701481),
("St Patrick's Dayyear (latent)", -6.480811139196849),
("Thursday<time> (timezone)", -6.480811139196849),
("<day-of-month> (ordinal or number) of <month>in|during the <part-of-day>",
-6.480811139196849),
("Pargat Diwasyear (latent)", -5.228048170701481),
("<datetime> - <datetime> (interval)July", -6.075346031088684),
("on <day><named-month> <day-of-month> (non ordinal)",
-5.787663958636903),
("Februaryintersect", -6.480811139196849),
("Simchat Torahyear (latent)", -6.480811139196849),
("minuteyear", -6.480811139196849)],
n = 502},
koData =
ClassData{prior = -0.9472529574781219, unseen = -6.843749949006225,
likelihoods =
HashMap.fromList
[("Thursdayhhhmm", -4.645458704902203),
("hourday", -3.546846416234093),
("<hour-of-day> <integer><time-of-day> am|pm",
-6.149536101678477),
("<day-of-month> (ordinal)August", -6.149536101678477),
("dayhour", -3.5845867442169403),
("<time> timezoneyear (latent)", -5.456388921118531),
("<time-of-day> - <time-of-day> (interval)on <day>",
-5.2332453698043215),
("Tuesdayfrom|since|after <time>", -5.456388921118531),
("daymonth", -3.441485900576267),
("hourquarter", -5.2332453698043215),
("monthyear", -4.896773133183109),
("<time-of-day> am|pmyear (latent)", -5.456388921118531),
("Thai Pongalyear (latent)", -5.456388921118531),
("intersecthh:mm", -6.149536101678477),
("from <datetime> - <datetime> (interval)July",
-5.744070993570313),
("<day-of-month> (ordinal)Wednesday", -6.149536101678477),
("houryear", -4.357776632450422),
("from <time-of-day> - <time-of-day> (interval)July",
-6.149536101678477),
("<day-of-month> (ordinal)October", -6.149536101678477),
("<time-of-day> am|pmintersect by \",\", \"of\", \"from\", \"'s\"",
-5.456388921118531),
("hournograin", -4.896773133183109),
("<time-of-day> am|pmintersect", -4.896773133183109),
("Octoberyear (latent)", -6.149536101678477),
("Good Fridayyear (latent)", -5.744070993570313),
("time-of-day (latent)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("early morningat <time-of-day>", -6.149536101678477),
("until <time>on <day>", -5.456388921118531),
("part of days<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("time-of-day (latent)intersect", -5.456388921118531),
("todayin <number> (implicit minutes)", -6.149536101678477),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-5.456388921118531),
("this <part-of-day><time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("about|exactly <time-of-day>year (latent)",
-6.149536101678477),
("hh:mmon <day>", -4.896773133183109),
("hhhmmintersect", -5.744070993570313),
("absorption of , after named dayJuly", -5.2332453698043215),
("from|since|after <time>July", -5.744070993570313),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-5.2332453698043215),
("Clean Mondayyear (latent)", -6.149536101678477),
("monthhour", -6.149536101678477),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("hourmonth", -4.009469938182206),
("todayat <time-of-day>", -6.149536101678477),
("hhhmmyear (latent)", -4.896773133183109),
("from|since|after <time>December", -6.149536101678477),
("from|since|after <time><time-of-day> am|pm",
-6.149536101678477),
("<time-of-day> am|pmon <day>", -4.896773133183109),
("Mondayyear (latent)", -5.456388921118531),
("dayday", -4.009469938182206),
("on <day>September", -5.456388921118531),
("time-of-day (latent)September", -5.744070993570313),
("hourhour", -4.0700945599986404),
("time-of-day (latent)on <day>", -4.645458704902203),
("Thursdaydd/mm", -6.149536101678477),
("time-of-day (latent)<cycle> after|before <time>",
-5.744070993570313),
("dayyear", -3.1291112155341145),
("New Year's Dayyear (latent)", -5.2332453698043215),
("time-of-day (latent)Sunday", -5.744070993570313),
("Thursdayfrom|since|after <time>", -4.444788009440051),
("Thursdayat <time-of-day>", -4.540098189244376),
("<integer> to|till|before <hour-of-day>September",
-6.149536101678477),
("Aprilyear (latent)", -6.149536101678477),
("the <day-of-month> (ordinal)July", -6.149536101678477),
("the <day-of-month> (number)July", -6.149536101678477),
("monthminute", -6.149536101678477),
("<time-of-day> am|pmtomorrow", -5.744070993570313),
("Thursdayhh:mm", -5.2332453698043215),
("<day-of-month> (ordinal)Tuesday", -5.744070993570313),
("minutemonth", -4.009469938182206),
("time-of-day (latent)Friday", -5.744070993570313),
("minutehour", -6.149536101678477),
("part of daysat <time-of-day>", -5.0509238130103675),
("time-of-day (latent)this|last|next <cycle>",
-3.7981608445149995),
("Augustyear (latent)", -5.744070993570313),
("week-endin|during <named-month>|year", -6.149536101678477),
("time-of-day (latent)Tuesday", -5.744070993570313),
("tomorrowfrom <time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("tonight<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("Sundayyear (latent)", -5.2332453698043215),
("hourweek", -5.2332453698043215),
("the <day-of-month> (ordinal)Monday", -5.456388921118531),
("Christmasat <time-of-day>", -6.149536101678477),
("from|since|after <time>year (latent)", -5.0509238130103675),
("hhhmmon <day>", -5.2332453698043215),
("yesterday<time-of-day> am|pm", -6.149536101678477),
("<day-of-month> (ordinal)July", -5.456388921118531),
("intersect by \",\", \"of\", \"from\", \"'s\"hh:mm",
-6.149536101678477),
("Thursday<time-of-day> - <time-of-day> (interval)",
-6.149536101678477),
("in|during <named-month>|yearyear (latent)",
-6.149536101678477),
("at <time-of-day>intersect", -5.2332453698043215),
("hh:mmyear (latent)", -4.763241740558586),
("Holiyear (latent)", -6.149536101678477),
("until <time><time-of-day> am|pm", -6.149536101678477),
("at <time-of-day>intersect by \",\", \"of\", \"from\", \"'s\"",
-5.744070993570313),
("dayminute", -3.316322757622261),
("yyyy-mm-ddhh:mm", -5.744070993570313),
("intersectfrom|since|after <time>", -5.744070993570313),
("intersectSeptember", -4.277733924776886),
("minuteday", -2.9925356805283636),
("absorption of , after named dayintersect",
-6.149536101678477),
("intersectyear (latent)", -6.149536101678477),
("Februaryin|during the <part-of-day>", -6.149536101678477),
("<duration> after|before|from|past <time>December",
-6.149536101678477),
("time-of-day (latent)July", -5.456388921118531),
("Saturdayyear (latent)", -6.149536101678477),
("hhhmmintersect by \",\", \"of\", \"from\", \"'s\"",
-6.149536101678477),
("<day-of-month> (ordinal)Monday", -4.896773133183109),
("at <time-of-day>on <day>", -5.2332453698043215),
("absorption of , after named daySeptember",
-4.896773133183109),
("Naraka Chaturdashiyear (latent)", -6.149536101678477),
("from|since|after <time>on <day>", -5.2332453698043215),
("dayweek", -6.149536101678477),
("Easter Sundayyear (latent)", -5.744070993570313),
("Thursday<time-of-day> am|pm", -4.896773133183109),
("weekyear", -5.744070993570313),
("time-of-day (latent)Thursday", -5.744070993570313),
("<named-month> <day-of-month> (non ordinal)until <time>",
-6.149536101678477),
("<day-of-month> (ordinal)April", -6.149536101678477),
("yyyy-mm-dd<time-of-day> - <time-of-day> (interval)",
-5.744070993570313),
("intersect by \",\", \"of\", \"from\" for yearhh:mm",
-5.456388921118531),
("Sundayfrom|since|after <time>", -6.149536101678477),
("absorption of , after named dayFebruary",
-5.2332453698043215),
("time-of-day (latent)in|during the <part-of-day>",
-5.744070993570313),
("July<integer> to|till|before <hour-of-day>",
-6.149536101678477),
("tomorrowat <time-of-day>", -6.149536101678477),
("daynograin", -5.744070993570313),
("Fridayin|during <named-month>|year", -6.149536101678477),
("<integer> to|till|before <hour-of-day>July",
-5.744070993570313),
("last <cycle> of <time>year (latent)", -5.744070993570313),
("tomorrow<time-of-day> am|pm", -6.149536101678477),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-5.456388921118531),
("Diwaliyear (latent)", -5.744070993570313),
("<time-of-day> - <time-of-day> (interval)July",
-6.149536101678477),
("this <part-of-day>at <time-of-day>", -5.2332453698043215),
("Fridayyear (latent)", -5.2332453698043215),
("time-of-day (latent)April", -6.149536101678477),
("minuteyear", -3.9523115243422575)],
n = 318}}),
("one eleven",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("after lunch/work/school",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("early morning",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("in <number> (implicit minutes)",
Classifier{okData =
ClassData{prior = -1.329135947279942, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.3184537311185346),
("integer (0..19)", -1.2992829841302609)],
n = 9},
koData =
ClassData{prior = -0.30748469974796055,
unseen = -3.332204510175204,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.20479441264601328),
("integer (0..19)", -1.6863989535702288)],
n = 25}}),
("<ordinal> <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("daymonth", -1.791759469228055),
("ordinal (digits)quarter (grain)year (latent)",
-2.1972245773362196),
("quarteryear", -2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)day (grain)October",
-2.1972245773362196),
("ordinal (digits)day (grain)this|last|next <cycle>",
-2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.1972245773362196),
("weekmonth", -1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.1972245773362196)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("year (grain)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6635616461296463,
likelihoods = HashMap.fromList [("", 0.0)], n = 37},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from <datetime> - <datetime> (interval)",
Classifier{okData =
ClassData{prior = -1.3737155789130304, unseen = -4.532599493153256,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -3.4231762883809305),
("minuteminute", -2.91235066461494),
("the <day-of-month> (number)the <day-of-month> (ordinal)",
-3.828641396489095),
("<day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.4231762883809305),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.4231762883809305),
("hh:mmhh:mm", -2.91235066461494),
("dayday", -1.9568392195875037),
("the <day-of-month> (ordinal)the <day-of-month> (number)",
-3.828641396489095),
("the <day-of-month> (number)the <day-of-month> (number)",
-3.4231762883809305),
("<named-month>|<named-day> <day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.828641396489095),
("<time-of-day> am|pmtime-of-day (latent)", -3.828641396489095),
("hourhour", -3.4231762883809305),
("minutehour", -3.4231762883809305),
("<day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.828641396489095),
("the <day-of-month> (ordinal)<day-of-month> (ordinal)",
-3.828641396489095),
("<time-of-day> am|pm<time-of-day> am|pm", -3.828641396489095),
("<day-of-month> (ordinal)the <day-of-month> (number)",
-3.828641396489095)],
n = 20},
koData =
ClassData{prior = -0.29191040856130207, unseen = -5.14166355650266,
likelihoods =
HashMap.fromList
[("hourday", -2.570849079588725),
("dayhour", -3.056356895370426),
("<day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("time-of-day (latent)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("time-of-day (latent)<day-of-month> (ordinal)",
-4.442651256490317),
("time-of-day (latent)intersect", -4.442651256490317),
("<day-of-month> (ordinal)time-of-day (latent)",
-3.7495040759303713),
("<named-month>|<named-day> <day-of-month> (ordinal)year (latent)",
-4.442651256490317),
("hh:mmtime-of-day (latent)", -3.5263605246161616),
("hh:mm<time-of-day> am|pm", -4.037186148382152),
("minuteminute", -3.5263605246161616),
("<day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("time-of-day (latent)time-of-day (latent)",
-3.5263605246161616),
("hh:mmhh:mm", -4.442651256490317),
("dayday", -1.916922612182061),
("the <day-of-month> (ordinal)the <day-of-month> (number)",
-4.037186148382152),
("the <day-of-month> (number)the <day-of-month> (number)",
-4.442651256490317),
("time-of-day (latent)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)intersect", -4.442651256490317),
("hourhour", -3.1898882879949486),
("time-of-day (latent)the <day-of-month> (ordinal)",
-4.442651256490317),
("dayyear", -4.442651256490317),
("the <day-of-month> (ordinal)time-of-day (latent)",
-4.442651256490317),
("the <day-of-month> (number)time-of-day (latent)",
-4.442651256490317),
("minutehour", -3.3440389678222067),
("the <day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("the <day-of-month> (number)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.442651256490317),
("hh:mmintersect", -4.037186148382152),
("time-of-day (latent)<day-of-month> (ordinal or number) of <month>",
-4.037186148382152),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) of <month>",
-4.037186148382152),
("time-of-day (latent)<time-of-day> am|pm", -4.442651256490317),
("time-of-day (latent)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("time-of-day (latent)the <day-of-month> (number)",
-4.037186148382152),
("the <day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("the <day-of-month> (number)<day-of-month> (ordinal or number) <named-month>",
-4.442651256490317),
("the <day-of-month> (number)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)<day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("time-of-day (latent)<day-of-month> (ordinal or number) of <named-month>",
-4.037186148382152),
("<day-of-month> (ordinal)the <day-of-month> (number)",
-4.442651256490317),
("the <day-of-month> (ordinal)intersect", -4.037186148382152),
("<named-month> <day-of-month> (non ordinal)time-of-day (latent)",
-4.442651256490317),
("the <day-of-month> (number)intersect", -4.037186148382152)],
n = 59}}),
("Saturday",
Classifier{okData =
ClassData{prior = -0.11778303565638351,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -2.1972245773362196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("the <cycle> of <time>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("week (grain)<named-month>|<named-day> <day-of-month> (ordinal)",
-1.845826690498331),
("weekmonth", -1.845826690498331),
("week (grain)October", -1.845826690498331),
("week (grain)<named-month> <day-of-month> (non ordinal)",
-1.845826690498331),
("weekday", -1.3350010667323402)],
n = 6},
koData =
ClassData{prior = -1.9459101490553135,
unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("second (grain) March", -1.5040773967762742),
("secondmonth", -1.5040773967762742)],
n = 1}}),
("number.number hours",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("from <time-of-day> - <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -0.7308875085427924,
unseen = -3.6888794541139363,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -2.5649493574615367),
("minuteminute", -1.8718021769015913),
("hh:mmhh:mm", -1.8718021769015913),
("<time-of-day> am|pmtime-of-day (latent)",
-2.5649493574615367),
("hourhour", -2.5649493574615367),
("hourminute", -2.5649493574615367),
("minutehour", -2.0541237336955462),
("time-of-day (latent)<time-of-day> sharp|exactly",
-2.9704144655697013),
("time-of-day (latent)hh:mm", -2.9704144655697013),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.5649493574615367)],
n = 13},
koData =
ClassData{prior = -0.6567795363890705,
unseen = -3.7376696182833684,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -1.9218125974762528),
("hh:mm<time-of-day> am|pm", -2.6149597780361984),
("minuteminute", -2.6149597780361984),
("time-of-day (latent)time-of-day (latent)",
-1.9218125974762528),
("hh:mmhh:mm", -3.0204248861443626),
("hourhour", -1.7676619176489945),
("minutehour", -1.7676619176489945),
("time-of-day (latent)<time-of-day> am|pm",
-3.0204248861443626)],
n = 14}}),
("integer 21..99",
Classifier{okData =
ClassData{prior = -0.916290731874155, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (20..90)integer (0..19)", -0.2876820724517809)],
n = 2},
koData =
ClassData{prior = -0.5108256237659907, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("integer (numeric)integer (numeric)", -0.2231435513142097)],
n = 3}}),
("Global Youth Service Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Tisha B'Av",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyy-mm-dd",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("year (latent)",
Classifier{okData =
ClassData{prior = -0.14681486833704485,
unseen = -5.393627546352362,
likelihoods =
HashMap.fromList
[("integer (numeric)", -2.7779564107075706e-2),
("intersect 2 numbers", -4.00277736869661)],
n = 215},
koData =
ClassData{prior = -1.9910923718485463,
unseen = -3.6635616461296463,
likelihoods =
HashMap.fromList
[("integer (numeric)", -1.55814461804655),
("negative numbers", -0.41871033485818493),
("compose by multiplication", -2.2512917986064953)],
n = 34}}),
("<time> for <duration>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -3.5553480614894135,
likelihoods =
HashMap.fromList
[("minuteminute", -2.833213344056216),
("<time-of-day> am|pm<integer> <unit-of-duration>",
-2.1400661634962708),
("dayday", -1.4469189829363254),
("hourminute", -1.916922612182061),
("hhhmm<integer> <unit-of-duration>", -2.833213344056216),
("intersect<integer> <unit-of-duration>", -2.1400661634962708),
("<day-of-month> (ordinal or number) <named-month><integer> <unit-of-duration>",
-2.4277482359480516),
("from|since|after <time><integer> <unit-of-duration>",
-2.1400661634962708)],
n = 12},
koData =
ClassData{prior = -1.9459101490553135, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("monthday", -1.540445040947149),
("December<integer> <unit-of-duration>", -1.540445040947149)],
n = 2}}),
("hhhmm",
Classifier{okData =
ClassData{prior = -2.247285585205863e-2,
unseen = -3.828641396489095,
likelihoods = HashMap.fromList [("", 0.0)], n = 44},
koData =
ClassData{prior = -3.8066624897703196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("as soon as possible",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Mahavir Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Monday",
Classifier{okData =
ClassData{prior = -0.21357410029805904,
unseen = -3.1354942159291497,
likelihoods = HashMap.fromList [("", 0.0)], n = 21},
koData =
ClassData{prior = -1.6486586255873816,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("dd/mm/yyyy",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yesterday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<ordinal> quarter <year>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)year (latent)",
-0.6931471805599453),
("quarteryear", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Dayananda Saraswati Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh:mm:ss",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Hanukkah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("first|second|third|fourth|fifth <day-of-week> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6635616461296463,
likelihoods =
HashMap.fromList
[("daymonth", -0.8649974374866046),
("ordinals (first..twentieth,thirtieth,...)Tuesdaythis|last|next <cycle>",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)TuesdaySeptember",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-2.9444389791664407),
("ordinals (first..twentieth,thirtieth,...)WednesdayOctober",
-2.538973871058276),
("ordinals (first..twentieth,thirtieth,...)Wednesdayintersect",
-2.538973871058276),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-1.6916760106710724),
("ordinals (first..twentieth,thirtieth,...)TuesdayOctober",
-2.538973871058276)],
n = 15},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("<hour-of-day> <integer>",
Classifier{okData =
ClassData{prior = -9.53101798043249e-2,
unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("at <time-of-day>integer (20..90)", -2.5649493574615367),
("time-of-day (latent)integer (numeric)", -2.159484249353372),
("time-of-day (latent)integer 21..99", -2.159484249353372),
("hour", -0.8602012652231115),
("at <time-of-day>integer (numeric)", -2.159484249353372),
("time-of-day (latent)integer (20..90)", -1.8718021769015913)],
n = 10},
koData =
ClassData{prior = -2.3978952727983707,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("hour", -1.3862943611198906),
("time-of-day (latent)integer (20..90)", -1.3862943611198906)],
n = 1}}),
("Rama Navami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<hour-of-day> quarter",
Classifier{okData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 2}}),
("half a <time-grain>",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 5},
koData =
ClassData{prior = -1.791759469228055, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("hour (grain)", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1}}),
("King's Day",
Classifier{okData =
ClassData{prior = -0.11778303565638351,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("", 0.0)], n = 8},
koData =
ClassData{prior = -2.1972245773362196,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("Valentine's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("from the <day-of-month> (ordinal or number) to the <day-of-month> (ordinal or number) of <named-month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4011973816621555,
likelihoods =
HashMap.fromList
[("ordinal (digits)ordinal (digits)July", -1.9810014688665833),
("integer (numeric)integer (numeric)July", -1.9810014688665833),
("integer (numeric)ordinal (digits)July", -1.9810014688665833),
("ordinal (digits)integer (numeric)July", -1.9810014688665833),
("month", -0.8023464725249373)],
n = 12},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("April",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Maha Saptami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("end of month",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("week (grain)",
Classifier{okData =
ClassData{prior = -4.546237407675729e-2,
unseen = -4.477336814478207,
likelihoods = HashMap.fromList [("", 0.0)], n = 86},
koData =
ClassData{prior = -3.1135153092103742, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("<part-of-day> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.2188758248682006,
likelihoods =
HashMap.fromList
[("part of daysintersect by \",\", \"of\", \"from\", \"'s\"",
-2.4849066497880004),
("part of daysintersect", -2.4849066497880004),
("hourday", -0.9808292530117262),
("part of daysthe <day-of-month> (ordinal)",
-2.4849066497880004),
("part of daysthe <day-of-month> (number)",
-2.4849066497880004),
("part of daysthis <time>", -2.4849066497880004),
("part of daysthe <day-of-month> (ordinal or number) of <named-month>",
-2.4849066497880004),
("part of daysChristmas", -2.0794415416798357)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("from <time> for <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("<time-of-day> am|pm<integer> <unit-of-duration>",
-1.7047480922384253),
("dayday", -1.2992829841302609),
("hourminute", -1.7047480922384253),
("intersect<integer> <unit-of-duration>", -1.7047480922384253),
("<day-of-month> (ordinal or number) <named-month><integer> <unit-of-duration>",
-1.7047480922384253)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <day-of-week> from <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("integer (numeric)Fridaynow", -2.2512917986064953),
("integer (0..19)Tuesdaynow", -2.2512917986064953),
("integer (0..19)Sundaynow", -2.2512917986064953),
("integer (0..19)Fridaynow", -2.2512917986064953),
("daynograin", -0.9985288301111273),
("integer (numeric)Sundaynow", -2.2512917986064953),
("integer (numeric)Tuesdaynow", -2.2512917986064953)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("Shrove Tuesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("now",
Classifier{okData =
ClassData{prior = -6.899287148695143e-2,
unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14},
koData =
ClassData{prior = -2.70805020110221, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<day-of-month> (ordinal or number) of <named-month>",
Classifier{okData =
ClassData{prior = -0.7339691750802004,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -2.740840023925201),
("ordinals (first..twentieth,thirtieth,...)March",
-1.6422277352570913),
("ordinal (digits)February", -2.740840023925201),
("integer (numeric)February", -2.3353749158170367),
("month", -0.8690378470236094),
("ordinal (digits)March", -2.3353749158170367),
("integer (numeric)July", -2.740840023925201)],
n = 12},
koData =
ClassData{prior = -0.6539264674066639,
unseen = -3.5263605246161616,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.550597412411167),
("ordinal (digits)February", -2.803360380906535),
("month", -0.8574502318512216),
("integer (numeric)July", -1.550597412411167)],
n = 13}}),
("this <part-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("hour", -0.6931471805599453),
("part of days", -0.6931471805599453)],
n = 14},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Kaanum Pongal",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Yom Kippur",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> minutes to|till|before <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("integer (numeric)minute (grain)time-of-day (latent)",
-0.6931471805599453),
("minutehour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Rabindra Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("powers of tens",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Pargat Diwas",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Friday",
Classifier{okData =
ClassData{prior = -0.3184537311185346, unseen = -2.890371757896165,
likelihoods = HashMap.fromList [("", 0.0)], n = 16},
koData =
ClassData{prior = -1.2992829841302609,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6}}),
("in|during the <part-of-day>",
Classifier{okData =
ClassData{prior = -6.899287148695143e-2,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("early morning", -2.740840023925201),
("hour", -0.7259370033829361),
("part of days", -0.7949298748698876)],
n = 14},
koData =
ClassData{prior = -2.70805020110221, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("hour", -0.916290731874155),
("part of days", -0.916290731874155)],
n = 1}}),
("St Patrick's Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("tomorrow",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods = HashMap.fromList [("", 0.0)], n = 22},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh(:mm) - <time-of-day> am|pm",
Classifier{okData =
ClassData{prior = -0.10536051565782628,
unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0116009116784799),
("hh:mm", -1.9924301646902063), ("hour", -1.0116009116784799),
("minute", -1.9924301646902063)],
n = 9},
koData =
ClassData{prior = -2.3025850929940455,
unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("time-of-day (latent)", -1.0986122886681098),
("hour", -1.0986122886681098)],
n = 1}}),
("this|last|next <cycle>",
Classifier{okData =
ClassData{prior = -0.42050298547270487,
unseen = -5.241747015059643,
likelihoods =
HashMap.fromList
[("week", -1.2474579162656747),
("month (grain)", -2.3460702049337847),
("year (grain)", -2.528391761727739),
("week (grain)", -1.2474579162656747),
("quarter", -3.6270040503958487), ("year", -2.528391761727739),
("month", -2.3460702049337847),
("quarter (grain)", -3.6270040503958487)],
n = 88},
koData =
ClassData{prior = -1.0691984034618165, unseen = -4.653960350157523,
likelihoods =
HashMap.fromList
[("week", -1.8111775550851565),
("month (grain)", -2.4471663218051534),
("year (grain)", -3.0349529867072724),
("second", -3.0349529867072724),
("week (grain)", -1.8111775550851565),
("day", -2.2464956263430023), ("quarter", -3.0349529867072724),
("year", -3.0349529867072724),
("second (grain) ", -3.0349529867072724),
("month", -2.4471663218051534),
("quarter (grain)", -3.0349529867072724),
("day (grain)", -2.2464956263430023)],
n = 46}}),
("Simchat Torah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("New Year's Eve",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)year (latent)",
-0.6931471805599453),
("quarteryear", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Raksha Bandhan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ashura",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Ratha-Yatra",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Palm Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Eid al-Adha",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.890371757896165,
likelihoods = HashMap.fromList [("", 0.0)], n = 16},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("by <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -1.9459101490553135),
("time-of-day (latent)", -1.9459101490553135),
("<time-of-day> am|pm", -1.9459101490553135),
("hh:mm", -1.9459101490553135), ("hour", -1.540445040947149),
("minute", -1.540445040947149)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.4818380868927383,
unseen = -3.1780538303479458,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-1.5260563034950494),
("ordinal (digits)", -0.24512245803298496)],
n = 21},
koData =
ClassData{prior = -0.9614111671546247, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-0.6286086594223742),
("ordinal (digits)", -0.7621400520468967)],
n = 13}}),
("last weekend of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("October", -0.9555114450274363), ("July", -1.8718021769015913),
("month", -0.7731898882334817)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("the <day-of-month> (number)",
Classifier{okData =
ClassData{prior = -0.8649974374866046,
unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 8},
koData =
ClassData{prior = -0.5465437063680699,
unseen = -2.5649493574615367,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 11}}),
("Lag BaOmer",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("fractional number",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14}}),
("Guru Ravidass Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Sunday",
Classifier{okData =
ClassData{prior = -0.40546510810816444,
unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -1.0986122886681098,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("Chinese New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("February",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods = HashMap.fromList [("", 0.0)], n = 13},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("minute (grain)",
Classifier{okData =
ClassData{prior = -7.696104113612832e-2,
unseen = -3.295836866004329,
likelihoods = HashMap.fromList [("", 0.0)], n = 25},
koData =
ClassData{prior = -2.6026896854443837,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("last|this|next <season>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> quarter",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.6931471805599453),
("quarter", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)quarter (grain)", -0.6931471805599453),
("quarter", -0.6931471805599453)],
n = 1}}),
("Orthodox Good Friday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("time-of-day (latent)",
Classifier{okData =
ClassData{prior = -0.6970764586998348, unseen = -4.867534450455582,
likelihoods =
HashMap.fromList
[("integer (numeric)", -9.763846956391606e-2),
("integer (0..19)", -2.374905754573672)],
n = 127},
koData =
ClassData{prior = -0.689233281238809, unseen = -4.875197323201151,
likelihoods =
HashMap.fromList
[("integer (numeric)", -0.15800424914324832),
("integer (0..19)", -1.923095471289142)],
n = 128}}),
("beginning of year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("last <day-of-week> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("daymonth", -0.916290731874155),
("SundayMarch", -2.0149030205422647),
("MondayMarch", -2.0149030205422647),
("FridayOctober", -1.6094379124341003),
("Sundayintersect", -2.0149030205422647)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <unit-of-duration>",
Classifier{okData =
ClassData{prior = -0.6164133863285559, unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("week", -2.6642475784438173),
("integer (0..19)year (grain)", -3.22386336637924),
("integer (numeric)day (grain)", -2.6642475784438173),
("integer (0..19)second (grain) ", -3.917010546939185),
("integer (0..19)hour (grain)", -3.1060803307228566),
("second", -3.5115454388310208),
("integer (numeric)second (grain) ", -4.204692619390966),
("integer (numeric)year (grain)", -3.3573947590037623),
("day", -2.412933150162911), ("year", -2.6642475784438173),
("integer (numeric)week (grain)", -3.22386336637924),
("integer (0..19)month (grain)", -3.6938669956249752),
("integer (20..90)minute (grain)", -4.61015772749913),
("hour", -2.738355550597539), ("month", -3.3573947590037623),
("integer (numeric)minute (grain)", -2.5952547069568657),
("integer (0..19)minute (grain)", -3.22386336637924),
("integer (numeric)month (grain)", -4.204692619390966),
("minute", -2.167810692129926),
("integer (numeric)hour (grain)", -3.6938669956249752),
("integer (0..19)day (grain)", -3.6938669956249752),
("integer (0..19)week (grain)", -3.3573947590037623)],
n = 88},
koData =
ClassData{prior = -0.7762620872704519, unseen = -5.170483995038151,
likelihoods =
HashMap.fromList
[("week", -3.5553480614894135),
("integer (0..19)year (grain)", -4.0661736852554045),
("integer (numeric)day (grain)", -4.0661736852554045),
("integer (numeric)quarter (grain)", -4.0661736852554045),
("integer (numeric)year (grain)", -4.0661736852554045),
("day", -3.5553480614894135), ("quarter", -3.5553480614894135),
("year", -3.5553480614894135),
("integer (numeric)week (grain)", -4.0661736852554045),
("integer (0..19)month (grain)", -4.0661736852554045),
("hour", -1.157452788691043), ("month", -3.5553480614894135),
("integer (numeric)minute (grain)", -4.471638793363569),
("integer (numeric)month (grain)", -4.0661736852554045),
("minute", -4.471638793363569),
("integer (numeric)hour (grain)", -1.157452788691043),
("integer (0..19)day (grain)", -4.0661736852554045),
("integer (0..19)week (grain)", -4.0661736852554045),
("integer (0..19)quarter (grain)", -4.0661736852554045)],
n = 75}}),
("from the <day-of-month> (ordinal or number) to the <day-of-month> (ordinal or number) <named-month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods =
HashMap.fromList
[("ordinal (digits)ordinal (digits)July", -1.3217558399823195),
("integer (numeric)integer (numeric)July", -1.3217558399823195),
("month", -0.7621400520468967)],
n = 6},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Guru Gobind Singh Jayanti",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hhmm (latent)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Krishna Janmashtami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<time-of-day> am|pm",
Classifier{okData =
ClassData{prior = -0.2584829177595186, unseen = -5.697093486505405,
likelihoods =
HashMap.fromList
[("from|since|after <time>", -3.7478219897473863),
("integer after|past <hour-of-day>", -4.307437777682809),
("at <time-of-day>", -2.3978952727983707),
("<time-of-day> o'clock", -4.59511985013459),
("half after|past <hour-of-day>", -4.59511985013459),
("second", -5.000584958242754),
("hh:mm:ss", -5.000584958242754),
("<hour-of-day> <integer>", -4.084294226368599),
("<integer> minutes to|till|before <hour-of-day>",
-5.000584958242754),
("time-of-day (latent)", -1.6863989535702288),
("hhmm (latent)", -5.000584958242754),
("hh:mm", -2.3978952727983707),
("quarter after|past <hour-of-day>", -3.4965075614664802),
("until <time>", -4.307437777682809),
("about|exactly <time-of-day>", -5.000584958242754),
("hour", -1.2393848425491918),
("<time-of-day> sharp|exactly", -5.000584958242754),
("minute", -1.7047480922384253)],
n = 139},
koData =
ClassData{prior = -1.4793847841859027, unseen = -4.624972813284271,
likelihoods =
HashMap.fromList
[("<integer> to|till|before <hour-of-day>", -3.228826155721369),
("from|since|after <time>", -3.228826155721369),
("at <time-of-day>", -3.5165082281731497),
("time-of-day (latent)", -1.1811333123561132),
("hh:mm", -3.5165082281731497),
("until <time>", -3.9219733362813143),
("hour", -1.0316015783851495), ("minute", -2.6692103677859462)],
n = 41}}),
("Yom Ha'atzmaut",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("on <day>",
Classifier{okData =
ClassData{prior = -0.2231435513142097, unseen = -4.04305126783455,
likelihoods =
HashMap.fromList
[("Thursday", -1.8281271133989299),
("absorption of , after named day", -2.639057329615259),
("intersect", -2.639057329615259),
("Saturday", -2.639057329615259),
("Friday", -2.9267394020670396), ("day", -0.8064758658669484),
("the <day-of-month> (ordinal)", -2.9267394020670396),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-2.639057329615259)],
n = 24},
koData =
ClassData{prior = -1.6094379124341003, unseen = -3.044522437723423,
likelihoods =
HashMap.fromList
[("intersect", -1.6094379124341003),
("day", -1.0498221244986778),
("intersect by \",\", \"of\", \"from\", \"'s\"",
-1.6094379124341003)],
n = 6}}),
("Thiru Onam",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Thai Pongal",
Classifier{okData =
ClassData{prior = -0.5596157879354228, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -0.8472978603872037,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3}}),
("Vijayadashami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("part of <named-month>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("March", -0.6931471805599453), ("month", -0.6931471805599453)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("a <unit-of-duration>",
Classifier{okData =
ClassData{prior = -1.0296194171811581,
unseen = -3.5553480614894135,
likelihoods =
HashMap.fromList
[("week", -2.1400661634962708),
("year (grain)", -2.4277482359480516),
("second", -2.833213344056216),
("week (grain)", -2.1400661634962708),
("day", -2.1400661634962708),
("minute (grain)", -2.833213344056216),
("year", -2.4277482359480516),
("second (grain) ", -2.833213344056216),
("minute", -2.833213344056216),
("day (grain)", -2.1400661634962708)],
n = 10},
koData =
ClassData{prior = -0.4418327522790392,
unseen = -3.9318256327243257,
likelihoods =
HashMap.fromList
[("hour (grain)", -2.3025850929940455),
("quarter", -1.3470736479666092),
("minute (grain)", -2.8134107167600364),
("hour", -2.3025850929940455),
("quarter (grain)", -1.3470736479666092),
("minute", -2.8134107167600364)],
n = 18}}),
("at the beginning|end of <year>",
Classifier{okData =
ClassData{prior = -0.13353139262452263,
unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("year (latent)", -1.2237754316221157),
("this|last|next <cycle>", -1.4469189829363254),
("year", -0.7537718023763802)],
n = 7},
koData =
ClassData{prior = -2.0794415416798357, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("this|last|next <cycle>", -0.916290731874155),
("year", -0.916290731874155)],
n = 1}}),
("Dhanteras",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Tu BiShvat",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Whit Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hh:mm",
Classifier{okData =
ClassData{prior = -0.12260232209233239,
unseen = -4.2626798770413155,
likelihoods = HashMap.fromList [("", 0.0)], n = 69},
koData =
ClassData{prior = -2.159484249353372, unseen = -2.3978952727983707,
likelihoods = HashMap.fromList [("", 0.0)], n = 9}}),
("Holi",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("upcoming <integer> <cycle>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.02535169073515,
likelihoods =
HashMap.fromList
[("week", -2.3978952727983707),
("integer (0..19)year (grain)", -2.908720896564361),
("integer (numeric)day (grain)", -2.908720896564361),
("integer (numeric)quarter (grain)", -2.908720896564361),
("integer (numeric)year (grain)", -2.908720896564361),
("day", -2.3978952727983707), ("quarter", -2.3978952727983707),
("year", -2.3978952727983707),
("integer (numeric)week (grain)", -2.908720896564361),
("integer (0..19)month (grain)", -2.908720896564361),
("month", -2.3978952727983707),
("integer (numeric)month (grain)", -2.908720896564361),
("integer (0..19)day (grain)", -2.908720896564361),
("integer (0..19)week (grain)", -2.908720896564361),
("integer (0..19)quarter (grain)", -2.908720896564361)],
n = 20},
koData =
ClassData{prior = -infinity, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [], n = 0}}),
("Rosh Hashanah",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> <named-day> ago|back",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("integer (numeric)Thursday", -0.6931471805599453),
("day", -0.6931471805599453)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> upcoming <cycle>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.02535169073515,
likelihoods =
HashMap.fromList
[("week", -2.3978952727983707),
("integer (0..19)year (grain)", -2.908720896564361),
("integer (numeric)day (grain)", -2.908720896564361),
("integer (numeric)quarter (grain)", -2.908720896564361),
("integer (numeric)year (grain)", -2.908720896564361),
("day", -2.3978952727983707), ("quarter", -2.3978952727983707),
("year", -2.3978952727983707),
("integer (numeric)week (grain)", -2.908720896564361),
("integer (0..19)month (grain)", -2.908720896564361),
("month", -2.3978952727983707),
("integer (numeric)month (grain)", -2.908720896564361),
("integer (0..19)day (grain)", -2.908720896564361),
("integer (0..19)week (grain)", -2.908720896564361),
("integer (0..19)quarter (grain)", -2.908720896564361)],
n = 20},
koData =
ClassData{prior = -infinity, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [], n = 0}}),
("Holika Dahan",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter of an hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("second (grain) ",
Classifier{okData =
ClassData{prior = -0.5108256237659907,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -0.916290731874155, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("ordinals (first..twentieth,thirtieth,...)",
Classifier{okData =
ClassData{prior = -3.077165866675366e-2,
unseen = -3.5263605246161616,
likelihoods = HashMap.fromList [("", 0.0)], n = 32},
koData =
ClassData{prior = -3.4965075614664802,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("Mawlid",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Jumu'atul-Wida",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<duration> after|before|from|past <time>",
Classifier{okData =
ClassData{prior = -0.7691330875378672, unseen = -4.189654742026425,
likelihoods =
HashMap.fromList
[("a <unit-of-duration>now", -3.481240089335692),
("<integer> <unit-of-duration>hhhmm", -3.481240089335692),
("a <unit-of-duration>Christmas", -3.481240089335692),
("minuteminute", -3.481240089335692),
("dayday", -3.481240089335692),
("<integer> <unit-of-duration>today", -3.481240089335692),
("<integer> <unit-of-duration>time-of-day (latent)",
-2.382627800667582),
("minutehour", -1.7764919970972666),
("daysecond", -3.481240089335692),
("a <unit-of-duration>right now", -3.481240089335692),
("minutenograin", -3.481240089335692),
("<integer> <unit-of-duration>Christmas", -3.481240089335692),
("<integer> <unit-of-duration>Easter Sunday",
-3.481240089335692),
("secondnograin", -3.481240089335692),
("<integer> <unit-of-duration><time-of-day> am|pm",
-2.5649493574615367),
("yearday", -2.7880929087757464),
("<integer> <unit-of-duration>noon|midnight|EOD|end of day",
-3.481240089335692),
("daynograin", -3.481240089335692),
("<integer> <unit-of-duration>now", -3.0757749812275272)],
n = 19},
koData =
ClassData{prior = -0.6225296133459919, unseen = -4.276666119016055,
likelihoods =
HashMap.fromList
[("quarterhour", -1.318240897874875),
("dayhour", -3.56953269648137),
("<integer> <unit-of-duration>intersect", -3.56953269648137),
("<integer> <unit-of-duration><day-of-month> (ordinal)",
-3.56953269648137),
("a <unit-of-duration><time-of-day> am|pm", -2.065455299705096),
("a <unit-of-duration>time-of-day (latent)",
-2.065455299705096),
("dayday", -2.8763855159214247),
("<integer> <unit-of-duration>time-of-day (latent)",
-3.56953269648137),
("a <unit-of-duration>noon|midnight|EOD|end of day",
-3.164067588373206),
("<integer> <unit-of-duration><day-of-month> (ordinal or number) <named-month>",
-3.56953269648137)],
n = 22}}),
("nth <day-of-week> of <month-or-greater>",
Classifier{okData =
ClassData{prior = -0.2876820724517809, unseen = -3.258096538021482,
likelihoods =
HashMap.fromList
[("daymonth", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-2.5257286443082556),
("ordinals (first..twentieth,thirtieth,...)Wednesdayintersect",
-2.120263536200091),
("ordinals (first..twentieth,thirtieth,...)Mondaythis|last|next <cycle>",
-1.6094379124341003),
("ordinals (first..twentieth,thirtieth,...)TuesdayOctober",
-2.120263536200091)],
n = 9},
koData =
ClassData{prior = -1.3862943611198906, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("daymonth", -1.1786549963416462),
("ordinals (first..twentieth,thirtieth,...)TuesdaySeptember",
-1.8718021769015913),
("ordinals (first..twentieth,thirtieth,...)WednesdayOctober",
-1.466337068793427)],
n = 3}}),
("quarter after|past <hour-of-day>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1780538303479458,
likelihoods =
HashMap.fromList
[("noon|midnight|EOD|end of day", -2.03688192726104),
("time-of-day (latent)", -0.9382696385929302),
("hour", -0.7375989431307791)],
n = 10},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyy-mm",
Classifier{okData =
ClassData{prior = -1.0986122886681098,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.40546510810816444,
unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4}}),
("until <time>",
Classifier{okData =
ClassData{prior = -1.252762968495368, unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("year (latent)", -2.159484249353372),
("time-of-day (latent)", -2.5649493574615367),
("year", -2.159484249353372),
("<time-of-day> am|pm", -1.8718021769015913),
("hh:mm", -2.159484249353372), ("hour", -2.159484249353372),
("minute", -1.6486586255873816)],
n = 8},
koData =
ClassData{prior = -0.3364722366212129,
unseen = -3.9318256327243257,
likelihoods =
HashMap.fromList
[("intersect", -2.3025850929940455),
("yesterday", -2.8134107167600364),
("day", -2.8134107167600364),
("time-of-day (latent)", -1.6094379124341003),
("<time-of-day> am|pm", -3.2188758248682006),
("hh:mm", -2.3025850929940455), ("hour", -1.4271163556401458),
("minute", -1.8325814637483102)],
n = 20}}),
("the <cycle> after|before <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods =
HashMap.fromList
[("day (grain)tomorrow", -1.252762968495368),
("dayday", -0.8472978603872037),
("day (grain)yesterday", -1.252762968495368)],
n = 2},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("about|exactly <time-of-day>",
Classifier{okData =
ClassData{prior = -0.15415067982725836,
unseen = -3.6109179126442243,
likelihoods =
HashMap.fromList
[("week", -1.791759469228055),
("hh(:mm) - <time-of-day> am|pm", -2.890371757896165),
("this|last|next <cycle>", -1.791759469228055),
("day", -2.4849066497880004),
("time-of-day (latent)", -2.890371757896165),
("hhmm (latent)", -2.4849066497880004),
("<time-of-day> am|pm", -2.890371757896165),
("hour", -2.1972245773362196),
("next <time>", -2.890371757896165),
("this|next <day-of-week>", -2.890371757896165),
("minute", -2.4849066497880004)],
n = 12},
koData =
ClassData{prior = -1.9459101490553135, unseen = -2.833213344056216,
likelihoods =
HashMap.fromList
[("dd/mm", -2.0794415416798357), ("day", -2.0794415416798357),
("time-of-day (latent)", -2.0794415416798357),
("hour", -2.0794415416798357)],
n = 2}}),
("Sukkot",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day> in <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods =
HashMap.fromList
[("monthyear", -1.2992829841302609),
("Marcha <unit-of-duration>", -1.7047480922384253),
("March<integer> <unit-of-duration>", -1.7047480922384253),
("Vijayadashami<integer> <unit-of-duration>",
-1.7047480922384253),
("dayyear", -1.7047480922384253)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("World Vegan Day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect by \",\", \"of\", \"from\", \"'s\"",
Classifier{okData =
ClassData{prior = -0.5596157879354228, unseen = -5.407171771460119,
likelihoods =
HashMap.fromList
[("intersectthis|last|next <cycle>", -4.709530201312334),
("Wednesday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("dayhour", -4.304065093204169),
("daymonth", -2.001480000210124),
("<named-month> <day-of-month> (non ordinal)Friday",
-4.709530201312334),
("Friday<named-month> <day-of-month> (non ordinal)",
-3.4567672328169663),
("Wednesdayintersect", -4.709530201312334),
("from <datetime> - <datetime> (interval)July",
-3.3232358401924436),
("Black Fridaythis|last|next <cycle>", -4.709530201312334),
("<part-of-day> of <time>February", -4.709530201312334),
("Saturday<time-of-day> am|pm", -4.709530201312334),
("Martin Luther King's Daythis|last|next <cycle>",
-4.304065093204169),
("hourmonth", -4.709530201312334),
("Fridayintersect by \",\", \"of\", \"from\" for year",
-4.0163830207523885),
("dayday", -2.458238402705839),
("the <day-of-month> (ordinal)February", -4.304065093204169),
("WednesdayOctober", -4.709530201312334),
("Wednesdaythis|last|next <cycle>", -4.304065093204169),
("intersect<named-month> <day-of-month> (non ordinal)",
-3.4567672328169663),
("dayyear", -4.0163830207523885),
("Saturday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("Thursdayhh:mm", -4.304065093204169),
("TuesdayOctober", -4.709530201312334),
("the <day-of-month> (ordinal)March", -3.6109179126442243),
("Mondaythis|last|next <cycle>", -3.7932394694381792),
("Fridayintersect", -4.0163830207523885),
("Thursday<datetime> - <datetime> (interval)",
-4.304065093204169),
("intersectOctober", -4.304065093204169),
("Thursday<time-of-day> - <time-of-day> (interval)",
-3.7932394694381792),
("Tuesdaythis|last|next <cycle>", -4.304065093204169),
("Sunday<named-month> <day-of-month> (non ordinal)",
-4.709530201312334),
("dayminute", -2.917770732084279),
("minuteday", -3.4567672328169663),
("this|last|next <cycle>Sunday", -4.709530201312334),
("Sundaythis|last|next <cycle>", -4.709530201312334),
("on <day><time-of-day> am|pm", -4.709530201312334),
("intersectintersect", -4.709530201312334),
("weekday", -4.709530201312334),
("dayweek", -3.6109179126442243),
("Monday<named-month> <day-of-month> (non ordinal)",
-4.304065093204169),
("<datetime> - <datetime> (interval)July", -3.7932394694381792),
("on <day><named-month> <day-of-month> (non ordinal)",
-4.0163830207523885)],
n = 76},
koData =
ClassData{prior = -0.8472978603872037, unseen = -5.220355825078324,
likelihoods =
HashMap.fromList
[("week-endJuly", -4.5217885770490405),
("week-endOctober", -3.828641396489095),
("daymonth", -1.7809485531238394),
("TuesdaySeptember", -4.5217885770490405),
("Wednesdayintersect", -4.5217885770490405),
("from <datetime> - <datetime> (interval)July",
-3.4231762883809305),
("from <time-of-day> - <time-of-day> (interval)July",
-4.5217885770490405),
("hournograin", -4.116323468940876),
("from|since|after <time>July", -4.116323468940876),
("hourmonth", -2.575878427993727),
("Fridaythis|last|next <cycle>", -4.5217885770490405),
("SundayFebruary", -4.5217885770490405),
("on <day>September", -3.828641396489095),
("WednesdayOctober", -4.5217885770490405),
("intersectnow", -4.116323468940876),
("week-endintersect", -4.5217885770490405),
("dayyear", -4.5217885770490405),
("FridayJuly", -3.6054978451748854),
("FridaySeptember", -4.116323468940876),
("the <day-of-month> (ordinal)July", -3.6054978451748854),
("WednesdayFebruary", -4.5217885770490405),
("minutemonth", -3.0177111802727663),
("Mondaythis|last|next <cycle>", -4.5217885770490405),
("SundayMarch", -4.5217885770490405),
("MondayFebruary", -4.116323468940876),
("Fridayintersect", -4.5217885770490405),
("intersectOctober", -4.5217885770490405),
("dayminute", -4.5217885770490405),
("SaturdaySeptember", -4.5217885770490405),
("intersectSeptember", -3.1354942159291497),
("Tuesdaynow", -4.116323468940876),
("MondayMarch", -4.5217885770490405),
("FridayOctober", -4.5217885770490405),
("daynograin", -4.116323468940876),
("<integer> to|till|before <hour-of-day>July",
-4.5217885770490405),
("Tuesdayintersect", -4.5217885770490405),
("<time-of-day> - <time-of-day> (interval)July",
-4.5217885770490405),
("<datetime> - <datetime> (interval)July", -4.5217885770490405),
("Sundayintersect", -4.5217885770490405)],
n = 57}}),
("last <time>",
Classifier{okData =
ClassData{prior = -0.7537718023763802, unseen = -3.295836866004329,
likelihoods =
HashMap.fromList
[("Martin Luther King's Day", -2.5649493574615367),
("day", -1.1786549963416462), ("Sunday", -2.5649493574615367),
("Chinese New Year", -1.8718021769015913),
("Easter Sunday", -2.5649493574615367),
("hour", -2.5649493574615367), ("Tuesday", -2.5649493574615367),
("week-end", -2.5649493574615367)],
n = 8},
koData =
ClassData{prior = -0.6359887667199967, unseen = -3.367295829986474,
likelihoods =
HashMap.fromList
[("Monday", -2.639057329615259), ("Friday", -2.2335922215070942),
("day", -1.7227665977411035), ("Sunday", -2.639057329615259),
("hour", -1.540445040947149), ("week-end", -1.540445040947149)],
n = 9}}),
("March",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.295836866004329,
likelihoods = HashMap.fromList [("", 0.0)], n = 25},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<named-month>|<named-day> <day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("Octoberordinal (digits)", -2.0149030205422647),
("Thursdayordinal (digits)", -2.70805020110221),
("day", -2.3025850929940455),
("Augustordinal (digits)", -2.70805020110221),
("Marchordinals (first..twentieth,thirtieth,...)",
-2.3025850929940455),
("Tuesdayordinal (digits)", -2.70805020110221),
("Octoberordinals (first..twentieth,thirtieth,...)",
-2.70805020110221),
("month", -1.2039728043259361),
("Marchordinal (digits)", -2.70805020110221)],
n = 10},
koData =
ClassData{prior = -1.791759469228055, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("from|since|after <time>ordinal (digits)",
-1.9459101490553135),
("Augustordinal (digits)", -1.9459101490553135),
("month", -1.540445040947149)],
n = 2}}),
("Clean Monday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal)",
Classifier{okData =
ClassData{prior = -0.6325225587435105, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-1.3350010667323402),
("ordinal (digits)", -0.3053816495511819)],
n = 17},
koData =
ClassData{prior = -0.7576857016975165, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)",
-0.5306282510621704),
("ordinal (digits)", -0.8873031950009028)],
n = 15}}),
("<time> (timezone)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("<time-of-day> am|pm", -0.6931471805599453),
("hour", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Easter Sunday",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("Christmas",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.70805020110221,
likelihoods = HashMap.fromList [("", 0.0)], n = 13},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime> - <datetime> (interval) timezone",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("minuteminute", -0.8109302162163288),
("hh:mmhh:mm", -1.5040773967762742),
("hhhmmhhhmm", -1.0986122886681098)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Isra and Mi'raj",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month> (ordinal or number) of <month>",
Classifier{okData =
ClassData{prior = -0.5679840376059393, unseen = -3.784189633918261,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -3.068052935133617),
("ordinals (first..twentieth,thirtieth,...)March",
-1.9694406464655074),
("ordinal (digits)this|last|next <cycle>", -2.374905754573672),
("integer (numeric)this|last|next <cycle>", -2.662587827025453),
("ordinal (digits)February", -3.068052935133617),
("integer (numeric)February", -2.662587827025453),
("month", -0.8708283577973976),
("ordinal (digits)March", -2.662587827025453),
("integer (numeric)July", -3.068052935133617)],
n = 17},
koData =
ClassData{prior = -0.8362480242006186, unseen = -3.58351893845611,
likelihoods =
HashMap.fromList
[("ordinal (digits)July", -1.6094379124341003),
("ordinal (digits)February", -2.8622008809294686),
("month", -0.916290731874155),
("integer (numeric)July", -1.6094379124341003)],
n = 13}}),
("decimal number",
Classifier{okData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<day-of-month>(ordinal or number)/<named-month>/year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)April", -0.6931471805599453),
("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Naraka Chaturdashi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("yyyyqq",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("beginning of month",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("next <time>",
Classifier{okData =
ClassData{prior = -0.1823215567939546,
unseen = -3.4339872044851463,
likelihoods =
HashMap.fromList
[("Martin Luther King's Day", -2.0149030205422647),
("Halloween", -2.70805020110221),
("Boss's Day", -2.70805020110221),
("Monday", -2.3025850929940455), ("day", -1.0986122886681098),
("March", -2.70805020110221), ("month", -2.70805020110221),
("Tuesday", -2.3025850929940455)],
n = 10},
koData =
ClassData{prior = -1.791759469228055, unseen = -2.70805020110221,
likelihoods =
HashMap.fromList
[("Wednesday", -1.9459101490553135),
("Saturday", -1.9459101490553135), ("day", -1.540445040947149)],
n = 2}}),
("<time-of-day> sharp|exactly",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.890371757896165,
likelihoods =
HashMap.fromList
[("at <time-of-day>", -2.1400661634962708),
("time-of-day (latent)", -2.1400661634962708),
("hhmm (latent)", -2.1400661634962708),
("<time-of-day> am|pm", -2.1400661634962708),
("hh:mm", -2.1400661634962708), ("hour", -1.7346010553881064),
("minute", -1.4469189829363254)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> closest <day> to <time>",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)Christmastoday",
-1.791759469228055),
("dayday", -1.0986122886681098),
("ordinal (digits)Christmastoday", -1.791759469228055)],
n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -2.1972245773362196,
likelihoods =
HashMap.fromList
[("daymonth", -1.3862943611198906),
("ordinals (first..twentieth,thirtieth,...)MondayOctober",
-1.3862943611198906)],
n = 1}}),
("Islamic New Year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Lent",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("negative numbers",
Classifier{okData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0},
koData =
ClassData{prior = 0.0, unseen = -3.713572066704308,
likelihoods =
HashMap.fromList
[("integer (numeric)", -5.129329438755058e-2),
("integer (0..19)", -2.995732273553991)],
n = 38}}),
("about|exactly <duration>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("half a <time-grain>", -0.6931471805599453),
("minute", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("Purim",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("<time> before last|after next",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("Wednesday", -1.8718021769015913),
("Friday", -1.466337068793427), ("day", -1.1786549963416462),
("March", -1.8718021769015913), ("month", -1.8718021769015913)],
n = 4},
koData =
ClassData{prior = -infinity, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [], n = 0}}),
("by the end of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("this|last|next <cycle>", -0.8109302162163288),
("year", -1.5040773967762742), ("month", -1.0986122886681098)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("half an hour (abbrev).",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("hhmm (military) am|pm",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime> - <datetime> (interval)",
Classifier{okData =
ClassData{prior = -1.1631508098056809, unseen = -4.770684624465665,
likelihoods =
HashMap.fromList
[("intersecthh:mm", -3.6635616461296463),
("from|since|after <time>hh:mm", -3.152736022363656),
("minuteminute", -1.5841201044498106),
("<time> timezone<time> timezone", -3.3758795736778655),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal)",
-3.6635616461296463),
("hh:mmhh:mm", -2.5649493574615367),
("dayday", -2.5649493574615367),
("hhhmmhhhmm", -3.152736022363656),
("hourhour", -3.6635616461296463),
("<named-month> <day-of-month> (non ordinal)<named-month> <day-of-month> (non ordinal)",
-3.6635616461296463),
("intersect by \",\", \"of\", \"from\", \"'s\"hh:mm",
-3.6635616461296463),
("<time-of-day> am|pmhh:mm:ss", -4.069026754237811),
("hoursecond", -3.6635616461296463),
("<time-of-day> am|pm<time-of-day> am|pm", -3.3758795736778655),
("from|since|after <time>the <day-of-month> (ordinal)",
-3.152736022363656)],
n = 35},
koData =
ClassData{prior = -0.3746934494414107, unseen = -5.308267697401205,
likelihoods =
HashMap.fromList
[("hhhmm<time> timezone", -4.204692619390966),
("<time> timezonehhhmm", -4.204692619390966),
("hourday", -3.00071981506503),
("<named-month> <day-of-month> (non ordinal)July",
-4.61015772749913),
("dayhour", -4.61015772749913),
("daymonth", -3.6938669956249752),
("from|since|after <time><day-of-month> (ordinal or number) of <month>",
-3.6938669956249752),
("<time-of-day> am|pmintersect", -4.61015772749913),
("MondayOctober", -4.204692619390966),
("from|since|after <time>hh:mm", -4.61015772749913),
("hh:mm<time-of-day> am|pm", -3.5115454388310208),
("hhhmmintersect", -4.61015772749913),
("minuteminute", -2.167810692129926),
("from|since|after <time><time-of-day> am|pm",
-3.917010546939185),
("hh:mmhh:mm", -3.917010546939185),
("dayday", -1.8067973465925955),
("from|since|after <time><day-of-month> (ordinal or number) <named-month>",
-3.6938669956249752),
("hhhmmhhhmm", -4.204692619390966),
("hourhour", -3.6938669956249752),
("hourminute", -4.61015772749913),
("minutehour", -3.6938669956249752),
("<time> timezonehh:mm", -4.61015772749913),
("hh:mm<time> timezone", -4.61015772749913),
("the <day-of-month> (ordinal)intersect by \",\", \"of\", \"from\", \"'s\"",
-4.61015772749913),
("from|since|after <time><day-of-month> (ordinal or number) of <named-month>",
-3.6938669956249752),
("hh:mmintersect", -3.6938669956249752),
("<named-month> <day-of-month> (non ordinal)August",
-4.61015772749913),
("Christmastoday", -3.917010546939185),
("about|exactly <time-of-day><time-of-day> am|pm",
-4.61015772749913),
("from|since|after <time>intersect", -3.1060803307228566),
("from|since|after <time>intersect by \",\", \"of\", \"from\", \"'s\"",
-3.6938669956249752),
("Monday<named-month>|<named-day> <day-of-month> (ordinal)",
-4.204692619390966),
("<time-of-day> am|pmhh:mm", -4.61015772749913),
("from|since|after <time>the <day-of-month> (ordinal or number) of <named-month>",
-3.1060803307228566),
("the <day-of-month> (ordinal)<day-of-month> (ordinal or number) <named-month>",
-4.61015772749913),
("from|since|after <time>the <day-of-month> (ordinal)",
-4.61015772749913),
("the <day-of-month> (ordinal)the <day-of-month> (ordinal or number) of <named-month>",
-4.204692619390966),
("Monday<named-month> <day-of-month> (non ordinal)",
-4.61015772749913),
("the <day-of-month> (ordinal)intersect", -4.204692619390966)],
n = 77}}),
("Tuesday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.772588722239781,
likelihoods = HashMap.fromList [("", 0.0)], n = 14},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("New Year's Day",
Classifier{okData =
ClassData{prior = -1.8718021769015913,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.1670540846631662,
unseen = -2.5649493574615367,
likelihoods = HashMap.fromList [("", 0.0)], n = 11}}),
("fortnight",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<integer> and an half hour",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("integer (numeric)", 0.0)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Laylat al-Qadr",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Boghi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("at the beginning|end of <named-month>",
Classifier{okData =
ClassData{prior = -0.2231435513142097,
unseen = -2.5649493574615367,
likelihoods =
HashMap.fromList
[("January", -1.3862943611198906),
("April", -1.3862943611198906), ("month", -0.8754687373538999)],
n = 4},
koData =
ClassData{prior = -1.6094379124341003,
unseen = -1.9459101490553135,
likelihoods =
HashMap.fromList
[("October", -1.0986122886681098),
("month", -1.0986122886681098)],
n = 1}}),
("<time-of-day> - <time-of-day> (interval)",
Classifier{okData =
ClassData{prior = -1.116469906068116, unseen = -4.672828834461907,
likelihoods =
HashMap.fromList
[("from|since|after <time>hh:mm", -3.054001181677967),
("hh:mmtime-of-day (latent)", -3.2771447329921766),
("minuteminute", -1.667706820558076),
("<time> timezone<time> timezone", -3.2771447329921766),
("from|since|after <time><time-of-day> am|pm",
-3.970291913552122),
("hh:mmhh:mm", -2.466214516775848),
("<time-of-day> am|pmtime-of-day (latent)",
-3.2771447329921766),
("hhhmmhhhmm", -3.054001181677967),
("hourhour", -2.466214516775848),
("minutehour", -2.466214516775848),
("<time-of-day> am|pmhh:mm:ss", -3.970291913552122),
("hhhmmtime-of-day (latent)", -3.2771447329921766),
("hoursecond", -3.5648268054439574),
("from|since|after <time>time-of-day (latent)",
-3.2771447329921766),
("<time-of-day> am|pm<time-of-day> am|pm", -3.054001181677967)],
n = 37},
koData =
ClassData{prior = -0.3966544784260094, unseen = -5.220355825078324,
likelihoods =
HashMap.fromList
[("hhhmm<time> timezone", -4.116323468940876),
("<time> timezonehhhmm", -4.116323468940876),
("about|exactly <time-of-day>time-of-day (latent)",
-4.5217885770490405),
("until <time>time-of-day (latent)", -3.2690256085536724),
("from|since|after <time>hh:mm", -4.5217885770490405),
("hh:mmtime-of-day (latent)", -2.5068855565067754),
("hh:mm<time-of-day> am|pm", -3.2690256085536724),
("minuteminute", -2.4423470353692043),
("from|since|after <time><time-of-day> am|pm",
-3.6054978451748854),
("hh:mmhh:mm", -3.828641396489095),
("<time-of-day> am|pmtime-of-day (latent)", -4.116323468940876),
("hhhmmhhhmm", -4.116323468940876),
("hourhour", -2.03688192726104),
("from|since|after <time><integer> to|till|before <hour-of-day>",
-3.828641396489095),
("hourminute", -3.4231762883809305),
("minutehour", -1.6885752329928243),
("<time> timezonehh:mm", -4.5217885770490405),
("hh:mm<time> timezone", -4.5217885770490405),
("hhhmmtime-of-day (latent)", -3.828641396489095),
("until <time><time-of-day> am|pm", -4.116323468940876),
("about|exactly <time-of-day><time-of-day> am|pm",
-4.5217885770490405),
("<time-of-day> am|pmhh:mm", -4.5217885770490405),
("<part-of-day> at <time-of-day>time-of-day (latent)",
-3.828641396489095),
("from|since|after <time>time-of-day (latent)",
-3.0177111802727663),
("at <time-of-day>time-of-day (latent)", -3.828641396489095),
("<time> timezonetime-of-day (latent)", -3.828641396489095),
("<integer> to|till|before <hour-of-day><time-of-day> am|pm",
-4.5217885770490405),
("<integer> to|till|before <hour-of-day>time-of-day (latent)",
-3.828641396489095)],
n = 76}}),
("winter",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("nth <time> after <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("dayday", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)Tuesdayintersect",
-0.916290731874155)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("dayday", -0.916290731874155),
("ordinals (first..twentieth,thirtieth,...)TuesdayChristmas",
-0.916290731874155)],
n = 1}}),
("Ugadi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<named-month> <day-of-month> (non ordinal)",
Classifier{okData =
ClassData{prior = -0.3646431135879093, unseen = -4.0943445622221,
likelihoods =
HashMap.fromList
[("Augustinteger (numeric)", -2.691243082785829),
("Marchinteger (numeric)", -2.9789251552376097),
("Aprilinteger (numeric)", -3.3843902633457743),
("month", -0.8194409058842375),
("Februaryinteger (numeric)", -2.1316272948504063),
("Septemberinteger (numeric)", -2.691243082785829),
("Octoberinteger (numeric)", -2.691243082785829),
("Julyinteger (numeric)", -1.9980959022258835)],
n = 25},
koData =
ClassData{prior = -1.1856236656577395,
unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("Augustinteger (numeric)", -2.3353749158170367),
("Marchinteger (numeric)", -2.740840023925201),
("Aprilinteger (numeric)", -2.740840023925201),
("month", -0.9490805546971459),
("from|since|after <time>integer (numeric)",
-2.3353749158170367),
("Julyinteger (numeric)", -1.6422277352570913)],
n = 11}}),
("Diwali",
Classifier{okData =
ClassData{prior = -0.2876820724517809,
unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -1.3862943611198906,
unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1}}),
("last night",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("this|next <day-of-week>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("Thursday", -2.3978952727983707),
("Wednesday", -2.3978952727983707),
("Saturday", -2.3978952727983707),
("Monday", -1.7047480922384253), ("day", -0.8938178760220964),
("Tuesday", -1.9924301646902063)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("ordinal (digits)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.143134726391533,
likelihoods = HashMap.fromList [("", 0.0)], n = 61},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("quarter (grain)",
Classifier{okData =
ClassData{prior = -0.4700036292457356,
unseen = -3.0910424533583156,
likelihoods = HashMap.fromList [("", 0.0)], n = 20},
koData =
ClassData{prior = -0.9808292530117262, unseen = -2.639057329615259,
likelihoods = HashMap.fromList [("", 0.0)], n = 12}}),
("last <cycle> of <time>",
Classifier{okData =
ClassData{prior = -0.916290731874155, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("day (grain)October", -1.9924301646902063),
("daymonth", -1.4816045409242156),
("day (grain)intersect", -1.9924301646902063),
("weekmonth", -1.9924301646902063),
("week (grain)intersect", -2.3978952727983707),
("week (grain)September", -2.3978952727983707)],
n = 6},
koData =
ClassData{prior = -0.5108256237659907, unseen = -3.367295829986474,
likelihoods =
HashMap.fromList
[("daymonth", -2.2335922215070942),
("day (grain)May", -2.2335922215070942),
("week (grain)year (latent)", -1.9459101490553135),
("weekmonth", -1.7227665977411035),
("week (grain)October", -2.2335922215070942),
("weekyear", -1.9459101490553135),
("week (grain)intersect", -2.2335922215070942)],
n = 9}}),
("Chhath",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Vasant Panchami",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<day-of-month>(ordinal) <named-month> year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList
[("ordinal (digits)April", -0.6931471805599453),
("month", -0.6931471805599453)],
n = 1},
koData =
ClassData{prior = -infinity, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [], n = 0}}),
("the <ordinal> last <cycle> of <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("ordinals (first..twentieth,thirtieth,...)week (grain)year (latent)",
-2.1972245773362196),
("daymonth", -2.1972245773362196),
("ordinal (digits)day (grain)May", -2.1972245773362196),
("ordinals (first..twentieth,thirtieth,...)week (grain)intersect",
-2.1972245773362196),
("weekmonth", -1.791759469228055),
("ordinal (digits)week (grain)year (latent)",
-2.1972245773362196),
("weekyear", -1.791759469228055),
("ordinals (first..twentieth,thirtieth,...)week (grain)October",
-2.1972245773362196)],
n = 5},
koData =
ClassData{prior = -infinity, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [], n = 0}}),
("Black Friday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("week-end",
Classifier{okData =
ClassData{prior = -1.252762968495368, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -0.3364722366212129,
unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [("", 0.0)], n = 5}}),
("Great Lent",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Maundy Thursday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("day (grain)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.6888794541139363,
likelihoods = HashMap.fromList [("", 0.0)], n = 38},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Vaisakhi",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.791759469228055,
likelihoods = HashMap.fromList [("", 0.0)], n = 4},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("right now",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("for <duration> from <time>",
Classifier{okData =
ClassData{prior = -0.3364722366212129, unseen = -2.995732273553991,
likelihoods =
HashMap.fromList
[("<integer> <unit-of-duration>intersect", -2.2512917986064953),
("<integer> <unit-of-duration><day-of-month> (ordinal)",
-2.2512917986064953),
("<integer> + '\"from|since|after <time>", -2.2512917986064953),
("dayday", -1.55814461804655),
("minutehour", -1.845826690498331),
("<integer> + '\"<time-of-day> am|pm", -2.2512917986064953),
("<integer> <unit-of-duration><day-of-month> (ordinal or number) <named-month>",
-2.2512917986064953)],
n = 5},
koData =
ClassData{prior = -1.252762968495368, unseen = -2.639057329615259,
likelihoods =
HashMap.fromList
[("dayhour", -1.8718021769015913),
("<integer> + '\"from|since|after <time>", -1.8718021769015913),
("<integer> <unit-of-duration>time-of-day (latent)",
-1.8718021769015913),
("minutehour", -1.8718021769015913)],
n = 2}}),
("compose by multiplication",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods =
HashMap.fromList [("integer (0..19)powers of tens", 0.0)],
n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("end of year",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.4849066497880004,
likelihoods = HashMap.fromList [("", 0.0)], n = 10},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("between <time> and <time>",
Classifier{okData =
ClassData{prior = -0.6931471805599453,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("minuteminute", -1.791759469228055),
("hh:mmhh:mm", -2.1972245773362196),
("<time-of-day> am|pmtime-of-day (latent)",
-2.1972245773362196),
("hhhmmhhhmm", -2.1972245773362196),
("minutehour", -1.791759469228055),
("<time-of-day> am|pm<time-of-day> am|pm",
-2.1972245773362196)],
n = 4},
koData =
ClassData{prior = -0.6931471805599453,
unseen = -2.9444389791664407,
likelihoods =
HashMap.fromList
[("hh:mmtime-of-day (latent)", -2.1972245773362196),
("hhhmmintersect", -2.1972245773362196),
("minuteminute", -1.791759469228055),
("minutehour", -1.791759469228055),
("hh:mmintersect", -2.1972245773362196),
("hhhmmtime-of-day (latent)", -2.1972245773362196)],
n = 4}}),
("<month> dd-dd (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.4657359027997265,
likelihoods =
HashMap.fromList
[("from|since|after <time>integer (numeric)integer (numeric)",
-2.740840023925201),
("from|since|after <time>ordinal (digits)ordinal (digits)",
-2.740840023925201),
("Julyinteger (numeric)integer (numeric)", -1.6422277352570913),
("Augustordinal (digits)integer (numeric)",
-2.3353749158170367),
("from|since|after <time>ordinal (digits)integer (numeric)",
-2.740840023925201),
("month", -0.8690378470236094),
("Augustordinal (digits)ordinal (digits)",
-2.3353749158170367)],
n = 12},
koData =
ClassData{prior = -infinity, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [], n = 0}}),
("intersect by \",\", \"of\", \"from\" for year",
Classifier{okData =
ClassData{prior = -7.410797215372185e-2,
unseen = -3.5263605246161616,
likelihoods =
HashMap.fromList
[("Black Fridaythis|last|next <cycle>", -2.803360380906535),
("Martin Luther King's Daythis|last|next <cycle>",
-2.3978952727983707),
("intersect by \",\", \"of\", \"from\", \"'s\"year (latent)",
-2.1102132003465894),
("dayyear", -0.8574502318512216),
("intersectyear (latent)", -2.1102132003465894),
("<named-month> <day-of-month> (non ordinal)year (latent)",
-1.8870696490323797)],
n = 13},
koData =
ClassData{prior = -2.639057329615259, unseen = -2.3025850929940455,
likelihoods =
HashMap.fromList
[("Fridaythis|last|next <cycle>", -1.5040773967762742),
("dayyear", -1.5040773967762742)],
n = 1}}),
("part of days",
Classifier{okData =
ClassData{prior = -4.1672696400568074e-2,
unseen = -3.891820298110627,
likelihoods = HashMap.fromList [("", 0.0)], n = 47},
koData =
ClassData{prior = -3.1986731175506815,
unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2}}),
("at the beginning|end of <week>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -4.330733340286331,
likelihoods =
HashMap.fromList
[("week", -0.706570200892086),
("this|last|next <cycle>", -0.8209805520698302),
("about|exactly <time-of-day>", -2.70805020110221)],
n = 36},
koData =
ClassData{prior = -infinity, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [], n = 0}}),
("Eid al-Fitr",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.1972245773362196,
likelihoods = HashMap.fromList [("", 0.0)], n = 7},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("summer",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("Trinity Sunday",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("<datetime>/<datetime> (interval)",
Classifier{okData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("secondsecond", -0.916290731874155),
("intersectintersect", -0.916290731874155)],
n = 1},
koData =
ClassData{prior = -0.6931471805599453, unseen = -1.791759469228055,
likelihoods =
HashMap.fromList
[("hh:mm:ssintersect", -0.916290731874155),
("secondsecond", -0.916290731874155)],
n = 1}}),
("Mid-day",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.6094379124341003,
likelihoods = HashMap.fromList [("", 0.0)], n = 3},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("dd-dd <month> (interval)",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.1354942159291497,
likelihoods =
HashMap.fromList
[("integer (numeric)integer (numeric)September",
-1.9924301646902063),
("ordinal (digits)ordinal (digits)July", -1.9924301646902063),
("ordinal (digits)ordinal (digits)October",
-2.3978952727983707),
("integer (numeric)integer (numeric)July", -1.9924301646902063),
("month", -0.8938178760220964),
("ordinal (digits)ordinal (digits)August",
-2.3978952727983707)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -1.9459101490553135,
likelihoods = HashMap.fromList [], n = 0}}),
("Pentecost",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.3862943611198906,
likelihoods = HashMap.fromList [("", 0.0)], n = 2},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("this <time>",
Classifier{okData =
ClassData{prior = 0.0, unseen = -3.258096538021482,
likelihoods =
HashMap.fromList
[("Thursday", -2.5257286443082556),
("Martin Luther King's Day", -2.5257286443082556),
("Monday", -2.5257286443082556), ("day", -1.1394342831883648),
("Christmas", -2.5257286443082556),
("hour", -2.5257286443082556), ("winter", -2.5257286443082556),
("week-end", -2.5257286443082556),
("summer", -2.120263536200091)],
n = 8},
koData =
ClassData{prior = -infinity, unseen = -2.3025850929940455,
likelihoods = HashMap.fromList [], n = 0}}),
("Shushan Purim",
Classifier{okData =
ClassData{prior = 0.0, unseen = -1.0986122886681098,
likelihoods = HashMap.fromList [("", 0.0)], n = 1},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}}),
("August",
Classifier{okData =
ClassData{prior = 0.0, unseen = -2.0794415416798357,
likelihoods = HashMap.fromList [("", 0.0)], n = 6},
koData =
ClassData{prior = -infinity, unseen = -0.6931471805599453,
likelihoods = HashMap.fromList [], n = 0}})] | 263,736 | false | true | 0 | 15 | 128,697 | 43,525 | 27,146 | 16,379 | null | null |
liuyang1/euler | Sudoku.hs | mit | minimumOn f xs = minimumBy (\x y -> compare (f x) (f y)) xs | 59 | minimumOn f xs = minimumBy (\x y -> compare (f x) (f y)) xs | 59 | minimumOn f xs = minimumBy (\x y -> compare (f x) (f y)) xs | 59 | false | false | 0 | 10 | 13 | 43 | 21 | 22 | null | null |
Blaisorblade/Haskell-Adaptive | Control/Monad/Adaptive.hs | bsd-3-clause | readMod (Mo (r,chg,es)) = do
start <- inAd stepTime
cont $ \k -> do
let reader = do readRef r >>= k
now <- readCurrentTime
mapRef ((reader,start,now):) es
reader | 219 | readMod (Mo (r,chg,es)) = do
start <- inAd stepTime
cont $ \k -> do
let reader = do readRef r >>= k
now <- readCurrentTime
mapRef ((reader,start,now):) es
reader | 219 | readMod (Mo (r,chg,es)) = do
start <- inAd stepTime
cont $ \k -> do
let reader = do readRef r >>= k
now <- readCurrentTime
mapRef ((reader,start,now):) es
reader | 219 | false | false | 0 | 18 | 86 | 96 | 47 | 49 | null | null |
eeight/haskell-mms | src/Foreign/Mms/Put.hs | bsd-3-clause | modifyWrittenSoFar :: (Int64 -> Int64) -> PutState -> PutState
modifyWrittenSoFar f s = s{writtenSoFar = f $ writtenSoFar s} | 124 | modifyWrittenSoFar :: (Int64 -> Int64) -> PutState -> PutState
modifyWrittenSoFar f s = s{writtenSoFar = f $ writtenSoFar s} | 124 | modifyWrittenSoFar f s = s{writtenSoFar = f $ writtenSoFar s} | 61 | false | true | 0 | 8 | 18 | 46 | 24 | 22 | null | null |
tolysz/prepare-ghcjs | spec-lts8/cabal/Cabal/Distribution/PackageDescription/Check.hs | bsd-3-clause | checkBenchmark :: PackageDescription -> Benchmark -> [PackageCheck]
checkBenchmark _pkg bm =
catMaybes [
case benchmarkInterface bm of
BenchmarkUnsupported tt@(BenchmarkTypeUnknown _ _) -> Just $
PackageBuildWarning $
quote (display tt) ++ " is not a known type of benchmark. "
++ "The known benchmark types are: "
++ commaSep (map display knownBenchmarkTypes)
BenchmarkUnsupported tt -> Just $
PackageBuildWarning $
quote (display tt) ++ " is not a supported benchmark version. "
++ "The known benchmark types are: "
++ commaSep (map display knownBenchmarkTypes)
_ -> Nothing
, check (not $ null moduleDuplicates) $
PackageBuildImpossible $
"Duplicate modules in benchmark '" ++ benchmarkName bm ++ "': "
++ commaSep (map display moduleDuplicates)
, check mainIsWrongExt $
PackageBuildImpossible $
"The 'main-is' field must specify a '.hs' or '.lhs' file "
++ "(even if it is generated by a preprocessor)."
]
where
moduleDuplicates = dups $ benchmarkModules bm
mainIsWrongExt = case benchmarkInterface bm of
BenchmarkExeV10 _ f -> takeExtension f `notElem` [".hs", ".lhs"]
_ -> False
-- ------------------------------------------------------------
-- * Additional pure checks
-- ------------------------------------------------------------ | 1,448 | checkBenchmark :: PackageDescription -> Benchmark -> [PackageCheck]
checkBenchmark _pkg bm =
catMaybes [
case benchmarkInterface bm of
BenchmarkUnsupported tt@(BenchmarkTypeUnknown _ _) -> Just $
PackageBuildWarning $
quote (display tt) ++ " is not a known type of benchmark. "
++ "The known benchmark types are: "
++ commaSep (map display knownBenchmarkTypes)
BenchmarkUnsupported tt -> Just $
PackageBuildWarning $
quote (display tt) ++ " is not a supported benchmark version. "
++ "The known benchmark types are: "
++ commaSep (map display knownBenchmarkTypes)
_ -> Nothing
, check (not $ null moduleDuplicates) $
PackageBuildImpossible $
"Duplicate modules in benchmark '" ++ benchmarkName bm ++ "': "
++ commaSep (map display moduleDuplicates)
, check mainIsWrongExt $
PackageBuildImpossible $
"The 'main-is' field must specify a '.hs' or '.lhs' file "
++ "(even if it is generated by a preprocessor)."
]
where
moduleDuplicates = dups $ benchmarkModules bm
mainIsWrongExt = case benchmarkInterface bm of
BenchmarkExeV10 _ f -> takeExtension f `notElem` [".hs", ".lhs"]
_ -> False
-- ------------------------------------------------------------
-- * Additional pure checks
-- ------------------------------------------------------------ | 1,448 | checkBenchmark _pkg bm =
catMaybes [
case benchmarkInterface bm of
BenchmarkUnsupported tt@(BenchmarkTypeUnknown _ _) -> Just $
PackageBuildWarning $
quote (display tt) ++ " is not a known type of benchmark. "
++ "The known benchmark types are: "
++ commaSep (map display knownBenchmarkTypes)
BenchmarkUnsupported tt -> Just $
PackageBuildWarning $
quote (display tt) ++ " is not a supported benchmark version. "
++ "The known benchmark types are: "
++ commaSep (map display knownBenchmarkTypes)
_ -> Nothing
, check (not $ null moduleDuplicates) $
PackageBuildImpossible $
"Duplicate modules in benchmark '" ++ benchmarkName bm ++ "': "
++ commaSep (map display moduleDuplicates)
, check mainIsWrongExt $
PackageBuildImpossible $
"The 'main-is' field must specify a '.hs' or '.lhs' file "
++ "(even if it is generated by a preprocessor)."
]
where
moduleDuplicates = dups $ benchmarkModules bm
mainIsWrongExt = case benchmarkInterface bm of
BenchmarkExeV10 _ f -> takeExtension f `notElem` [".hs", ".lhs"]
_ -> False
-- ------------------------------------------------------------
-- * Additional pure checks
-- ------------------------------------------------------------ | 1,380 | false | true | 0 | 15 | 378 | 285 | 141 | 144 | null | null |
phi16/ASCIIize | Display.hs | gpl-3.0 | disp e@(Frac le re) y ~(_,Child2 ls@((lt,lb,_),_) rs@((rt,rb,_),_)) = let
(vl@((tl,bl,wl),_),sl) = disp le (y-1+lb) ls
(vr@((tr,br,wr),_),sr) = disp re (y+1+rt) rs
top = tl-bl+1
bot = br-tr-1
wid = max wl wr + 2
sl' = widen wid wl sl
sr' = widen wid wr sr
s = str $ replicate wid '-'
ss = if y > 0 then sl' else if y == 0 then s else sr'
in (((top,bot,wid),Child2 vl vr),ss) | 413 | disp e@(Frac le re) y ~(_,Child2 ls@((lt,lb,_),_) rs@((rt,rb,_),_)) = let
(vl@((tl,bl,wl),_),sl) = disp le (y-1+lb) ls
(vr@((tr,br,wr),_),sr) = disp re (y+1+rt) rs
top = tl-bl+1
bot = br-tr-1
wid = max wl wr + 2
sl' = widen wid wl sl
sr' = widen wid wr sr
s = str $ replicate wid '-'
ss = if y > 0 then sl' else if y == 0 then s else sr'
in (((top,bot,wid),Child2 vl vr),ss) | 413 | disp e@(Frac le re) y ~(_,Child2 ls@((lt,lb,_),_) rs@((rt,rb,_),_)) = let
(vl@((tl,bl,wl),_),sl) = disp le (y-1+lb) ls
(vr@((tr,br,wr),_),sr) = disp re (y+1+rt) rs
top = tl-bl+1
bot = br-tr-1
wid = max wl wr + 2
sl' = widen wid wl sl
sr' = widen wid wr sr
s = str $ replicate wid '-'
ss = if y > 0 then sl' else if y == 0 then s else sr'
in (((top,bot,wid),Child2 vl vr),ss) | 413 | false | false | 1 | 14 | 113 | 316 | 174 | 142 | null | null |
jbracker/supermonad-plugin | src/Control/Super/Plugin/Wrapper.hs | bsd-3-clause | baseUnitId = M.baseUnitId | 25 | baseUnitId = M.baseUnitId | 25 | baseUnitId = M.baseUnitId | 25 | false | false | 0 | 5 | 2 | 8 | 4 | 4 | null | null |
oldmanmike/ghc | compiler/cmm/CmmUtils.hs | bsd-3-clause | primElemRepCmmType FloatElemRep = f32 | 38 | primElemRepCmmType FloatElemRep = f32 | 38 | primElemRepCmmType FloatElemRep = f32 | 38 | false | false | 0 | 5 | 4 | 9 | 4 | 5 | null | null |
haskellGardener/transient | src/Transient/Base.hs | gpl-3.0 | -- | deinvert an event handler. The first parameter is the event handler to be deinverted
-- the second is the value to return to the event handler
-- it configures the event handler by calling the first parameter, that set the event
-- handler, with the current continuation
react
:: Typeable eventdata
=> EventSetter eventdata response
-> ToReturn response
-> TransientIO eventdata
react setHandler iob= Transient $ do
cont <- getCont
mEvData <- getSessionData
case mEvData of
Nothing -> do
liftIO $ setHandler $ \dat ->do
-- let cont'= cont{mfData = M.insert (typeOf dat)(unsafeCoerce dat) (mfData cont)}
runStateT (setSData dat >> runCont cont) cont
iob
return Nothing
Just dat -> delSessionData dat >> return (Just dat)
-- * non-blocking keyboard input | 881 | react
:: Typeable eventdata
=> EventSetter eventdata response
-> ToReturn response
-> TransientIO eventdata
react setHandler iob= Transient $ do
cont <- getCont
mEvData <- getSessionData
case mEvData of
Nothing -> do
liftIO $ setHandler $ \dat ->do
-- let cont'= cont{mfData = M.insert (typeOf dat)(unsafeCoerce dat) (mfData cont)}
runStateT (setSData dat >> runCont cont) cont
iob
return Nothing
Just dat -> delSessionData dat >> return (Just dat)
-- * non-blocking keyboard input | 605 | react setHandler iob= Transient $ do
cont <- getCont
mEvData <- getSessionData
case mEvData of
Nothing -> do
liftIO $ setHandler $ \dat ->do
-- let cont'= cont{mfData = M.insert (typeOf dat)(unsafeCoerce dat) (mfData cont)}
runStateT (setSData dat >> runCont cont) cont
iob
return Nothing
Just dat -> delSessionData dat >> return (Just dat)
-- * non-blocking keyboard input | 488 | true | true | 0 | 21 | 245 | 155 | 71 | 84 | null | null |
JohnLato/iteratee | bench/BenchBase.hs | bsd-3-clause | group1 = id1 "group split" (I.joinI $ (I.group 24 ><> I.mapStream LL.length) I.length) | 86 | group1 = id1 "group split" (I.joinI $ (I.group 24 ><> I.mapStream LL.length) I.length) | 86 | group1 = id1 "group split" (I.joinI $ (I.group 24 ><> I.mapStream LL.length) I.length) | 86 | false | false | 1 | 12 | 12 | 49 | 21 | 28 | null | null |
sonyandy/unify | src/Control/Monad/Trans/Ref/Integer.hs | bsd-3-clause | newRef :: Monad m => a -> RefSupplyT s m (Ref s a)
newRef a = do
S {..} <- get
put S { refCount = refCount + 1
, refMap = Map.insert refCount (unsafeCoerce a) refMap
}
return $ Ref refCount | 211 | newRef :: Monad m => a -> RefSupplyT s m (Ref s a)
newRef a = do
S {..} <- get
put S { refCount = refCount + 1
, refMap = Map.insert refCount (unsafeCoerce a) refMap
}
return $ Ref refCount | 211 | newRef a = do
S {..} <- get
put S { refCount = refCount + 1
, refMap = Map.insert refCount (unsafeCoerce a) refMap
}
return $ Ref refCount | 160 | false | true | 0 | 13 | 63 | 107 | 50 | 57 | null | null |
WraithM/LambdaCalc | src/Eval.hs | bsd-3-clause | -- | Get a list of variable names in an expression. I should get only free variables.
getVars :: Exp -> [String]
getVars (Parens e) = getVars e | 143 | getVars :: Exp -> [String]
getVars (Parens e) = getVars e | 57 | getVars (Parens e) = getVars e | 30 | true | true | 0 | 7 | 27 | 31 | 16 | 15 | null | null |
jfischoff/modulespection | tests/SomeTypes.hs | bsd-3-clause | someFunction :: String -> String
someFunction x = show ONE ++ x | 63 | someFunction :: String -> String
someFunction x = show ONE ++ x | 63 | someFunction x = show ONE ++ x | 30 | false | true | 2 | 7 | 11 | 32 | 13 | 19 | null | null |
Gabriel439/Haskell-Dhall-Library | dhall/src/Dhall/Lint.hs | bsd-3-clause | {-| Automatically improve a Dhall expression
Currently this:
* removes unused @let@ bindings with 'removeUnusedBindings'.
* fixes @let a = x ≡ y@ to be @let a = assert : x ≡ y@
* consolidates nested @let@ bindings to use a multiple-@let@ binding with 'removeLetInLet'
* fixes paths of the form @.\/..\/foo@ to @..\/foo@
-}
lint :: Eq s => Expr s Import -> Expr s Import
lint = Dhall.Optics.rewriteOf subExpressions rewrite
where
rewrite e =
fixAssert e
<|> removeUnusedBindings e
<|> fixParentPath e
<|> removeLetInLet e
<|> addPreludeExtensions e
<|> sortImports e
-- | Remove unused `Let` bindings. | 739 | lint :: Eq s => Expr s Import -> Expr s Import
lint = Dhall.Optics.rewriteOf subExpressions rewrite
where
rewrite e =
fixAssert e
<|> removeUnusedBindings e
<|> fixParentPath e
<|> removeLetInLet e
<|> addPreludeExtensions e
<|> sortImports e
-- | Remove unused `Let` bindings. | 394 | lint = Dhall.Optics.rewriteOf subExpressions rewrite
where
rewrite e =
fixAssert e
<|> removeUnusedBindings e
<|> fixParentPath e
<|> removeLetInLet e
<|> addPreludeExtensions e
<|> sortImports e
-- | Remove unused `Let` bindings. | 347 | true | true | 0 | 10 | 237 | 90 | 42 | 48 | null | null |
vrom911/hs-init | summoner-cli/src/Summoner/CLI.hs | mit | -- to put custom footer which doesn't cut all spaces
modifyFooter :: ParserInfo a -> ParserInfo a
modifyFooter p = p {infoFooter = stringChunk $ toString artFooter} | 164 | modifyFooter :: ParserInfo a -> ParserInfo a
modifyFooter p = p {infoFooter = stringChunk $ toString artFooter} | 111 | modifyFooter p = p {infoFooter = stringChunk $ toString artFooter} | 66 | true | true | 0 | 8 | 26 | 40 | 20 | 20 | null | null |
stackbuilders/dotenv-hs | src/Configuration/Dotenv/Parse.hs | mit | -- | Space consumer. Consumes all white space including comments, but never
-- consumes newlines.
sc :: Parser ()
sc = L.space (void spaceChar') skipLineComment empty | 166 | sc :: Parser ()
sc = L.space (void spaceChar') skipLineComment empty | 68 | sc = L.space (void spaceChar') skipLineComment empty | 52 | true | true | 1 | 7 | 25 | 36 | 17 | 19 | null | null |
j-rock/4hire | src/SDL/Run.hs | mit | runWithContext :: ScreenInfo -> InitialState a -> IterateStateFunc IO a -> IO ()
runWithContext ScreenInfo{..} initialState iterator =
let initialize = SDL.initialize [SDL.InitVideo]
setupRenderQuality = do SDL.HintRenderScaleQuality $= SDL.ScaleLinear
renderQuality <- SDL.get SDL.HintRenderScaleQuality
when (renderQuality /= SDL.ScaleLinear) $
putStrLn "Warning: Linear texture filtering not enabled"
winArg = SDL.defaultWindow {SDL.windowInitialSize = L.V2 width height}
createWindow = do win <- SDL.createWindow title winArg
SDL.showWindow win
pure win
renConf = SDL.RendererConfig { SDL.rendererType = SDL.AcceleratedRenderer
, SDL.rendererTargetTexture = False
}
createRenderer win = SDL.createRenderer win (-1) renConf
in do initialize
setupRenderQuality
window <- createWindow
renderer <- createRenderer window
SDL.rendererDrawColor renderer $= black
loopOn initialState iterator $ Context renderer window []
SDL.destroyRenderer renderer
SDL.destroyWindow window
SDL.quit
where black = let m = minBound in L.V4 m m m m | 1,391 | runWithContext :: ScreenInfo -> InitialState a -> IterateStateFunc IO a -> IO ()
runWithContext ScreenInfo{..} initialState iterator =
let initialize = SDL.initialize [SDL.InitVideo]
setupRenderQuality = do SDL.HintRenderScaleQuality $= SDL.ScaleLinear
renderQuality <- SDL.get SDL.HintRenderScaleQuality
when (renderQuality /= SDL.ScaleLinear) $
putStrLn "Warning: Linear texture filtering not enabled"
winArg = SDL.defaultWindow {SDL.windowInitialSize = L.V2 width height}
createWindow = do win <- SDL.createWindow title winArg
SDL.showWindow win
pure win
renConf = SDL.RendererConfig { SDL.rendererType = SDL.AcceleratedRenderer
, SDL.rendererTargetTexture = False
}
createRenderer win = SDL.createRenderer win (-1) renConf
in do initialize
setupRenderQuality
window <- createWindow
renderer <- createRenderer window
SDL.rendererDrawColor renderer $= black
loopOn initialState iterator $ Context renderer window []
SDL.destroyRenderer renderer
SDL.destroyWindow window
SDL.quit
where black = let m = minBound in L.V4 m m m m | 1,391 | runWithContext ScreenInfo{..} initialState iterator =
let initialize = SDL.initialize [SDL.InitVideo]
setupRenderQuality = do SDL.HintRenderScaleQuality $= SDL.ScaleLinear
renderQuality <- SDL.get SDL.HintRenderScaleQuality
when (renderQuality /= SDL.ScaleLinear) $
putStrLn "Warning: Linear texture filtering not enabled"
winArg = SDL.defaultWindow {SDL.windowInitialSize = L.V2 width height}
createWindow = do win <- SDL.createWindow title winArg
SDL.showWindow win
pure win
renConf = SDL.RendererConfig { SDL.rendererType = SDL.AcceleratedRenderer
, SDL.rendererTargetTexture = False
}
createRenderer win = SDL.createRenderer win (-1) renConf
in do initialize
setupRenderQuality
window <- createWindow
renderer <- createRenderer window
SDL.rendererDrawColor renderer $= black
loopOn initialState iterator $ Context renderer window []
SDL.destroyRenderer renderer
SDL.destroyWindow window
SDL.quit
where black = let m = minBound in L.V4 m m m m | 1,310 | false | true | 2 | 15 | 488 | 348 | 158 | 190 | null | null |
keithodulaigh/Hets | Syntax/Parse_AS_Library.hs | gpl-2.0 | libItems :: LogicGraph -> AParser st [Annoted LIB_ITEM]
libItems l =
(eof >> return [])
<|> do
r <- libItem l
la <- lineAnnos
(l', an) <- lGAnnos l
is <- libItems (case r of
Logic_decl logD _ ->
setLogicName logD l'
_ -> l')
case is of
[] -> return [Annoted r nullRange [] $ la ++ an]
Annoted i p nl ra : rs ->
return $ Annoted r nullRange [] la : Annoted i p (an ++ nl) ra : rs | 486 | libItems :: LogicGraph -> AParser st [Annoted LIB_ITEM]
libItems l =
(eof >> return [])
<|> do
r <- libItem l
la <- lineAnnos
(l', an) <- lGAnnos l
is <- libItems (case r of
Logic_decl logD _ ->
setLogicName logD l'
_ -> l')
case is of
[] -> return [Annoted r nullRange [] $ la ++ an]
Annoted i p nl ra : rs ->
return $ Annoted r nullRange [] la : Annoted i p (an ++ nl) ra : rs | 486 | libItems l =
(eof >> return [])
<|> do
r <- libItem l
la <- lineAnnos
(l', an) <- lGAnnos l
is <- libItems (case r of
Logic_decl logD _ ->
setLogicName logD l'
_ -> l')
case is of
[] -> return [Annoted r nullRange [] $ la ++ an]
Annoted i p nl ra : rs ->
return $ Annoted r nullRange [] la : Annoted i p (an ++ nl) ra : rs | 430 | false | true | 3 | 16 | 191 | 218 | 103 | 115 | null | null |
mpickering/HaRe | src/Language/Haskell/Refact/Utils/GhcModuleGraph.hs | bsd-3-clause | mapCatMaybes :: (a -> Maybe b) -> [a] -> [b]
mapCatMaybes _ [] = [] | 67 | mapCatMaybes :: (a -> Maybe b) -> [a] -> [b]
mapCatMaybes _ [] = [] | 67 | mapCatMaybes _ [] = [] | 22 | false | true | 0 | 8 | 14 | 44 | 23 | 21 | null | null |
kbiscanic/PUH | lectures/puh-lecture6.hs | mit | -- Exercise 1.2
index = zip [0..] | 33 | index = zip [0..] | 17 | index = zip [0..] | 17 | true | false | 0 | 6 | 6 | 13 | 7 | 6 | null | null |
mindriot101/pandoc | src/Text/Pandoc/Writers/Man.hs | gpl-2.0 | orderedListItemToMan opts num indent ((Para first):rest) =
orderedListItemToMan opts num indent ((Plain first):rest) | 118 | orderedListItemToMan opts num indent ((Para first):rest) =
orderedListItemToMan opts num indent ((Plain first):rest) | 118 | orderedListItemToMan opts num indent ((Para first):rest) =
orderedListItemToMan opts num indent ((Plain first):rest) | 118 | false | false | 0 | 9 | 14 | 50 | 25 | 25 | null | null |
rueshyna/gogol | gogol-dataflow/gen/Network/Google/Dataflow/Types/Product.hs | mpl-2.0 | -- | Specifies the level of parallelism in case it is finite.
rpValue :: Lens' ReportedParallelism (Maybe Double)
rpValue
= lens _rpValue (\ s a -> s{_rpValue = a}) .
mapping _Coerce | 190 | rpValue :: Lens' ReportedParallelism (Maybe Double)
rpValue
= lens _rpValue (\ s a -> s{_rpValue = a}) .
mapping _Coerce | 128 | rpValue
= lens _rpValue (\ s a -> s{_rpValue = a}) .
mapping _Coerce | 76 | true | true | 1 | 9 | 39 | 59 | 28 | 31 | null | null |
CindyLinz/Haskell.js | trans/src/Desugar/LambdaCase.hs | mit | deLambdaCaseType (TyTuple l boxed type0) = TyTuple (id l) (deLambdaCaseBoxed boxed) (fmap (deLambdaCaseType) type0) | 115 | deLambdaCaseType (TyTuple l boxed type0) = TyTuple (id l) (deLambdaCaseBoxed boxed) (fmap (deLambdaCaseType) type0) | 115 | deLambdaCaseType (TyTuple l boxed type0) = TyTuple (id l) (deLambdaCaseBoxed boxed) (fmap (deLambdaCaseType) type0) | 115 | false | false | 0 | 8 | 13 | 49 | 24 | 25 | null | null |
mtesseract/wosa | src/Nebelfiller/GUIHelpers.hs | bsd-3-clause | guiError :: Window -> String -> String -> IO ()
guiError = guiPopup True | 72 | guiError :: Window -> String -> String -> IO ()
guiError = guiPopup True | 72 | guiError = guiPopup True | 24 | false | true | 0 | 9 | 13 | 31 | 15 | 16 | null | null |
nomeata/cryptonite | tests/KAT_Curve25519.hs | bsd-3-clause | aliceMultBob = "\x4a\x5d\x9d\x5b\xa4\xce\x2d\xe1\x72\x8e\x3b\xf4\x80\x35\x0f\x25\xe0\x7e\x21\xc9\x47\xd1\x9e\x33\x76\xf0\x9b\x3c\x1e\x16\x17\x42" :: ByteString | 159 | aliceMultBob = "\x4a\x5d\x9d\x5b\xa4\xce\x2d\xe1\x72\x8e\x3b\xf4\x80\x35\x0f\x25\xe0\x7e\x21\xc9\x47\xd1\x9e\x33\x76\xf0\x9b\x3c\x1e\x16\x17\x42" :: ByteString | 159 | aliceMultBob = "\x4a\x5d\x9d\x5b\xa4\xce\x2d\xe1\x72\x8e\x3b\xf4\x80\x35\x0f\x25\xe0\x7e\x21\xc9\x47\xd1\x9e\x33\x76\xf0\x9b\x3c\x1e\x16\x17\x42" :: ByteString | 159 | false | false | 0 | 4 | 4 | 9 | 5 | 4 | null | null |
bflyblue/parse-quote | Main.hs | unlicense | dumpPretty :: (MonadIO m, Pretty a) => Conduit a m a
dumpPretty = CL.mapM $ \a -> do
liftIO . putStrLn . pretty $ a
return a | 132 | dumpPretty :: (MonadIO m, Pretty a) => Conduit a m a
dumpPretty = CL.mapM $ \a -> do
liftIO . putStrLn . pretty $ a
return a | 132 | dumpPretty = CL.mapM $ \a -> do
liftIO . putStrLn . pretty $ a
return a | 79 | false | true | 2 | 11 | 34 | 72 | 33 | 39 | null | null |
robstewart57/hdph-rs | src/Control/Parallel/HdpH/Internal/IVar.hs | bsd-3-clause | freeNow :: GRef a -> IO ()
freeNow ref = do
refIsLocal <- isLocal ref
unless refIsLocal $
error $ "HdpH.Internal.GRef.freeNow: " ++ show ref ++ " not local"
debug dbgGRef $ "GRef.freeNow " ++ show ref
atomicModifyIORef regRef (deleteEntry $ slot ref)
-- Create new entry in 'reg' (hosted on 'node') mapping to 'val'; not exported | 343 | freeNow :: GRef a -> IO ()
freeNow ref = do
refIsLocal <- isLocal ref
unless refIsLocal $
error $ "HdpH.Internal.GRef.freeNow: " ++ show ref ++ " not local"
debug dbgGRef $ "GRef.freeNow " ++ show ref
atomicModifyIORef regRef (deleteEntry $ slot ref)
-- Create new entry in 'reg' (hosted on 'node') mapping to 'val'; not exported | 343 | freeNow ref = do
refIsLocal <- isLocal ref
unless refIsLocal $
error $ "HdpH.Internal.GRef.freeNow: " ++ show ref ++ " not local"
debug dbgGRef $ "GRef.freeNow " ++ show ref
atomicModifyIORef regRef (deleteEntry $ slot ref)
-- Create new entry in 'reg' (hosted on 'node') mapping to 'val'; not exported | 316 | false | true | 0 | 11 | 70 | 97 | 43 | 54 | null | null |
d3sformal/bacon-core | test/RecPdr.hs | mit | inv :: Proof D -> LiaDomain Progress
inv = return . either (const . Finished $ Fail "unexpected counterexample") (const . Finished $ Pass) | 138 | inv :: Proof D -> LiaDomain Progress
inv = return . either (const . Finished $ Fail "unexpected counterexample") (const . Finished $ Pass) | 138 | inv = return . either (const . Finished $ Fail "unexpected counterexample") (const . Finished $ Pass) | 101 | false | true | 1 | 8 | 23 | 62 | 28 | 34 | null | null |
afcowie/new-snap-server | src/Snap/Internal/Http/Server/Config.hs | bsd-3-clause | setSSLKey :: FilePath -> Config m a -> Config m a
setSSLKey x c = c { sslkey = Just x } | 110 | setSSLKey :: FilePath -> Config m a -> Config m a
setSSLKey x c = c { sslkey = Just x } | 110 | setSSLKey x c = c { sslkey = Just x } | 37 | false | true | 0 | 8 | 44 | 46 | 22 | 24 | null | null |
gcampax/ghc | compiler/coreSyn/CoreUtils.hs | bsd-3-clause | -- Polymorphic in binder type
-- There is one call at a non-Id binder type, in SetLevels
expr_ok :: (PrimOp -> Bool) -> Expr b -> Bool
expr_ok _ (Lit _) = True | 167 | expr_ok :: (PrimOp -> Bool) -> Expr b -> Bool
expr_ok _ (Lit _) = True | 75 | expr_ok _ (Lit _) = True | 29 | true | true | 0 | 7 | 40 | 42 | 22 | 20 | null | null |
denisshevchenko/breadu.info | src/lib/BreadU/Pages/Content/Errors/Messages.hs | mit | foodUnknownNameErrorTitle :: LangCode -> Text
foodUnknownNameErrorTitle Ru = "Неизвестный продукт" | 98 | foodUnknownNameErrorTitle :: LangCode -> Text
foodUnknownNameErrorTitle Ru = "Неизвестный продукт" | 98 | foodUnknownNameErrorTitle Ru = "Неизвестный продукт" | 52 | false | true | 0 | 5 | 9 | 18 | 9 | 9 | null | null |
brodyberg/Notes | ProjectRosalind.hsproj/LearnHaskell/lib/ProjectRosalind/Motif/ExpressionParsing.hs | mit | r = regularParse (spanned glycosylation) "NRTX" | 47 | r = regularParse (spanned glycosylation) "NRTX" | 47 | r = regularParse (spanned glycosylation) "NRTX" | 47 | false | false | 1 | 7 | 5 | 20 | 8 | 12 | null | null |
pikajude/melvin | src/Melvin/Client/Packet.hs | mit | rplTopicWhoTime :: Text -> Text -> Text -> Text -> Packet
rplTopicWhoTime user channel setter time =
Packet hostname "333" [user, channel, setter, time] | 160 | rplTopicWhoTime :: Text -> Text -> Text -> Text -> Packet
rplTopicWhoTime user channel setter time =
Packet hostname "333" [user, channel, setter, time] | 160 | rplTopicWhoTime user channel setter time =
Packet hostname "333" [user, channel, setter, time] | 102 | false | true | 0 | 8 | 31 | 55 | 29 | 26 | null | null |
danr/hipspec | testsuite/prod/zeno_version/PropT48.hs | gpl-3.0 | drop _ [] = [] | 22 | drop _ [] = [] | 22 | drop _ [] = [] | 22 | false | false | 0 | 6 | 12 | 19 | 8 | 11 | null | null |
adnelson/nix-eval | src/Nix/Values/Lazy.hs | mit | -- | Run an evaluator action, and return either an error or a result.
run :: Eval m a -> m (Either EvalError a)
run = runExceptT . runEval | 138 | run :: Eval m a -> m (Either EvalError a)
run = runExceptT . runEval | 68 | run = runExceptT . runEval | 26 | true | true | 1 | 9 | 28 | 43 | 19 | 24 | null | null |
alanz/Alex | src/AbsSyn.hs | bsd-3-clause | wrapperName :: Scheme -> Maybe String
wrapperName Default {} = Nothing | 70 | wrapperName :: Scheme -> Maybe String
wrapperName Default {} = Nothing | 70 | wrapperName Default {} = Nothing | 32 | false | true | 2 | 4 | 10 | 24 | 13 | 11 | null | null |
drets/scheme-haskell-48h | src/Scheme/Eval.hs | bsd-3-clause | concatStrs :: [LispValue] -> String
concatStrs [] = "" | 70 | concatStrs :: [LispValue] -> String
concatStrs [] = "" | 70 | concatStrs [] = "" | 34 | false | true | 0 | 6 | 24 | 23 | 12 | 11 | null | null |
ComputationWithBoundedResources/ara-inference | doc/tpdb_trs/Haskell/basic_haskell/enumFromTo_2.hs | mit | primCmpInt (Pos Zero) (Neg Zero) = EQ | 37 | primCmpInt (Pos Zero) (Neg Zero) = EQ | 37 | primCmpInt (Pos Zero) (Neg Zero) = EQ | 37 | false | false | 0 | 7 | 6 | 23 | 11 | 12 | null | null |
authchir/SoSe17-FFP-haskell-http2-server | src/HuffmanTH.hs | gpl-3.0 | table' :: Num a => [(Word8, (Word32,a))]
table' = [
( 0, (0x00001ff8, 13)),
( 1, (0x007fffd8, 23)),
( 2, (0x0fffffe2, 28)),
( 3, (0x0fffffe3, 28)),
( 4, (0x0fffffe4, 28)),
( 5, (0x0fffffe5, 28)),
( 6, (0x0fffffe6, 28)),
( 7, (0x0fffffe7, 28)),
( 8, (0x0fffffe8, 28)),
( 9, (0x00ffffea, 24)),
( 10, (0x3ffffffc, 30)),
( 11, (0x0fffffe9, 28)),
( 12, (0x0fffffea, 28)),
( 13, (0x3ffffffd, 30)),
( 14, (0x0fffffeb, 28)),
( 15, (0x0fffffec, 28)),
( 16, (0x0fffffed, 28)),
( 17, (0x0fffffee, 28)),
( 18, (0x0fffffef, 28)),
( 19, (0x0ffffff0, 28)),
( 20, (0x0ffffff1, 28)),
( 21, (0x0ffffff2, 28)),
( 22, (0x3ffffffe, 30)),
( 23, (0x0ffffff3, 28)),
( 24, (0x0ffffff4, 28)),
( 25, (0x0ffffff5, 28)),
( 26, (0x0ffffff6, 28)),
( 27, (0x0ffffff7, 28)),
( 28, (0x0ffffff8, 28)),
( 29, (0x0ffffff9, 28)),
( 30, (0x0ffffffa, 28)),
( 31, (0x0ffffffb, 28)),
( 32, (0x00000014, 6)),
( 33, (0x000003f8, 10)),
( 34, (0x000003f9, 10)),
( 35, (0x00000ffa, 12)),
( 36, (0x00001ff9, 13)),
( 37, (0x00000015, 6)),
( 38, (0x000000f8, 8)),
( 39, (0x000007fa, 11)),
( 40, (0x000003fa, 10)),
( 41, (0x000003fb, 10)),
( 42, (0x000000f9, 8)),
( 43, (0x000007fb, 11)),
( 44, (0x000000fa, 8)),
( 45, (0x00000016, 6)),
( 46, (0x00000017, 6)),
( 47, (0x00000018, 6)),
( 48, (0x00000000, 5)),
( 49, (0x00000001, 5)),
( 50, (0x00000002, 5)),
( 51, (0x00000019, 6)),
( 52, (0x0000001a, 6)),
( 53, (0x0000001b, 6)),
( 54, (0x0000001c, 6)),
( 55, (0x0000001d, 6)),
( 56, (0x0000001e, 6)),
( 57, (0x0000001f, 6)),
( 58, (0x0000005c, 7)),
( 59, (0x000000fb, 8)),
( 60, (0x00007ffc, 15)),
( 61, (0x00000020, 6)),
( 62, (0x00000ffb, 12)),
( 63, (0x000003fc, 10)),
( 64, (0x00001ffa, 13)),
( 65, (0x00000021, 6)),
( 66, (0x0000005d, 7)),
( 67, (0x0000005e, 7)),
( 68, (0x0000005f, 7)),
( 69, (0x00000060, 7)),
( 70, (0x00000061, 7)),
( 71, (0x00000062, 7)),
( 72, (0x00000063, 7)),
( 73, (0x00000064, 7)),
( 74, (0x00000065, 7)),
( 75, (0x00000066, 7)),
( 76, (0x00000067, 7)),
( 77, (0x00000068, 7)),
( 78, (0x00000069, 7)),
( 79, (0x0000006a, 7)),
( 80, (0x0000006b, 7)),
( 81, (0x0000006c, 7)),
( 82, (0x0000006d, 7)),
( 83, (0x0000006e, 7)),
( 84, (0x0000006f, 7)),
( 85, (0x00000070, 7)),
( 86, (0x00000071, 7)),
( 87, (0x00000072, 7)),
( 88, (0x000000fc, 8)),
( 89, (0x00000073, 7)),
( 90, (0x000000fd, 8)),
( 91, (0x00001ffb, 13)),
( 92, (0x0007fff0, 19)),
( 93, (0x00001ffc, 13)),
( 94, (0x00003ffc, 14)),
( 95, (0x00000022, 6)),
( 96, (0x00007ffd, 15)),
( 97, (0x00000003, 5)),
( 98, (0x00000023, 6)),
( 99, (0x00000004, 5)),
(100, (0x00000024, 6)),
(101, (0x00000005, 5)),
(102, (0x00000025, 6)),
(103, (0x00000026, 6)),
(104, (0x00000027, 6)),
(105, (0x00000006, 5)),
(106, (0x00000074, 7)),
(107, (0x00000075, 7)),
(108, (0x00000028, 6)),
(109, (0x00000029, 6)),
(110, (0x0000002a, 6)),
(111, (0x00000007, 5)),
(112, (0x0000002b, 6)),
(113, (0x00000076, 7)),
(114, (0x0000002c, 6)),
(115, (0x00000008, 5)),
(116, (0x00000009, 5)),
(117, (0x0000002d, 6)),
(118, (0x00000077, 7)),
(119, (0x00000078, 7)),
(120, (0x00000079, 7)),
(121, (0x0000007a, 7)),
(122, (0x0000007b, 7)),
(123, (0x00007ffe, 15)),
(124, (0x000007fc, 11)),
(125, (0x00003ffd, 14)),
(126, (0x00001ffd, 13)),
(127, (0x0ffffffc, 28)),
(128, (0x000fffe6, 20)),
(129, (0x003fffd2, 22)),
(130, (0x000fffe7, 20)),
(131, (0x000fffe8, 20)),
(132, (0x003fffd3, 22)),
(133, (0x003fffd4, 22)),
(134, (0x003fffd5, 22)),
(135, (0x007fffd9, 23)),
(136, (0x003fffd6, 22)),
(137, (0x007fffda, 23)),
(138, (0x007fffdb, 23)),
(139, (0x007fffdc, 23)),
(140, (0x007fffdd, 23)),
(141, (0x007fffde, 23)),
(142, (0x00ffffeb, 24)),
(143, (0x007fffdf, 23)),
(144, (0x00ffffec, 24)),
(145, (0x00ffffed, 24)),
(146, (0x003fffd7, 22)),
(147, (0x007fffe0, 23)),
(148, (0x00ffffee, 24)),
(149, (0x007fffe1, 23)),
(150, (0x007fffe2, 23)),
(151, (0x007fffe3, 23)),
(152, (0x007fffe4, 23)),
(153, (0x001fffdc, 21)),
(154, (0x003fffd8, 22)),
(155, (0x007fffe5, 23)),
(156, (0x003fffd9, 22)),
(157, (0x007fffe6, 23)),
(158, (0x007fffe7, 23)),
(159, (0x00ffffef, 24)),
(160, (0x003fffda, 22)),
(161, (0x001fffdd, 21)),
(162, (0x000fffe9, 20)),
(163, (0x003fffdb, 22)),
(164, (0x003fffdc, 22)),
(165, (0x007fffe8, 23)),
(166, (0x007fffe9, 23)),
(167, (0x001fffde, 21)),
(168, (0x007fffea, 23)),
(169, (0x003fffdd, 22)),
(170, (0x003fffde, 22)),
(171, (0x00fffff0, 24)),
(172, (0x001fffdf, 21)),
(173, (0x003fffdf, 22)),
(174, (0x007fffeb, 23)),
(175, (0x007fffec, 23)),
(176, (0x001fffe0, 21)),
(177, (0x001fffe1, 21)),
(178, (0x003fffe0, 22)),
(179, (0x001fffe2, 21)),
(180, (0x007fffed, 23)),
(181, (0x003fffe1, 22)),
(182, (0x007fffee, 23)),
(183, (0x007fffef, 23)),
(184, (0x000fffea, 20)),
(185, (0x003fffe2, 22)),
(186, (0x003fffe3, 22)),
(187, (0x003fffe4, 22)),
(188, (0x007ffff0, 23)),
(189, (0x003fffe5, 22)),
(190, (0x003fffe6, 22)),
(191, (0x007ffff1, 23)),
(192, (0x03ffffe0, 26)),
(193, (0x03ffffe1, 26)),
(194, (0x000fffeb, 20)),
(195, (0x0007fff1, 19)),
(196, (0x003fffe7, 22)),
(197, (0x007ffff2, 23)),
(198, (0x003fffe8, 22)),
(199, (0x01ffffec, 25)),
(200, (0x03ffffe2, 26)),
(201, (0x03ffffe3, 26)),
(202, (0x03ffffe4, 26)),
(203, (0x07ffffde, 27)),
(204, (0x07ffffdf, 27)),
(205, (0x03ffffe5, 26)),
(206, (0x00fffff1, 24)),
(207, (0x01ffffed, 25)),
(208, (0x0007fff2, 19)),
(209, (0x001fffe3, 21)),
(210, (0x03ffffe6, 26)),
(211, (0x07ffffe0, 27)),
(212, (0x07ffffe1, 27)),
(213, (0x03ffffe7, 26)),
(214, (0x07ffffe2, 27)),
(215, (0x00fffff2, 24)),
(216, (0x001fffe4, 21)),
(217, (0x001fffe5, 21)),
(218, (0x03ffffe8, 26)),
(219, (0x03ffffe9, 26)),
(220, (0x0ffffffd, 28)),
(221, (0x07ffffe3, 27)),
(222, (0x07ffffe4, 27)),
(223, (0x07ffffe5, 27)),
(224, (0x000fffec, 20)),
(225, (0x00fffff3, 24)),
(226, (0x000fffed, 20)),
(227, (0x001fffe6, 21)),
(228, (0x003fffe9, 22)),
(229, (0x001fffe7, 21)),
(230, (0x001fffe8, 21)),
(231, (0x007ffff3, 23)),
(232, (0x003fffea, 22)),
(233, (0x003fffeb, 22)),
(234, (0x01ffffee, 25)),
(235, (0x01ffffef, 25)),
(236, (0x00fffff4, 24)),
(237, (0x00fffff5, 24)),
(238, (0x03ffffea, 26)),
(239, (0x007ffff4, 23)),
(240, (0x03ffffeb, 26)),
(241, (0x07ffffe6, 27)),
(242, (0x03ffffec, 26)),
(243, (0x03ffffed, 26)),
(244, (0x07ffffe7, 27)),
(245, (0x07ffffe8, 27)),
(246, (0x07ffffe9, 27)),
(247, (0x07ffffea, 27)),
(248, (0x07ffffeb, 27)),
(249, (0x0ffffffe, 28)),
(250, (0x07ffffec, 27)),
(251, (0x07ffffed, 27)),
(252, (0x07ffffee, 27)),
(253, (0x07ffffef, 27)),
(254, (0x07fffff0, 27)),
(255, (0x03ffffee, 26))
] | 6,966 | table' :: Num a => [(Word8, (Word32,a))]
table' = [
( 0, (0x00001ff8, 13)),
( 1, (0x007fffd8, 23)),
( 2, (0x0fffffe2, 28)),
( 3, (0x0fffffe3, 28)),
( 4, (0x0fffffe4, 28)),
( 5, (0x0fffffe5, 28)),
( 6, (0x0fffffe6, 28)),
( 7, (0x0fffffe7, 28)),
( 8, (0x0fffffe8, 28)),
( 9, (0x00ffffea, 24)),
( 10, (0x3ffffffc, 30)),
( 11, (0x0fffffe9, 28)),
( 12, (0x0fffffea, 28)),
( 13, (0x3ffffffd, 30)),
( 14, (0x0fffffeb, 28)),
( 15, (0x0fffffec, 28)),
( 16, (0x0fffffed, 28)),
( 17, (0x0fffffee, 28)),
( 18, (0x0fffffef, 28)),
( 19, (0x0ffffff0, 28)),
( 20, (0x0ffffff1, 28)),
( 21, (0x0ffffff2, 28)),
( 22, (0x3ffffffe, 30)),
( 23, (0x0ffffff3, 28)),
( 24, (0x0ffffff4, 28)),
( 25, (0x0ffffff5, 28)),
( 26, (0x0ffffff6, 28)),
( 27, (0x0ffffff7, 28)),
( 28, (0x0ffffff8, 28)),
( 29, (0x0ffffff9, 28)),
( 30, (0x0ffffffa, 28)),
( 31, (0x0ffffffb, 28)),
( 32, (0x00000014, 6)),
( 33, (0x000003f8, 10)),
( 34, (0x000003f9, 10)),
( 35, (0x00000ffa, 12)),
( 36, (0x00001ff9, 13)),
( 37, (0x00000015, 6)),
( 38, (0x000000f8, 8)),
( 39, (0x000007fa, 11)),
( 40, (0x000003fa, 10)),
( 41, (0x000003fb, 10)),
( 42, (0x000000f9, 8)),
( 43, (0x000007fb, 11)),
( 44, (0x000000fa, 8)),
( 45, (0x00000016, 6)),
( 46, (0x00000017, 6)),
( 47, (0x00000018, 6)),
( 48, (0x00000000, 5)),
( 49, (0x00000001, 5)),
( 50, (0x00000002, 5)),
( 51, (0x00000019, 6)),
( 52, (0x0000001a, 6)),
( 53, (0x0000001b, 6)),
( 54, (0x0000001c, 6)),
( 55, (0x0000001d, 6)),
( 56, (0x0000001e, 6)),
( 57, (0x0000001f, 6)),
( 58, (0x0000005c, 7)),
( 59, (0x000000fb, 8)),
( 60, (0x00007ffc, 15)),
( 61, (0x00000020, 6)),
( 62, (0x00000ffb, 12)),
( 63, (0x000003fc, 10)),
( 64, (0x00001ffa, 13)),
( 65, (0x00000021, 6)),
( 66, (0x0000005d, 7)),
( 67, (0x0000005e, 7)),
( 68, (0x0000005f, 7)),
( 69, (0x00000060, 7)),
( 70, (0x00000061, 7)),
( 71, (0x00000062, 7)),
( 72, (0x00000063, 7)),
( 73, (0x00000064, 7)),
( 74, (0x00000065, 7)),
( 75, (0x00000066, 7)),
( 76, (0x00000067, 7)),
( 77, (0x00000068, 7)),
( 78, (0x00000069, 7)),
( 79, (0x0000006a, 7)),
( 80, (0x0000006b, 7)),
( 81, (0x0000006c, 7)),
( 82, (0x0000006d, 7)),
( 83, (0x0000006e, 7)),
( 84, (0x0000006f, 7)),
( 85, (0x00000070, 7)),
( 86, (0x00000071, 7)),
( 87, (0x00000072, 7)),
( 88, (0x000000fc, 8)),
( 89, (0x00000073, 7)),
( 90, (0x000000fd, 8)),
( 91, (0x00001ffb, 13)),
( 92, (0x0007fff0, 19)),
( 93, (0x00001ffc, 13)),
( 94, (0x00003ffc, 14)),
( 95, (0x00000022, 6)),
( 96, (0x00007ffd, 15)),
( 97, (0x00000003, 5)),
( 98, (0x00000023, 6)),
( 99, (0x00000004, 5)),
(100, (0x00000024, 6)),
(101, (0x00000005, 5)),
(102, (0x00000025, 6)),
(103, (0x00000026, 6)),
(104, (0x00000027, 6)),
(105, (0x00000006, 5)),
(106, (0x00000074, 7)),
(107, (0x00000075, 7)),
(108, (0x00000028, 6)),
(109, (0x00000029, 6)),
(110, (0x0000002a, 6)),
(111, (0x00000007, 5)),
(112, (0x0000002b, 6)),
(113, (0x00000076, 7)),
(114, (0x0000002c, 6)),
(115, (0x00000008, 5)),
(116, (0x00000009, 5)),
(117, (0x0000002d, 6)),
(118, (0x00000077, 7)),
(119, (0x00000078, 7)),
(120, (0x00000079, 7)),
(121, (0x0000007a, 7)),
(122, (0x0000007b, 7)),
(123, (0x00007ffe, 15)),
(124, (0x000007fc, 11)),
(125, (0x00003ffd, 14)),
(126, (0x00001ffd, 13)),
(127, (0x0ffffffc, 28)),
(128, (0x000fffe6, 20)),
(129, (0x003fffd2, 22)),
(130, (0x000fffe7, 20)),
(131, (0x000fffe8, 20)),
(132, (0x003fffd3, 22)),
(133, (0x003fffd4, 22)),
(134, (0x003fffd5, 22)),
(135, (0x007fffd9, 23)),
(136, (0x003fffd6, 22)),
(137, (0x007fffda, 23)),
(138, (0x007fffdb, 23)),
(139, (0x007fffdc, 23)),
(140, (0x007fffdd, 23)),
(141, (0x007fffde, 23)),
(142, (0x00ffffeb, 24)),
(143, (0x007fffdf, 23)),
(144, (0x00ffffec, 24)),
(145, (0x00ffffed, 24)),
(146, (0x003fffd7, 22)),
(147, (0x007fffe0, 23)),
(148, (0x00ffffee, 24)),
(149, (0x007fffe1, 23)),
(150, (0x007fffe2, 23)),
(151, (0x007fffe3, 23)),
(152, (0x007fffe4, 23)),
(153, (0x001fffdc, 21)),
(154, (0x003fffd8, 22)),
(155, (0x007fffe5, 23)),
(156, (0x003fffd9, 22)),
(157, (0x007fffe6, 23)),
(158, (0x007fffe7, 23)),
(159, (0x00ffffef, 24)),
(160, (0x003fffda, 22)),
(161, (0x001fffdd, 21)),
(162, (0x000fffe9, 20)),
(163, (0x003fffdb, 22)),
(164, (0x003fffdc, 22)),
(165, (0x007fffe8, 23)),
(166, (0x007fffe9, 23)),
(167, (0x001fffde, 21)),
(168, (0x007fffea, 23)),
(169, (0x003fffdd, 22)),
(170, (0x003fffde, 22)),
(171, (0x00fffff0, 24)),
(172, (0x001fffdf, 21)),
(173, (0x003fffdf, 22)),
(174, (0x007fffeb, 23)),
(175, (0x007fffec, 23)),
(176, (0x001fffe0, 21)),
(177, (0x001fffe1, 21)),
(178, (0x003fffe0, 22)),
(179, (0x001fffe2, 21)),
(180, (0x007fffed, 23)),
(181, (0x003fffe1, 22)),
(182, (0x007fffee, 23)),
(183, (0x007fffef, 23)),
(184, (0x000fffea, 20)),
(185, (0x003fffe2, 22)),
(186, (0x003fffe3, 22)),
(187, (0x003fffe4, 22)),
(188, (0x007ffff0, 23)),
(189, (0x003fffe5, 22)),
(190, (0x003fffe6, 22)),
(191, (0x007ffff1, 23)),
(192, (0x03ffffe0, 26)),
(193, (0x03ffffe1, 26)),
(194, (0x000fffeb, 20)),
(195, (0x0007fff1, 19)),
(196, (0x003fffe7, 22)),
(197, (0x007ffff2, 23)),
(198, (0x003fffe8, 22)),
(199, (0x01ffffec, 25)),
(200, (0x03ffffe2, 26)),
(201, (0x03ffffe3, 26)),
(202, (0x03ffffe4, 26)),
(203, (0x07ffffde, 27)),
(204, (0x07ffffdf, 27)),
(205, (0x03ffffe5, 26)),
(206, (0x00fffff1, 24)),
(207, (0x01ffffed, 25)),
(208, (0x0007fff2, 19)),
(209, (0x001fffe3, 21)),
(210, (0x03ffffe6, 26)),
(211, (0x07ffffe0, 27)),
(212, (0x07ffffe1, 27)),
(213, (0x03ffffe7, 26)),
(214, (0x07ffffe2, 27)),
(215, (0x00fffff2, 24)),
(216, (0x001fffe4, 21)),
(217, (0x001fffe5, 21)),
(218, (0x03ffffe8, 26)),
(219, (0x03ffffe9, 26)),
(220, (0x0ffffffd, 28)),
(221, (0x07ffffe3, 27)),
(222, (0x07ffffe4, 27)),
(223, (0x07ffffe5, 27)),
(224, (0x000fffec, 20)),
(225, (0x00fffff3, 24)),
(226, (0x000fffed, 20)),
(227, (0x001fffe6, 21)),
(228, (0x003fffe9, 22)),
(229, (0x001fffe7, 21)),
(230, (0x001fffe8, 21)),
(231, (0x007ffff3, 23)),
(232, (0x003fffea, 22)),
(233, (0x003fffeb, 22)),
(234, (0x01ffffee, 25)),
(235, (0x01ffffef, 25)),
(236, (0x00fffff4, 24)),
(237, (0x00fffff5, 24)),
(238, (0x03ffffea, 26)),
(239, (0x007ffff4, 23)),
(240, (0x03ffffeb, 26)),
(241, (0x07ffffe6, 27)),
(242, (0x03ffffec, 26)),
(243, (0x03ffffed, 26)),
(244, (0x07ffffe7, 27)),
(245, (0x07ffffe8, 27)),
(246, (0x07ffffe9, 27)),
(247, (0x07ffffea, 27)),
(248, (0x07ffffeb, 27)),
(249, (0x0ffffffe, 28)),
(250, (0x07ffffec, 27)),
(251, (0x07ffffed, 27)),
(252, (0x07ffffee, 27)),
(253, (0x07ffffef, 27)),
(254, (0x07fffff0, 27)),
(255, (0x03ffffee, 26))
] | 6,966 | table' = [
( 0, (0x00001ff8, 13)),
( 1, (0x007fffd8, 23)),
( 2, (0x0fffffe2, 28)),
( 3, (0x0fffffe3, 28)),
( 4, (0x0fffffe4, 28)),
( 5, (0x0fffffe5, 28)),
( 6, (0x0fffffe6, 28)),
( 7, (0x0fffffe7, 28)),
( 8, (0x0fffffe8, 28)),
( 9, (0x00ffffea, 24)),
( 10, (0x3ffffffc, 30)),
( 11, (0x0fffffe9, 28)),
( 12, (0x0fffffea, 28)),
( 13, (0x3ffffffd, 30)),
( 14, (0x0fffffeb, 28)),
( 15, (0x0fffffec, 28)),
( 16, (0x0fffffed, 28)),
( 17, (0x0fffffee, 28)),
( 18, (0x0fffffef, 28)),
( 19, (0x0ffffff0, 28)),
( 20, (0x0ffffff1, 28)),
( 21, (0x0ffffff2, 28)),
( 22, (0x3ffffffe, 30)),
( 23, (0x0ffffff3, 28)),
( 24, (0x0ffffff4, 28)),
( 25, (0x0ffffff5, 28)),
( 26, (0x0ffffff6, 28)),
( 27, (0x0ffffff7, 28)),
( 28, (0x0ffffff8, 28)),
( 29, (0x0ffffff9, 28)),
( 30, (0x0ffffffa, 28)),
( 31, (0x0ffffffb, 28)),
( 32, (0x00000014, 6)),
( 33, (0x000003f8, 10)),
( 34, (0x000003f9, 10)),
( 35, (0x00000ffa, 12)),
( 36, (0x00001ff9, 13)),
( 37, (0x00000015, 6)),
( 38, (0x000000f8, 8)),
( 39, (0x000007fa, 11)),
( 40, (0x000003fa, 10)),
( 41, (0x000003fb, 10)),
( 42, (0x000000f9, 8)),
( 43, (0x000007fb, 11)),
( 44, (0x000000fa, 8)),
( 45, (0x00000016, 6)),
( 46, (0x00000017, 6)),
( 47, (0x00000018, 6)),
( 48, (0x00000000, 5)),
( 49, (0x00000001, 5)),
( 50, (0x00000002, 5)),
( 51, (0x00000019, 6)),
( 52, (0x0000001a, 6)),
( 53, (0x0000001b, 6)),
( 54, (0x0000001c, 6)),
( 55, (0x0000001d, 6)),
( 56, (0x0000001e, 6)),
( 57, (0x0000001f, 6)),
( 58, (0x0000005c, 7)),
( 59, (0x000000fb, 8)),
( 60, (0x00007ffc, 15)),
( 61, (0x00000020, 6)),
( 62, (0x00000ffb, 12)),
( 63, (0x000003fc, 10)),
( 64, (0x00001ffa, 13)),
( 65, (0x00000021, 6)),
( 66, (0x0000005d, 7)),
( 67, (0x0000005e, 7)),
( 68, (0x0000005f, 7)),
( 69, (0x00000060, 7)),
( 70, (0x00000061, 7)),
( 71, (0x00000062, 7)),
( 72, (0x00000063, 7)),
( 73, (0x00000064, 7)),
( 74, (0x00000065, 7)),
( 75, (0x00000066, 7)),
( 76, (0x00000067, 7)),
( 77, (0x00000068, 7)),
( 78, (0x00000069, 7)),
( 79, (0x0000006a, 7)),
( 80, (0x0000006b, 7)),
( 81, (0x0000006c, 7)),
( 82, (0x0000006d, 7)),
( 83, (0x0000006e, 7)),
( 84, (0x0000006f, 7)),
( 85, (0x00000070, 7)),
( 86, (0x00000071, 7)),
( 87, (0x00000072, 7)),
( 88, (0x000000fc, 8)),
( 89, (0x00000073, 7)),
( 90, (0x000000fd, 8)),
( 91, (0x00001ffb, 13)),
( 92, (0x0007fff0, 19)),
( 93, (0x00001ffc, 13)),
( 94, (0x00003ffc, 14)),
( 95, (0x00000022, 6)),
( 96, (0x00007ffd, 15)),
( 97, (0x00000003, 5)),
( 98, (0x00000023, 6)),
( 99, (0x00000004, 5)),
(100, (0x00000024, 6)),
(101, (0x00000005, 5)),
(102, (0x00000025, 6)),
(103, (0x00000026, 6)),
(104, (0x00000027, 6)),
(105, (0x00000006, 5)),
(106, (0x00000074, 7)),
(107, (0x00000075, 7)),
(108, (0x00000028, 6)),
(109, (0x00000029, 6)),
(110, (0x0000002a, 6)),
(111, (0x00000007, 5)),
(112, (0x0000002b, 6)),
(113, (0x00000076, 7)),
(114, (0x0000002c, 6)),
(115, (0x00000008, 5)),
(116, (0x00000009, 5)),
(117, (0x0000002d, 6)),
(118, (0x00000077, 7)),
(119, (0x00000078, 7)),
(120, (0x00000079, 7)),
(121, (0x0000007a, 7)),
(122, (0x0000007b, 7)),
(123, (0x00007ffe, 15)),
(124, (0x000007fc, 11)),
(125, (0x00003ffd, 14)),
(126, (0x00001ffd, 13)),
(127, (0x0ffffffc, 28)),
(128, (0x000fffe6, 20)),
(129, (0x003fffd2, 22)),
(130, (0x000fffe7, 20)),
(131, (0x000fffe8, 20)),
(132, (0x003fffd3, 22)),
(133, (0x003fffd4, 22)),
(134, (0x003fffd5, 22)),
(135, (0x007fffd9, 23)),
(136, (0x003fffd6, 22)),
(137, (0x007fffda, 23)),
(138, (0x007fffdb, 23)),
(139, (0x007fffdc, 23)),
(140, (0x007fffdd, 23)),
(141, (0x007fffde, 23)),
(142, (0x00ffffeb, 24)),
(143, (0x007fffdf, 23)),
(144, (0x00ffffec, 24)),
(145, (0x00ffffed, 24)),
(146, (0x003fffd7, 22)),
(147, (0x007fffe0, 23)),
(148, (0x00ffffee, 24)),
(149, (0x007fffe1, 23)),
(150, (0x007fffe2, 23)),
(151, (0x007fffe3, 23)),
(152, (0x007fffe4, 23)),
(153, (0x001fffdc, 21)),
(154, (0x003fffd8, 22)),
(155, (0x007fffe5, 23)),
(156, (0x003fffd9, 22)),
(157, (0x007fffe6, 23)),
(158, (0x007fffe7, 23)),
(159, (0x00ffffef, 24)),
(160, (0x003fffda, 22)),
(161, (0x001fffdd, 21)),
(162, (0x000fffe9, 20)),
(163, (0x003fffdb, 22)),
(164, (0x003fffdc, 22)),
(165, (0x007fffe8, 23)),
(166, (0x007fffe9, 23)),
(167, (0x001fffde, 21)),
(168, (0x007fffea, 23)),
(169, (0x003fffdd, 22)),
(170, (0x003fffde, 22)),
(171, (0x00fffff0, 24)),
(172, (0x001fffdf, 21)),
(173, (0x003fffdf, 22)),
(174, (0x007fffeb, 23)),
(175, (0x007fffec, 23)),
(176, (0x001fffe0, 21)),
(177, (0x001fffe1, 21)),
(178, (0x003fffe0, 22)),
(179, (0x001fffe2, 21)),
(180, (0x007fffed, 23)),
(181, (0x003fffe1, 22)),
(182, (0x007fffee, 23)),
(183, (0x007fffef, 23)),
(184, (0x000fffea, 20)),
(185, (0x003fffe2, 22)),
(186, (0x003fffe3, 22)),
(187, (0x003fffe4, 22)),
(188, (0x007ffff0, 23)),
(189, (0x003fffe5, 22)),
(190, (0x003fffe6, 22)),
(191, (0x007ffff1, 23)),
(192, (0x03ffffe0, 26)),
(193, (0x03ffffe1, 26)),
(194, (0x000fffeb, 20)),
(195, (0x0007fff1, 19)),
(196, (0x003fffe7, 22)),
(197, (0x007ffff2, 23)),
(198, (0x003fffe8, 22)),
(199, (0x01ffffec, 25)),
(200, (0x03ffffe2, 26)),
(201, (0x03ffffe3, 26)),
(202, (0x03ffffe4, 26)),
(203, (0x07ffffde, 27)),
(204, (0x07ffffdf, 27)),
(205, (0x03ffffe5, 26)),
(206, (0x00fffff1, 24)),
(207, (0x01ffffed, 25)),
(208, (0x0007fff2, 19)),
(209, (0x001fffe3, 21)),
(210, (0x03ffffe6, 26)),
(211, (0x07ffffe0, 27)),
(212, (0x07ffffe1, 27)),
(213, (0x03ffffe7, 26)),
(214, (0x07ffffe2, 27)),
(215, (0x00fffff2, 24)),
(216, (0x001fffe4, 21)),
(217, (0x001fffe5, 21)),
(218, (0x03ffffe8, 26)),
(219, (0x03ffffe9, 26)),
(220, (0x0ffffffd, 28)),
(221, (0x07ffffe3, 27)),
(222, (0x07ffffe4, 27)),
(223, (0x07ffffe5, 27)),
(224, (0x000fffec, 20)),
(225, (0x00fffff3, 24)),
(226, (0x000fffed, 20)),
(227, (0x001fffe6, 21)),
(228, (0x003fffe9, 22)),
(229, (0x001fffe7, 21)),
(230, (0x001fffe8, 21)),
(231, (0x007ffff3, 23)),
(232, (0x003fffea, 22)),
(233, (0x003fffeb, 22)),
(234, (0x01ffffee, 25)),
(235, (0x01ffffef, 25)),
(236, (0x00fffff4, 24)),
(237, (0x00fffff5, 24)),
(238, (0x03ffffea, 26)),
(239, (0x007ffff4, 23)),
(240, (0x03ffffeb, 26)),
(241, (0x07ffffe6, 27)),
(242, (0x03ffffec, 26)),
(243, (0x03ffffed, 26)),
(244, (0x07ffffe7, 27)),
(245, (0x07ffffe8, 27)),
(246, (0x07ffffe9, 27)),
(247, (0x07ffffea, 27)),
(248, (0x07ffffeb, 27)),
(249, (0x0ffffffe, 28)),
(250, (0x07ffffec, 27)),
(251, (0x07ffffed, 27)),
(252, (0x07ffffee, 27)),
(253, (0x07ffffef, 27)),
(254, (0x07fffff0, 27)),
(255, (0x03ffffee, 26))
] | 6,925 | false | true | 0 | 10 | 1,476 | 3,880 | 2,580 | 1,300 | null | null |
nickbart1980/pandoc | src/Text/Pandoc/Readers/LaTeX.hs | gpl-2.0 | breve 'o' = "ŏ" | 15 | breve 'o' = "ŏ" | 15 | breve 'o' = "ŏ" | 15 | false | false | 0 | 5 | 3 | 9 | 4 | 5 | null | null |
GaloisInc/pads-haskell | Language/Pads/Library/BigEndian.hs | bsd-3-clause | bToi32sbh p (bs,md) = (bytesToInt32 SBH bs, md) | 47 | bToi32sbh p (bs,md) = (bytesToInt32 SBH bs, md) | 47 | bToi32sbh p (bs,md) = (bytesToInt32 SBH bs, md) | 47 | false | false | 0 | 6 | 7 | 30 | 15 | 15 | null | null |
Proclivis/wxHaskell | wxcore/src/haskell/Graphics/UI/WXCore/WxcDefs.hs | lgpl-2.1 | wxLANGUAGE_DUTCH_BELGIAN :: Int
wxLANGUAGE_DUTCH_BELGIAN = 55 | 61 | wxLANGUAGE_DUTCH_BELGIAN :: Int
wxLANGUAGE_DUTCH_BELGIAN = 55 | 61 | wxLANGUAGE_DUTCH_BELGIAN = 55 | 29 | false | true | 0 | 4 | 5 | 11 | 6 | 5 | null | null |
iankronquist/riemann | src/Lexer.hs | mit | identifier :: Parser String
identifier = Tok.identifier lexer | 61 | identifier :: Parser String
identifier = Tok.identifier lexer | 61 | identifier = Tok.identifier lexer | 33 | false | true | 0 | 6 | 7 | 19 | 9 | 10 | null | null |
stu-smith/project-euler-haskell | Euler-040.hs | mit | main = print $ product $ map (\c -> read [c] :: Int) extractedDigits | 68 | main = print $ product $ map (\c -> read [c] :: Int) extractedDigits | 68 | main = print $ product $ map (\c -> read [c] :: Int) extractedDigits | 68 | false | false | 5 | 9 | 13 | 41 | 19 | 22 | null | null |
Pitometsu/bake | src/General/BigString.hs | bsd-3-clause | bigStringWithString :: NFData a => BigString -> (String -> a) -> a
bigStringWithString (Memory x) op = let res = op $ T.unpack x in rnf res `seq` res | 149 | bigStringWithString :: NFData a => BigString -> (String -> a) -> a
bigStringWithString (Memory x) op = let res = op $ T.unpack x in rnf res `seq` res | 149 | bigStringWithString (Memory x) op = let res = op $ T.unpack x in rnf res `seq` res | 82 | false | true | 0 | 11 | 28 | 73 | 36 | 37 | null | null |
wavewave/madgraph-auto-dataset | src/HEP/Automation/MadGraph/Dataset/Processes.hs | gpl-3.0 | preDefProcess :: Process -> [Char]
preDefProcess TTBar = "\ngenerate P P > t t~ QED=99\n" | 95 | preDefProcess :: Process -> [Char]
preDefProcess TTBar = "\ngenerate P P > t t~ QED=99\n" | 95 | preDefProcess TTBar = "\ngenerate P P > t t~ QED=99\n" | 60 | false | true | 0 | 6 | 20 | 21 | 11 | 10 | null | null |
ksaveljev/chip-8-emulator | Chip8/Emulator.hs | mit | loadInstruction :: MonadEmulator m => m Instruction
loadInstruction = decodeInstruction <$> loadNextWord | 104 | loadInstruction :: MonadEmulator m => m Instruction
loadInstruction = decodeInstruction <$> loadNextWord | 104 | loadInstruction = decodeInstruction <$> loadNextWord | 52 | false | true | 0 | 7 | 11 | 31 | 13 | 18 | null | null |
NorfairKing/the-notes | src/Cryptography/SystemAlgebra/Graph.hs | gpl-2.0 | renderSystem s@(Merges ss) = cluster_ (T.filter (/= ' ') $ name s) $ do
nis <- concat <$> mapM renderSystem ss
let ls = map fst nis
if ((length $ nub ls) == (length ls))
then return nis
else error "Label sets of systems must be disjunct" | 257 | renderSystem s@(Merges ss) = cluster_ (T.filter (/= ' ') $ name s) $ do
nis <- concat <$> mapM renderSystem ss
let ls = map fst nis
if ((length $ nub ls) == (length ls))
then return nis
else error "Label sets of systems must be disjunct" | 257 | renderSystem s@(Merges ss) = cluster_ (T.filter (/= ' ') $ name s) $ do
nis <- concat <$> mapM renderSystem ss
let ls = map fst nis
if ((length $ nub ls) == (length ls))
then return nis
else error "Label sets of systems must be disjunct" | 257 | false | false | 0 | 13 | 66 | 114 | 55 | 59 | null | null |
spechub/Hets | DFOL/Colimit.hs | gpl-2.0 | addSig sig maps doneSyms rel ((i, Sign ds) : sigs) =
processSig sig maps Map.empty i (expandDecls ds) doneSyms rel sigs | 121 | addSig sig maps doneSyms rel ((i, Sign ds) : sigs) =
processSig sig maps Map.empty i (expandDecls ds) doneSyms rel sigs | 121 | addSig sig maps doneSyms rel ((i, Sign ds) : sigs) =
processSig sig maps Map.empty i (expandDecls ds) doneSyms rel sigs | 121 | false | false | 0 | 9 | 22 | 58 | 29 | 29 | null | null |
timerg/parser | data/Mainold.hs | bsd-3-clause | eg = pack "140.113.210.41" | 26 | eg = pack "140.113.210.41" | 26 | eg = pack "140.113.210.41" | 26 | false | false | 1 | 5 | 3 | 13 | 4 | 9 | null | null |
suhailshergill/liboleg | Data/FDList.hs | bsd-3-clause | -- [5,1,2,3,4,5,1,2,3,4,5]
testl_l = takeDLrev 11 testl | 55 | testl_l = takeDLrev 11 testl | 28 | testl_l = takeDLrev 11 testl | 28 | true | false | 1 | 5 | 6 | 17 | 6 | 11 | null | null |
apvanzanten/learningMeAHaskell | test.hs | gpl-3.0 | moveMinToBack' :: (Ord a) => [a] -> [a]
moveMinToBack' [] = [] | 62 | moveMinToBack' :: (Ord a) => [a] -> [a]
moveMinToBack' [] = [] | 62 | moveMinToBack' [] = [] | 22 | false | true | 0 | 7 | 11 | 37 | 20 | 17 | null | null |
AlexanderPankiv/ghc | compiler/deSugar/DsUtils.hs | bsd-3-clause | combineMatchResults :: MatchResult -> MatchResult -> MatchResult
combineMatchResults (MatchResult CanFail body_fn1)
(MatchResult can_it_fail2 body_fn2)
= MatchResult can_it_fail2 body_fn
where
body_fn fail = do body2 <- body_fn2 fail
(fail_bind, duplicatable_expr) <- mkFailurePair body2
body1 <- body_fn1 duplicatable_expr
return (Let fail_bind body1) | 451 | combineMatchResults :: MatchResult -> MatchResult -> MatchResult
combineMatchResults (MatchResult CanFail body_fn1)
(MatchResult can_it_fail2 body_fn2)
= MatchResult can_it_fail2 body_fn
where
body_fn fail = do body2 <- body_fn2 fail
(fail_bind, duplicatable_expr) <- mkFailurePair body2
body1 <- body_fn1 duplicatable_expr
return (Let fail_bind body1) | 451 | combineMatchResults (MatchResult CanFail body_fn1)
(MatchResult can_it_fail2 body_fn2)
= MatchResult can_it_fail2 body_fn
where
body_fn fail = do body2 <- body_fn2 fail
(fail_bind, duplicatable_expr) <- mkFailurePair body2
body1 <- body_fn1 duplicatable_expr
return (Let fail_bind body1) | 386 | false | true | 0 | 9 | 138 | 105 | 49 | 56 | null | null |
tidalcycles/Tidal | bin/params-header.hs | gpl-3.0 | drumN "sh" = 82 | 15 | drumN "sh" = 82 | 15 | drumN "sh" = 82 | 15 | false | false | 0 | 4 | 3 | 10 | 4 | 6 | null | null |
jvilar/hrows | lib/Model/Expression/Parser.hs | gpl-2.0 | -- |Check if the current token is equal to the one given.
check :: Token -> Parser Bool
check t = (== t) <$> current | 116 | check :: Token -> Parser Bool
check t = (== t) <$> current | 58 | check t = (== t) <$> current | 28 | true | true | 2 | 7 | 24 | 36 | 17 | 19 | null | null |
Concomitant/LambdaHack | Game/LambdaHack/Atomic/PosAtomicRead.hs | bsd-3-clause | singleContainer (CTrunk fid lid p) = return $! PosFidAndSight [fid] lid [p] | 75 | singleContainer (CTrunk fid lid p) = return $! PosFidAndSight [fid] lid [p] | 75 | singleContainer (CTrunk fid lid p) = return $! PosFidAndSight [fid] lid [p] | 75 | false | false | 0 | 7 | 11 | 36 | 18 | 18 | null | null |
jspahrsummers/network | Network/URI.hs | bsd-3-clause | -- RFC3986, section 3.2.3
port :: URIParser String
port =
do { char ':'
; p <- many digitChar
; return (':':p)
} | 143 | port :: URIParser String
port =
do { char ':'
; p <- many digitChar
; return (':':p)
} | 115 | port =
do { char ':'
; p <- many digitChar
; return (':':p)
} | 90 | true | true | 1 | 10 | 53 | 52 | 24 | 28 | null | null |
mcschroeder/ghc | compiler/types/Type.hs | bsd-3-clause | eqRelRole ReprEq = Representational | 35 | eqRelRole ReprEq = Representational | 35 | eqRelRole ReprEq = Representational | 35 | false | false | 1 | 5 | 3 | 13 | 4 | 9 | null | null |
tanaka-de-silva/bears-io | app/FreeMonadExample.hs | bsd-3-clause | fromTable :: (Ord k, MonadFree (QueryF k v) f) => TableMeta k v -> GroupBy k f v
fromTable (TableMeta ref keys) = GroupBy
{ _keys = Some keys
, _lookup = lookupTable ref
} | 185 | fromTable :: (Ord k, MonadFree (QueryF k v) f) => TableMeta k v -> GroupBy k f v
fromTable (TableMeta ref keys) = GroupBy
{ _keys = Some keys
, _lookup = lookupTable ref
} | 185 | fromTable (TableMeta ref keys) = GroupBy
{ _keys = Some keys
, _lookup = lookupTable ref
} | 104 | false | true | 0 | 8 | 48 | 83 | 42 | 41 | null | null |
Frefreak/hnem | src/Operations.hs | bsd-3-clause | getMusicsUrl :: Int -> Int -> (Log -> [AlbumDetail]) -> ST.StateT Log IO [(String, Scientific)]
getMusicsUrl start total func = do
opt <- ST.gets _option
ad <- ST.gets func
let picks = map (\n -> snd $ ad !! n) [start..total]
r <- lift $ postToServer queryMusicUrl opt (v picks)
return $ r ^.. responseBody . key "data"
. _Array . traverse . to ( \o ->
(unpack $ o ^. key "url" . _String, o ^?! key "id" . _Number)
) where
v picks = object ["ids" .= Array (fromList (Number <$> picks)),
"br" .= brH] | 591 | getMusicsUrl :: Int -> Int -> (Log -> [AlbumDetail]) -> ST.StateT Log IO [(String, Scientific)]
getMusicsUrl start total func = do
opt <- ST.gets _option
ad <- ST.gets func
let picks = map (\n -> snd $ ad !! n) [start..total]
r <- lift $ postToServer queryMusicUrl opt (v picks)
return $ r ^.. responseBody . key "data"
. _Array . traverse . to ( \o ->
(unpack $ o ^. key "url" . _String, o ^?! key "id" . _Number)
) where
v picks = object ["ids" .= Array (fromList (Number <$> picks)),
"br" .= brH] | 591 | getMusicsUrl start total func = do
opt <- ST.gets _option
ad <- ST.gets func
let picks = map (\n -> snd $ ad !! n) [start..total]
r <- lift $ postToServer queryMusicUrl opt (v picks)
return $ r ^.. responseBody . key "data"
. _Array . traverse . to ( \o ->
(unpack $ o ^. key "url" . _String, o ^?! key "id" . _Number)
) where
v picks = object ["ids" .= Array (fromList (Number <$> picks)),
"br" .= brH] | 495 | false | true | 0 | 14 | 188 | 257 | 128 | 129 | null | null |
ygorshenin/icfp2016 | core/Geom.hs | bsd-3-clause | sidePointLine :: (Fractional a, Ord a) => Point a -> Line a -> Integer
sidePointLine p (Line o d) | cr == 0 = 0
| cr > 0 = 1
| otherwise = -1
where cr = (p `sub` o) `cross` d | 237 | sidePointLine :: (Fractional a, Ord a) => Point a -> Line a -> Integer
sidePointLine p (Line o d) | cr == 0 = 0
| cr > 0 = 1
| otherwise = -1
where cr = (p `sub` o) `cross` d | 237 | sidePointLine p (Line o d) | cr == 0 = 0
| cr > 0 = 1
| otherwise = -1
where cr = (p `sub` o) `cross` d | 166 | false | true | 0 | 8 | 105 | 110 | 55 | 55 | null | null |
noughtmare/yi | yi-keymap-vim/src/Yi/Keymap/Vim/Digraph.hs | gpl-2.0 | -- GREEK SMALL LETTER PI
switch 'r' '*' = '\x03C1' | 50 | switch 'r' '*' = '\x03C1' | 25 | switch 'r' '*' = '\x03C1' | 25 | true | false | 0 | 5 | 9 | 12 | 6 | 6 | null | null |
Chiel92/ants | simulation/ReadInstructions.hs | gpl-2.0 | readInstructions :: String -> IO AntInstructions
readInstructions antFile =
do input <- readFile antFile
let list = map (fst . stringToInstruction) (lines (map toUpper input))
len = length list
arr <- newListArray (0, len-1) list
if len > 10000
then error ("Too many states: " ++ show antFile)
else return arr | 358 | readInstructions :: String -> IO AntInstructions
readInstructions antFile =
do input <- readFile antFile
let list = map (fst . stringToInstruction) (lines (map toUpper input))
len = length list
arr <- newListArray (0, len-1) list
if len > 10000
then error ("Too many states: " ++ show antFile)
else return arr | 358 | readInstructions antFile =
do input <- readFile antFile
let list = map (fst . stringToInstruction) (lines (map toUpper input))
len = length list
arr <- newListArray (0, len-1) list
if len > 10000
then error ("Too many states: " ++ show antFile)
else return arr | 309 | false | true | 0 | 14 | 99 | 127 | 61 | 66 | null | null |
acowley/DistanceTransform | src/DistanceTransform/Internal/Indexer.hs | bsd-3-clause | -- | Computes the stride between rows at the currently focused
-- dimension. This involves stepping over the rest of the current row
-- along all nested dimensions.
zipStride (Zip _ x rs) = product $ x:rs | 204 | zipStride (Zip _ x rs) = product $ x:rs | 39 | zipStride (Zip _ x rs) = product $ x:rs | 39 | true | false | 0 | 7 | 36 | 30 | 16 | 14 | null | null |
urbanslug/ghc | compiler/typecheck/TcRnTypes.hs | bsd-3-clause | pprPECategory :: PromotionErr -> SDoc
pprPECategory ClassPE = ptext (sLit "Class") | 87 | pprPECategory :: PromotionErr -> SDoc
pprPECategory ClassPE = ptext (sLit "Class") | 87 | pprPECategory ClassPE = ptext (sLit "Class") | 49 | false | true | 0 | 7 | 15 | 27 | 13 | 14 | null | null |
ekmett/wxHaskell | wxcore/src/haskell/Graphics/UI/WXCore/WxcDefs.hs | lgpl-2.1 | wxEXEC_MAKE_GROUP_LEADER :: BitFlag
wxEXEC_MAKE_GROUP_LEADER = 4 | 64 | wxEXEC_MAKE_GROUP_LEADER :: BitFlag
wxEXEC_MAKE_GROUP_LEADER = 4 | 64 | wxEXEC_MAKE_GROUP_LEADER = 4 | 28 | false | true | 0 | 6 | 5 | 18 | 7 | 11 | null | null |
urbanslug/ghc | compiler/llvmGen/Llvm/PpLlvm.hs | bsd-3-clause | newLine :: SDoc
newLine = empty | 31 | newLine :: SDoc
newLine = empty | 31 | newLine = empty | 15 | false | true | 0 | 6 | 5 | 18 | 7 | 11 | null | null |
leshchevds/ganeti | test/hs/htest.hs | bsd-2-clause | -- | Our default test options, overring the built-in test-framework
-- ones (but not the supplied command line parameters).
defOpts :: TestOptions
defOpts = TestOptions
{ topt_seed = Nothing
, topt_maximum_generated_tests = Just 500
, topt_maximum_unsuitable_generated_tests = Just 5000
, topt_maximum_test_size = Nothing
, topt_maximum_test_depth = Nothing
, topt_timeout = Nothing
} | 534 | defOpts :: TestOptions
defOpts = TestOptions
{ topt_seed = Nothing
, topt_maximum_generated_tests = Just 500
, topt_maximum_unsuitable_generated_tests = Just 5000
, topt_maximum_test_size = Nothing
, topt_maximum_test_depth = Nothing
, topt_timeout = Nothing
} | 410 | defOpts = TestOptions
{ topt_seed = Nothing
, topt_maximum_generated_tests = Just 500
, topt_maximum_unsuitable_generated_tests = Just 5000
, topt_maximum_test_size = Nothing
, topt_maximum_test_depth = Nothing
, topt_timeout = Nothing
} | 387 | true | true | 0 | 7 | 201 | 57 | 35 | 22 | null | null |
joelburget/frankenstein | src/Planetary/Core/Typecheck.hs | bsd-3-clause | lookupCommandTy :: Cid -> Row -> TcM' CommandDeclarationI
lookupCommandTy uid row
= asks (^? typingInterfaces . ix uid . commands . ix row)
>>= (?? LookupCommandTy) | 170 | lookupCommandTy :: Cid -> Row -> TcM' CommandDeclarationI
lookupCommandTy uid row
= asks (^? typingInterfaces . ix uid . commands . ix row)
>>= (?? LookupCommandTy) | 170 | lookupCommandTy uid row
= asks (^? typingInterfaces . ix uid . commands . ix row)
>>= (?? LookupCommandTy) | 112 | false | true | 2 | 10 | 31 | 63 | 31 | 32 | null | null |
atomb/dalvik | Dalvik/Parser.hs | bsd-3-clause | parseByteCode :: Word8 -> Get DebugInstruction
parseByteCode bc
| fromIntegral bc < fromEnum DBG_FIRST_SPECIAL =
case toEnum (fromIntegral bc) of
DBG_END_SEQUENCE -> return EndSequence
DBG_ADVANCE_PC -> AdvancePC <$> getULEB128
DBG_ADVANCE_LINE -> AdvanceLine <$> getSLEB128
DBG_START_LOCAL ->
StartLocal <$> getULEB128 <*> getULEB128p1 <*> getULEB128p1
DBG_START_LOCAL_EXTENDED ->
StartLocalExt <$> getULEB128 <*> getULEB128p1
<*> getULEB128p1 <*> getULEB128p1
DBG_END_LOCAL -> EndLocal <$> getULEB128
DBG_RESTART_LOCAL -> RestartLocal <$> getULEB128
DBG_SET_PROLOGUE_END -> return SetPrologueEnd
DBG_SET_EPILOGUE_BEGIN -> return SetEpilogueBegin
DBG_SET_FILE -> SetFile <$> getULEB128p1
_ -> fail "internal: invalid debug byte code"
| otherwise = return (SpecialAdjust bc) | 886 | parseByteCode :: Word8 -> Get DebugInstruction
parseByteCode bc
| fromIntegral bc < fromEnum DBG_FIRST_SPECIAL =
case toEnum (fromIntegral bc) of
DBG_END_SEQUENCE -> return EndSequence
DBG_ADVANCE_PC -> AdvancePC <$> getULEB128
DBG_ADVANCE_LINE -> AdvanceLine <$> getSLEB128
DBG_START_LOCAL ->
StartLocal <$> getULEB128 <*> getULEB128p1 <*> getULEB128p1
DBG_START_LOCAL_EXTENDED ->
StartLocalExt <$> getULEB128 <*> getULEB128p1
<*> getULEB128p1 <*> getULEB128p1
DBG_END_LOCAL -> EndLocal <$> getULEB128
DBG_RESTART_LOCAL -> RestartLocal <$> getULEB128
DBG_SET_PROLOGUE_END -> return SetPrologueEnd
DBG_SET_EPILOGUE_BEGIN -> return SetEpilogueBegin
DBG_SET_FILE -> SetFile <$> getULEB128p1
_ -> fail "internal: invalid debug byte code"
| otherwise = return (SpecialAdjust bc) | 886 | parseByteCode bc
| fromIntegral bc < fromEnum DBG_FIRST_SPECIAL =
case toEnum (fromIntegral bc) of
DBG_END_SEQUENCE -> return EndSequence
DBG_ADVANCE_PC -> AdvancePC <$> getULEB128
DBG_ADVANCE_LINE -> AdvanceLine <$> getSLEB128
DBG_START_LOCAL ->
StartLocal <$> getULEB128 <*> getULEB128p1 <*> getULEB128p1
DBG_START_LOCAL_EXTENDED ->
StartLocalExt <$> getULEB128 <*> getULEB128p1
<*> getULEB128p1 <*> getULEB128p1
DBG_END_LOCAL -> EndLocal <$> getULEB128
DBG_RESTART_LOCAL -> RestartLocal <$> getULEB128
DBG_SET_PROLOGUE_END -> return SetPrologueEnd
DBG_SET_EPILOGUE_BEGIN -> return SetEpilogueBegin
DBG_SET_FILE -> SetFile <$> getULEB128p1
_ -> fail "internal: invalid debug byte code"
| otherwise = return (SpecialAdjust bc) | 839 | false | true | 1 | 12 | 202 | 193 | 91 | 102 | null | null |
mainland/nikola | src/Data/Array/Nikola/Backend/C/Codegen.hs | bsd-3-clause | compileFun :: Dialect
-> Context
-> Context
-> String
-> [(Var, Type)]
-> Type
-> C CExp
-> C CExp
compileFun dialect callerCtx calleeCtx fname vtaus tau_ret mbody = do
(ps, body) <- inNewFunction $
extendParams vtaus $ do
cresult <- mbody
if returnResultsByReference dialect callerCtx calleeCtx tau_ret
then do cvresult <- toCResultParam (dialect, callerCtx, calleeCtx) tau_ret
assignC cvresult cresult
else addStm [cstm|return $cresult;|]
case (dialect, callerCtx, calleeCtx) of
(CUDA, Host, Host) ->
addGlobal [cedeclCU|typename cudaError_t $id:fname($params:ps) { $items:body }|]
(CUDA, Host, Kernel) ->
addGlobal [cedeclCU|extern "C" __global__ void $id:fname($params:ps) { $items:body }|]
(CUDA, Kernel, Kernel) ->
addGlobal [cedeclCU|__device__ $ty:ctau_ret $id:fname($params:ps) { $items:body }|]
(_, Host, Host) ->
addGlobal [cedecl|$ty:ctau_ret $id:fname($params:ps) { $items:body }|]
(_, Host, Kernel) ->
addGlobal [cedecl|void $id:fname($params:ps) { $items:body }|]
(_, Kernel, Kernel) ->
addGlobal [cedecl|$ty:ctau_ret $id:fname($params:ps) { $items:body } |]
(_, Kernel, Host) ->
fail "Cannot call host function from device"
return $ FunCE [cexp|$id:fname|]
where
ctau_ret :: C.Type
ctau_ret = toCType tau_ret | 1,582 | compileFun :: Dialect
-> Context
-> Context
-> String
-> [(Var, Type)]
-> Type
-> C CExp
-> C CExp
compileFun dialect callerCtx calleeCtx fname vtaus tau_ret mbody = do
(ps, body) <- inNewFunction $
extendParams vtaus $ do
cresult <- mbody
if returnResultsByReference dialect callerCtx calleeCtx tau_ret
then do cvresult <- toCResultParam (dialect, callerCtx, calleeCtx) tau_ret
assignC cvresult cresult
else addStm [cstm|return $cresult;|]
case (dialect, callerCtx, calleeCtx) of
(CUDA, Host, Host) ->
addGlobal [cedeclCU|typename cudaError_t $id:fname($params:ps) { $items:body }|]
(CUDA, Host, Kernel) ->
addGlobal [cedeclCU|extern "C" __global__ void $id:fname($params:ps) { $items:body }|]
(CUDA, Kernel, Kernel) ->
addGlobal [cedeclCU|__device__ $ty:ctau_ret $id:fname($params:ps) { $items:body }|]
(_, Host, Host) ->
addGlobal [cedecl|$ty:ctau_ret $id:fname($params:ps) { $items:body }|]
(_, Host, Kernel) ->
addGlobal [cedecl|void $id:fname($params:ps) { $items:body }|]
(_, Kernel, Kernel) ->
addGlobal [cedecl|$ty:ctau_ret $id:fname($params:ps) { $items:body } |]
(_, Kernel, Host) ->
fail "Cannot call host function from device"
return $ FunCE [cexp|$id:fname|]
where
ctau_ret :: C.Type
ctau_ret = toCType tau_ret | 1,582 | compileFun dialect callerCtx calleeCtx fname vtaus tau_ret mbody = do
(ps, body) <- inNewFunction $
extendParams vtaus $ do
cresult <- mbody
if returnResultsByReference dialect callerCtx calleeCtx tau_ret
then do cvresult <- toCResultParam (dialect, callerCtx, calleeCtx) tau_ret
assignC cvresult cresult
else addStm [cstm|return $cresult;|]
case (dialect, callerCtx, calleeCtx) of
(CUDA, Host, Host) ->
addGlobal [cedeclCU|typename cudaError_t $id:fname($params:ps) { $items:body }|]
(CUDA, Host, Kernel) ->
addGlobal [cedeclCU|extern "C" __global__ void $id:fname($params:ps) { $items:body }|]
(CUDA, Kernel, Kernel) ->
addGlobal [cedeclCU|__device__ $ty:ctau_ret $id:fname($params:ps) { $items:body }|]
(_, Host, Host) ->
addGlobal [cedecl|$ty:ctau_ret $id:fname($params:ps) { $items:body }|]
(_, Host, Kernel) ->
addGlobal [cedecl|void $id:fname($params:ps) { $items:body }|]
(_, Kernel, Kernel) ->
addGlobal [cedecl|$ty:ctau_ret $id:fname($params:ps) { $items:body } |]
(_, Kernel, Host) ->
fail "Cannot call host function from device"
return $ FunCE [cexp|$id:fname|]
where
ctau_ret :: C.Type
ctau_ret = toCType tau_ret | 1,406 | false | true | 0 | 16 | 515 | 354 | 199 | 155 | null | null |
Mahdi89/eTeak | src/Teak.hs | bsd-3-clause | makeMerge pos m signals = do
width <- nwGetLinkWidth $ head signals
link <- nwNewLinkRef width
m pos signals link
return link | 157 | makeMerge pos m signals = do
width <- nwGetLinkWidth $ head signals
link <- nwNewLinkRef width
m pos signals link
return link | 157 | makeMerge pos m signals = do
width <- nwGetLinkWidth $ head signals
link <- nwNewLinkRef width
m pos signals link
return link | 157 | false | false | 0 | 9 | 53 | 53 | 22 | 31 | null | null |
dino-r/TexErupter | src/ParseHTML.hs | mit | extractTex :: [Tag] -> [String]
extractTex [] = [] | 50 | extractTex :: [Tag] -> [String]
extractTex [] = [] | 50 | extractTex [] = [] | 18 | false | true | 0 | 6 | 8 | 28 | 15 | 13 | null | null |
jtdaugherty/vty-ui-builder-xml | src/Graphics/Vty/Widgets/Builder/Reader/XML/TH.hs | bsd-3-clause | xmlUiFile :: QuasiQuoter
xmlUiFile = quoteFile xmlUi | 52 | xmlUiFile :: QuasiQuoter
xmlUiFile = quoteFile xmlUi | 52 | xmlUiFile = quoteFile xmlUi | 27 | false | true | 0 | 5 | 6 | 14 | 7 | 7 | null | null |
flowbox-public/accelerate-cuda | Data/Array/Accelerate/CUDA/CodeGen/Type.hs | bsd-3-clause | cIntegralType (TypeCLong _) = [cty|long int|] | 47 | cIntegralType (TypeCLong _) = [cty|long int|] | 47 | cIntegralType (TypeCLong _) = [cty|long int|] | 47 | false | false | 0 | 7 | 7 | 19 | 11 | 8 | null | null |
keera-studios/hsQt | Qtc/Enums/Gui/QSizePolicy.hs | bsd-2-clause | eDefaultType :: ControlType
eDefaultType
= ieControlType $ 1 | 62 | eDefaultType :: ControlType
eDefaultType
= ieControlType $ 1 | 62 | eDefaultType
= ieControlType $ 1 | 34 | false | true | 2 | 6 | 9 | 23 | 9 | 14 | null | null |
Fedjmike/ngen | german.hs | gpl-3.0 | nflect = addSuffix "er"
em | 26 | erInflect = addSuffix "er" | 26 | erInflect = addSuffix "er" | 26 | false | false | 1 | 5 | 4 | 16 | 5 | 11 | null | null |
nevrenato/Hets_Fork | Comorphisms/test/sublogicGraph.hs | gpl-2.0 | testInj_mapSublogic :: (Comorphism cid
lid1 sublogics1 basic_spec1 sentence1 symb_items1 symb_map_items1
sign1 morphism1 symbol1 raw_symbol1 proof_tree1
lid2 sublogics2 basic_spec2 sentence2 symb_items2 symb_map_items2
sign2 morphism2 symbol2 raw_symbol2 proof_tree2)
=> cid -> Bool
testInj_mapSublogic cid =
all (`elem` all_sublogics (targetLogic cid))
$ mapMaybe (mapSublogic cid) $ all_sublogics $ sourceLogic cid | 507 | testInj_mapSublogic :: (Comorphism cid
lid1 sublogics1 basic_spec1 sentence1 symb_items1 symb_map_items1
sign1 morphism1 symbol1 raw_symbol1 proof_tree1
lid2 sublogics2 basic_spec2 sentence2 symb_items2 symb_map_items2
sign2 morphism2 symbol2 raw_symbol2 proof_tree2)
=> cid -> Bool
testInj_mapSublogic cid =
all (`elem` all_sublogics (targetLogic cid))
$ mapMaybe (mapSublogic cid) $ all_sublogics $ sourceLogic cid | 507 | testInj_mapSublogic cid =
all (`elem` all_sublogics (targetLogic cid))
$ mapMaybe (mapSublogic cid) $ all_sublogics $ sourceLogic cid | 149 | false | true | 0 | 12 | 137 | 113 | 57 | 56 | null | null |
d-strickland/dailyprogrammer | haskell/src/DailyProgrammer/BowlingScore.hs | gpl-3.0 | frameScore StrikeFrame StrikeFrame (Frame r1 _) = 20 + rollScore r1 | 67 | frameScore StrikeFrame StrikeFrame (Frame r1 _) = 20 + rollScore r1 | 67 | frameScore StrikeFrame StrikeFrame (Frame r1 _) = 20 + rollScore r1 | 67 | false | false | 0 | 7 | 10 | 31 | 13 | 18 | null | null |
avh4/elm-format | elm-format-lib/src/Parse/Whitespace.hs | bsd-3-clause | docComment :: IParser String
docComment =
do _ <- try (string "{-|")
_ <- many (string " ")
closeComment False | 125 | docComment :: IParser String
docComment =
do _ <- try (string "{-|")
_ <- many (string " ")
closeComment False | 125 | docComment =
do _ <- try (string "{-|")
_ <- many (string " ")
closeComment False | 96 | false | true | 0 | 10 | 34 | 52 | 23 | 29 | null | null |
mzini/gubs | src/GUBS/Term.hs | mit | funsDL Const {} = id | 20 | funsDL Const {} = id | 20 | funsDL Const {} = id | 20 | false | false | 0 | 6 | 4 | 13 | 6 | 7 | null | null |
daleooo/barrelfish | hake/RuleDefs.hs | mit | -- Standard convention is that human generated assembler is .S, machine generated is .s
assemblerFilePath :: Options -> String -> String
assemblerFilePath opts src = (optSuffix opts) ./. ((removeSuffix src) ++ ".s") | 215 | assemblerFilePath :: Options -> String -> String
assemblerFilePath opts src = (optSuffix opts) ./. ((removeSuffix src) ++ ".s") | 127 | assemblerFilePath opts src = (optSuffix opts) ./. ((removeSuffix src) ++ ".s") | 78 | true | true | 0 | 9 | 31 | 48 | 25 | 23 | null | null |
dzeban/haskell-exercises | hw4/HW04.hs | mit | fun2 n
| even n = n + fun2 (n `div` 2)
| otherwise = fun2 (3 * n + 1) | 81 | fun2 n
| even n = n + fun2 (n `div` 2)
| otherwise = fun2 (3 * n + 1) | 81 | fun2 n
| even n = n + fun2 (n `div` 2)
| otherwise = fun2 (3 * n + 1) | 81 | false | false | 0 | 9 | 32 | 57 | 27 | 30 | null | null |
ctford/Idris-Elba-dev | src/Idris/ElabTerm.hs | bsd-3-clause | reflectBinder (Guess x y)
= reflCall "Guess" [Var (reflm "TT"), reflect x, reflect y] | 88 | reflectBinder (Guess x y)
= reflCall "Guess" [Var (reflm "TT"), reflect x, reflect y] | 88 | reflectBinder (Guess x y)
= reflCall "Guess" [Var (reflm "TT"), reflect x, reflect y] | 88 | false | false | 0 | 9 | 16 | 46 | 22 | 24 | null | null |
kvelicka/frag | src/BSP.hs | gpl-2.0 | -- Stores the faces for the level
kFaces :: Int
kFaces = 13 | 61 | kFaces :: Int
kFaces = 13 | 25 | kFaces = 13 | 11 | true | true | 0 | 6 | 14 | 19 | 8 | 11 | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.