Number Words will build numeric expressions for natural numbers, percentages and fractions. For example:
0.231
will be converted to less than a quarter
,102
to over one hundred
.Supports multiple languages.
The implementation is based on ideas expressed in Generating Numerical Approximations.
Numerical approximations are all over texts based on the data:
- Water temperature is below 10C (input data would be 9.53C)
- A third of students failed the exam (34.3%)
- Q2 sales were over 1M$ (1,002,184 $)
Numeric data providing information about some metrics of interest is often a number with the precision we do not need. If we see 9.382%, it is likely that the information we need is - almost 10% - instead of the precise number. Furthermore, different approximation strategies are often used in the report involving the same metrics. At the beginning of the report we might say almost 10% or "below 10%" while later in the text, we might choose a more precise expression - around 9.4%.
Number Words will help you build such numerical approximations. Making them available for the text generation systems.
Number Words uses the following abstractions:
9.53C
, or the percentage 34.3%
.1/4
scale, will form approximation steps starting at 0
then 1/4
, 1/2
, 3/4
ending with 1
;1/10
scale will express percentages with one precision point;10
are useful for natural number approximation. The 10
will round to tens: 1007
-> 1010
, the 100
to hundreds: 1003
-> 1000
, and so on.The result of actual value approximation to a given scale provides:
9.5
is below given value of 10
.
Actual Value of 101
is over given value of 100
.2666
is Two thousand six hundred sixty six
.0.25
is a favorite number in that that it has the name - a quarter
.A full approximation result returns three such approximation data structures for a given value which is:
Numeric approximation has two functionality points which are language dependent
Currently supported languages:
Number Words exposes approximation functionality through approximations
function which takes on the following parameters:
language
- :de
or :en
actual-value
- the number to approximatescale
- at which the approximation is to be performed.Number Words
is available as a Maven artifact from Clojars.
Leiningen
[ai.tokenmill.numberwords/numberwords "1.0.2"]
deps.edn
ai.tokenmill.numberwords/numberwords {:mvn/version "1.0.2"}
Usage example:
(require '[numberwords.core :as nw])
(nw/approximations :en 0.258 1/4)
=>
#:numwords{:around
#:numwords{:hedges #{"approximately" "about" "around"},
:text "zero point two five",
:given-value 1/4,
:favorite-number #{"a quarter"}},
:more-than
#:numwords{:hedges #{"over" "more than"},
:text "zero point two five",
:given-value 1/4,
:favorite-number #{"a quarter"}},
:less-than
#:numwords{:hedges #{"nearly" "under" "less than"},
:text "zero point five",
:given-value 1/2,
:favorite-number #{"a half"}}}
Get a jar by building it with
clojure -A:uberjar
Or as a Maven dependency
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
<dependency>
<groupId>ai.tokenmill.numberwords</groupId>
<artifactId>numberwords</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
Usage example:
import ai.tokenmill.numberwords.NumberWords;
NumberWords nw = new NumberWords();
nw.approximations("en", 1.22, 0.1);
Hedges, favorite numbers can be modified and new languages added via changes to a configuration file - resources/numwords.edn
{;;Configuration is structured by the language
:en {
;;Hedges section specifies which words are associated with given actual to given value relations
:hedges {:equal #{"exactly"}
:around #{"around" "approximately" "about"}
:more #{"more than" "over"}
:less #{"less than" "under" "nearly"}}
;;Favourite numbers map a special number with its textual expressions
:favorite-numbers {1/4 #{"a quarter" "a fourth"}
1/2 #{"a half"}}}}
Copyright © 2020 TokenMill UAB.
Distributed under the The Apache License, Version 2.0.
Can you improve this documentation? These fine people already did:
Žygimantas Medelis, 0xflotus & Luke HarriesEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close