duckling/Duckling/Numeral/ID/Corpus.hs
Julien Odent 54c9448fba Rename Number to Numeral
Summary: For consistency with the dimension name.

Reviewed By: JonCoens

Differential Revision: D4722216

fbshipit-source-id: 82c56d3
2017-03-16 13:49:16 -07:00

119 lines
2.9 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.Numeral.ID.Corpus
( corpus ) where
import Prelude
import Data.String
import Duckling.Lang
import Duckling.Numeral.Types
import Duckling.Resolve
import Duckling.Testing.Types
corpus :: Corpus
corpus = (testContext {lang = ID}, allExamples)
allExamples :: [Example]
allExamples = concat
[ examples (NumeralValue 0)
[ "0"
, "nol"
, "kosong"
]
, examples (NumeralValue 1)
[ "1"
, "satu"
]
, examples (NumeralValue 2)
[ "2"
, "Dua"
]
, examples (NumeralValue 10)
[ "10"
, "sepuluh"
]
, examples (NumeralValue 33)
[ "33"
, "tiga puluh tiga"
, "0033"
]
, examples (NumeralValue 100)
[ "100"
, "seratus"
]
, examples (NumeralValue 17)
[ "17"
, "tujuh belas"
]
, examples (NumeralValue 28)
[ "28"
, "dua puluh delapan"
]
, examples (NumeralValue 1.1)
[ "1,1"
, "1,10"
, "01,10"
]
, examples (NumeralValue 0.77)
[ "0,77"
, ",77"
]
, examples (NumeralValue 100000)
[ "100.000"
, "100000"
, "100K"
, "100k"
]
, examples (NumeralValue 3000000)
[ "3M"
, "3000K"
, "3000000"
, "3.000.000"
]
, examples (NumeralValue 1200000)
[ "1.200.000"
, "1200000"
, "1,2M"
, "1200K"
, ",0012G"
]
, examples (NumeralValue (-1200000))
[ "- 1.200.000"
, "-1200000"
, "minus 1.200.000"
, "negatif 1200000"
, "-1,2M"
, "-1200K"
, "-,0012G"
, "-0,0012G"
]
, examples (NumeralValue 5000)
[ "5 ribu"
, "lima ribu"
]
, examples (NumeralValue 122)
[ "seratus dua puluh dua"
]
, examples (NumeralValue 200000)
[ "dua ratus ribu"
]
, examples (NumeralValue 10011)
[ "sepuluh ribu sebelas"
]
, examples (NumeralValue 721012)
[ "tujuh ratus dua puluh satu ribu dua belas"
]
, examples (NumeralValue 31256721)
[ "tiga puluh satu juta dua ratus lima puluh enam ribu tujuh ratus dua puluh satu"
]
]