나는 방금 이걸 시도하고 7 번의 발언 후에 LUIS가 티켓을 잘 인식하고 있습니다. 내가 한 일은이었다
- 는
- 기차
- 새로운 발언의 무리 (다른 티켓 번호와 문구)
- 기차가 다시
내가 보낸 보내기 발언을 몇 보내기 내 LUIS 앱 (아래 및 here)
{
"luis_schema_version": "1.3.0",
"name": "testticket",
"desc": "",
"culture": "en-us",
"intents": [
{
"name": "None"
},
{
"name": "StatusUpdate"
}
],
"entities": [
{
"name": "Ticket"
}
],
"composites": [],
"bing_entities": [],
"actions": [],
"model_features": [],
"regex_features": [],
"utterances": [
{
"text": "what is that status on s344?",
"intent": "StatusUpdate",
"entities": [
{
"entity": "Ticket",
"startPos": 5,
"endPos": 5
}
]
},
{
"text": "status of s124",
"intent": "StatusUpdate",
"entities": [
{
"entity": "Ticket",
"startPos": 2,
"endPos": 2
}
]
},
{
"text": "what's the status of s4",
"intent": "StatusUpdate",
"entities": []
},
{
"text": "please tell me the status of s4",
"intent": "StatusUpdate",
"entities": [
{
"entity": "Ticket",
"startPos": 6,
"endPos": 6
}
]
},
{
"text": "whats the status of s5",
"intent": "StatusUpdate",
"entities": [
{
"entity": "Ticket",
"startPos": 4,
"endPos": 4
}
]
},
{
"text": "whats the status of s9",
"intent": "StatusUpdate",
"entities": [
{
"entity": "Ticket",
"startPos": 4,
"endPos": 4
}
]
},
{
"text": "please tell me the status of s24",
"intent": "StatusUpdate",
"entities": [
{
"entity": "Ticket",
"startPos": 6,
"endPos": 6
}
]
}
]
}
발화를 추가 한 후에 모델을 훈련하고 있습니까? 그런 다음 업데이트 된 모델을 다시 게시 하시겠습니까? –
두 질문에 모두 그렇습니다. –
이상하게 들리지만 ... 티켓을 인식하지 못하는 새로운 발음을 보내면 BOT가 엔티티 또는 LUIS 사이트를 인식하지 못합니까? –