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...
Fix to issue #2964. Added support for "week one" in EN and NL. Added support for "first week" in EN (where, if the year is missing, the start/end dates are...
- Updated the Azure Function sample to .NET 6 (LTS) and thus Az Func v4 - Remove FxCopAnalyzers for this csproj, since .NET5+ has this in by default and FxCopAnalyzers...
**Bug: A leading article before the date is part of the matched text** **To Reproduce** "Der 13.6.2022 war ein Montag" matches the date 13.6.2022 correctly, but includes the article "Der"....
"end" mod is not being resolved correctly in the following case: input text: "will look at the end of 2022" Current behavior "Mod": "end" "type": "daterange" "start": "2022-06-16" "end": "2022-07-01"...
If the only example I have of a date input is `03/02/2022` then the order of day/month is ambiguous. By specifying culture `en-us` I can get a single resolution with...
Replace String manipulation operations in TImexUtility with more efficient Span manipulation operations. For example: var subStr = inputStr.Substring(start, length); --> var subSpan = inputSpan.Slice(start, length);
Add support for the pattern "week" + [WrittenNumber] e.g. "Show sales in the week twelve", Expressions with numbers in digit form like "week 12" are already supported.
**Is your feature request related to a problem? Please describe.** Seasons (Spring, Winter etc..) are currently being detected but not resolved into the right date range, adding the right date...
**Describe the bug** "6 Friday" gives back two datetimealt entities related to "6" (like Nov 6) and "Friday", whereas "at 6 Friday" returns one entity for 6 on Friday. **To...
**Describe the bug** "greater than 10 and smaller 20" is recognized as (10,20], but expected result is (10,20) in English language. **To Reproduce** Add this test case to Specs\Number\English\NumberRangeModelExperimentalMode.json and...