Recognizers-Text
Recognizers-Text copied to clipboard
Microsoft.Recognizers.Text provides recognition and resolution of numbers, units, date/time, etc. in multiple languages (ZH, EN, FR, ES, PT, DE, IT, TR, HI, NL. Partial support for JA, KO, AR, SV). Pa...
The resolution for numbers in the es-MX comes with a comma, which is different then how it is interpreted in es-ES and en-US. It should be agnostic to the culture...
**Describe the bug** First Week of the Year e.g., 2020-W01, 2021-W02 resolves to incorrect end date **To Reproduce** Steps to reproduce the behavior: ```python def test_datatypes_resolver_dateRange_first_week_of_the_year(): today = datetime(2021, 1,...
When the following string is passed `altcoins directly with $USD & earn up to 8.5% interest (APR)! it should not pick up "April" as this string is related to interest...
Hi, I want to install the packages via pip, however I noticed they are not updated. The latest update of base_merged.py is not in the recognizers-text-date-time 1.0.2a2 version even though...
For example, in input "a kilo of salt", "a kilo" should be tagged as entity. Not just the unit itself.
**Describe the bug** [ZH Number] "一千瓦"、"两千赫"、"三千焦" etc. value are null while "十千瓦"、"两百千赫"、"三万千焦" can be recognized **To Reproduce** `NumberRecognizer.RecognizeNumber(query, Culture.Chinese)` **Expected behavior** _一千瓦_ ``` { "Text": "一", "Start": 0, "End": 0,...
**Describe the bug** "三十几万元"、"二百余万元"、"一千多万元" will be misinterpreted while "三十几元"、"二百余元"、"一千多元" can't be recognized. **To Reproduce** 三十几万元 ≠ 三十万元 ``` { "Text": "三十几万元", "Start": 0, "End": 4, "TypeName": "currency", "Resolution": { "isoCurrency":...
Input like "Silvester spätabends um 8:00" currently returns three separate entities. It should at least merge time-range and time, or ideally, merge all three into a single entitiy.
**Describe the bug** "十来"、"二十来"、"十来万"、"二百三十来万"、"肆拾來億"、"500來億" etc . in Chinese mean "more than X" **Expected input/output** ``` { "Text": "十来", "Start": 0, "End": 1, "TypeName": "numberrange", "Resolution": { "value": "(10,)" } }...
Move common holiday definitions and concrete dates to common resources BaseDateTime.yaml and BaseHolidayParserConfiguration, if the same for all supported cultures. International/standard holidays could be moved to the Base resources/parsers and...