mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
6a05e40a37
Summary: This diff implements volume intervals in Duckling. It follows the AmountofMoney and Quantity modules in doing so. I had to make one crucial choice here -- defining the core Volume data type -- and whether the attribute "Unit" was optional (i.e. "Maybe") or not. Like in Quantity and unlike in AmountOfMoney, I made it optional, so that latent volumes can be supported down the line in the codebase. I also wrote the codebase to be more modular, such that future developers only need to add regular expressions rather than functions for any language. For instance, developers can simply define a fraction (e.g. "eighth") at the start of the file, and new rules will be generated automatically; rather than requiring the developer to create an entirely new rule, as previously. The only (partial) exceptions were in the Arabic and Russian Rules files, where the language structure is more difficult and so I cannot fully implement this. Developers for those two languages may need to write new rules, as before. Reviewed By: patapizza Differential Revision: D9043117 fbshipit-source-id: f08de4f167596b5b32d12a79268b8ab92c099b22
55 lines
1.3 KiB
Haskell
55 lines
1.3 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 OverloadedStrings #-}
|
|
|
|
module Duckling.Volume.RO.Corpus
|
|
( corpus
|
|
) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
|
|
import Duckling.Locale
|
|
import Duckling.Resolve
|
|
import Duckling.Volume.Types
|
|
import Duckling.Testing.Types
|
|
|
|
corpus :: Corpus
|
|
corpus = (testContext {locale = makeLocale RO Nothing}, testOptions, allExamples)
|
|
|
|
allExamples :: [Example]
|
|
allExamples = concat
|
|
[ examples (simple Millilitre 250)
|
|
[ "250 mililitri"
|
|
, "250 de mililitri"
|
|
, "250ml"
|
|
, "250 ml"
|
|
, "250 de ml"
|
|
]
|
|
, examples (simple Litre 2)
|
|
[ "2 litri"
|
|
, "2 l"
|
|
, "2l"
|
|
]
|
|
, examples (simple Gallon 3)
|
|
[ "3 galoane"
|
|
, "3 gal"
|
|
]
|
|
, examples (simple Hectolitre 3)
|
|
[ "3 hectolitri"
|
|
]
|
|
, examples (simple Litre 0.5)
|
|
[ "jumatate de litru"
|
|
, "jumătate de litru"
|
|
]
|
|
, examples (simple Gallon 20)
|
|
[ "douazeci de galoane"
|
|
]
|
|
]
|