Azure language understanding LUIS预构建实体datetimeV2解析错误的日期范围

Azure language understanding LUIS预构建实体datetimeV2解析错误的日期范围,azure-language-understanding,Azure Language Understanding,路易斯没有正确处理下面的问题 示例话语: From Friday the 26th until Tuesday the 30th 答复: "entities": [ { "entity": "from friday the 26th until tuesday", "type": "builtin.datetimeV2.daterange", "startIndex": 0, "endIndex": 33, "resolution": { "values": [

路易斯没有正确处理下面的问题

示例话语:

From Friday the 26th until Tuesday the 30th
答复:

"entities": [
{
  "entity": "from friday the 26th until tuesday",
  "type": "builtin.datetimeV2.daterange",
  "startIndex": 0,
  "endIndex": 33,
  "resolution": {
    "values": [
      {
        "timex": "(2018-01-26,XXXX-WXX-2,P-2.33532467143519D)",
        "type": "daterange",
        "start": "2018-01-26",
        "end": "2018-01-23"
      }
    ]
  }
}
]

解决的日期范围是不合法的,因为没有将“30号”作为日期的一部分。

我应该注意,这似乎不是一个问题,主持人可能更希望您下次提出一个实际问题,而不是观察

将来,请向我们的回购协议提交预构建实体相关的缺陷。我已经着手创建了一个源于这个问题的

更新(2018/01/31): 此问题已修复,正在等待发布,感谢您的报告