mirror of
https://github.com/facebook/duckling.git
synced 2024-12-02 22:46:17 +03:00
28cb5ebd2a
Summary: This pull request is to add support for Telugu language (Numerical Dimension) to Duckling Pull Request resolved: https://github.com/facebook/duckling/pull/470 Differential Revision: D25546700 Pulled By: chessai fbshipit-source-id: 1d88ee27da8a577a4a79ff31be8cb55ed6444c4e
124 lines
3.1 KiB
Haskell
124 lines
3.1 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.
|
|
|
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
module Duckling.Numeral.TE.Corpus
|
|
( corpus
|
|
) where
|
|
|
|
import Data.String
|
|
import Prelude
|
|
|
|
import Duckling.Locale
|
|
import Duckling.Numeral.Types
|
|
import Duckling.Resolve
|
|
import Duckling.Testing.Types
|
|
|
|
corpus :: Corpus
|
|
corpus = (testContext {locale = makeLocale TE Nothing}, testOptions, allExamples)
|
|
|
|
allExamples :: [Example]
|
|
allExamples = concat
|
|
[ examples (NumeralValue 0)
|
|
[ "సున్న"
|
|
]
|
|
, examples (NumeralValue 1)
|
|
[ "ఒకటి"
|
|
]
|
|
, examples (NumeralValue 2)
|
|
[ "రెండు"
|
|
]
|
|
, examples (NumeralValue 3)
|
|
[ "మూడు"
|
|
]
|
|
, examples (NumeralValue 4)
|
|
[ "నాలుగు"
|
|
]
|
|
, examples (NumeralValue 5)
|
|
[ "ఐదు"
|
|
]
|
|
, examples (NumeralValue 6)
|
|
[ "ఆరు"
|
|
]
|
|
, examples (NumeralValue 7)
|
|
[ "ఏడు"
|
|
]
|
|
, examples (NumeralValue 8)
|
|
[ "ఎనిమిది"
|
|
]
|
|
, examples (NumeralValue 9)
|
|
[ "తొమ్మిది"
|
|
]
|
|
, examples (NumeralValue 10)
|
|
[ "పది"
|
|
]
|
|
, examples (NumeralValue 11)
|
|
[ "పదకొండు"
|
|
]
|
|
, examples (NumeralValue 12)
|
|
[ "పన్నెండు"
|
|
]
|
|
, examples (NumeralValue 13)
|
|
[ "పదమూడు"
|
|
]
|
|
, examples (NumeralValue 14)
|
|
[ "పద్నాల్గు"
|
|
]
|
|
, examples (NumeralValue 15)
|
|
[ "పదిహేను"
|
|
]
|
|
, examples (NumeralValue 16)
|
|
[ "పదహారు"
|
|
]
|
|
, examples (NumeralValue 17)
|
|
[ "పదిహేడు"
|
|
]
|
|
, examples (NumeralValue 18)
|
|
[ "పద్దెనిమిది"
|
|
]
|
|
, examples (NumeralValue 19)
|
|
[ "పంతొమ్మిది"
|
|
]
|
|
, examples (NumeralValue 20)
|
|
[ "ఇరవై"
|
|
]
|
|
, examples (NumeralValue 30)
|
|
[ "ముప్పై"
|
|
]
|
|
, examples (NumeralValue 40)
|
|
[ "నలబై"
|
|
]
|
|
, examples (NumeralValue 50)
|
|
[ "యాబై"
|
|
]
|
|
, examples (NumeralValue 60)
|
|
[ "అరవై"
|
|
]
|
|
, examples (NumeralValue 70)
|
|
[ "డెబ్బై"
|
|
]
|
|
, examples (NumeralValue 80)
|
|
[ "ఎనబై"
|
|
]
|
|
, examples (NumeralValue 90)
|
|
[ "తొంబై"
|
|
]
|
|
, examples (NumeralValue 100)
|
|
[ "వంద"
|
|
]
|
|
, examples (NumeralValue 1000)
|
|
[ "వెయ్యి"
|
|
]
|
|
, examples (NumeralValue 100000)
|
|
[ "లక్ష"
|
|
]
|
|
, examples (NumeralValue 10000000)
|
|
[ "కోటి"
|
|
]
|
|
]
|