我知道Wit.ai引擎可以通过手动验证案例进行培训,但是有没有办法用一组定义的输入和输出来训练它?
答案 0 :(得分:8)
您可以使用wat.ai API创建intent
实体:
curl -X "POST" "https://api.wit.ai/entities" \
-H "Authorization: Bearer [token]" \
-d "{\"id\":\"intent\",\"doc\":\"Describe the users overall intention\",\"lookups\":[\"trait\"]}"
然后用值训练它:
curl -X "POST" "https://api.wit.ai/entities/intent/values" \
-H "Authorization: Bearer [token]" \
-d $'{
"value": "hello",
"expressions": [
"hi",
"hello",
"oi",
"bonjour",
"aloha"
]
}
答案 1 :(得分:6)
您可以查看某个应用的导出格式并调整它以在新应用中导入。 https://wit.ai/docs/recipes#manage-link