LUIS pre-built entity datetimeV2 does not resolve properly? -
recently (i'd since around 2 weeks ago) luis has been getting of dates wrong us. , indeed: datetimev2's start date seems off month. bug or misunderstanding value?
ex: "since august" returns start date of 2017-09-01 instead of 2017-08-01.
{ "entity": "since august", "type": "builtin.datetimev2.daterange", "startindex": 15, "endindex": 26, "resolution": { "values": [ { "timex": "xxxx-08", "type": "daterange", "start": "2017-09-01" }, { "timex": "xxxx-08", "type": "daterange", "start": "2018-09-01" } ] } }
i can confirm issue. since
being handled same regex being used handle after
reason of issue.
in next days, create pr proposed fix , update answer link it. separate regexes.
update
a fix issue created , this pr it.
Comments
Post a Comment