mirror of
https://github.com/facebook/duckling.git
synced 2024-12-01 08:19:36 +03:00
12a726aee7
Summary: This adds support for greek times. There are still some issues with expressions of the form: ``` 9:30 - 11:00 την πέμπτη ``` Where `11:00 την πέμπτη` is parsed first (as 11:30 on Thu), instead of prioritizing `9:30 - 11:00` as the training data suggests. These tests are for the moment excluded from the corpus. Reviewed By: patapizza Differential Revision: D6376271 fbshipit-source-id: 2f31e058fb88386429070e3b51cd33f93b9c5936
48 lines
1.4 KiB
Haskell
48 lines
1.4 KiB
Haskell
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- This source code is licensed under the BSD-style license found in the
|
|
-- LICENSE file in the root directory of this source tree. An additional grant
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
{-# LANGUAGE GADTs #-}
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
module Duckling.Rules.EL
|
|
( defaultRules
|
|
, langRules
|
|
, localeRules
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Locale
|
|
import Duckling.Types
|
|
import qualified Duckling.Duration.EL.Rules as Duration
|
|
import qualified Duckling.Numeral.EL.Rules as Numeral
|
|
import qualified Duckling.Ordinal.EL.Rules as Ordinal
|
|
import qualified Duckling.Time.EL.Rules as Time
|
|
import qualified Duckling.TimeGrain.EL.Rules as TimeGrain
|
|
|
|
defaultRules :: Some Dimension -> [Rule]
|
|
defaultRules = langRules
|
|
|
|
localeRules :: Region -> Some Dimension -> [Rule]
|
|
localeRules _ _ = []
|
|
|
|
langRules :: Some Dimension -> [Rule]
|
|
langRules (This AmountOfMoney) = []
|
|
langRules (This Distance) = []
|
|
langRules (This Duration) = Duration.rules
|
|
langRules (This Email) = []
|
|
langRules (This Numeral) = Numeral.rules
|
|
langRules (This Ordinal) = Ordinal.rules
|
|
langRules (This PhoneNumber) = []
|
|
langRules (This Quantity) = []
|
|
langRules (This RegexMatch) = []
|
|
langRules (This Temperature) = []
|
|
langRules (This Time) = Time.rules
|
|
langRules (This TimeGrain) = TimeGrain.rules
|
|
langRules (This Url) = []
|
|
langRules (This Volume) = []
|