首页 > 解决方案 > LUIS batch testing

问题描述

I want to batch train my Luis app. My JSON file for batch testing.

[
    {
        "text": "Wo ist die CMS?",
        "intent": "standort",
        "entities":
        [
            {
                "entity": "place",
                "startPos": 9,
                "endPos": 11
            }
        ]
    }
]

When I click run, the running icon is there, but nothing happens, even after 5 Minutes. What am I doing wrong? When i run the example file from the LUIS page everything is fine. Example from MS:

 [
    {
        "text": "hey dad, are you hungry?",
        "intent": "None",
        "entities":
        [
            {
                "entity": "FamilyMember",
                "startPos": 4,
                "endPos": 6
            }
        ]
    },
    {
        ...
    }
]

标签: microsoft-cognitiveazure-language-understandingazure-cognitive-services

解决方案


推荐阅读