用于导入IBM watson chatbot的.csv意图文件的布局

时间:2018-02-13 15:48:05

标签: chatbot watson-conversation watson

我正在创建聊天机器人,需要导入.csv文件作为意图。我的问题是关于布局;我目前有一个城市列表但是在导入时我的意图名称应该在城市名称旁边的行A中,还是在城市之前用“,”分隔的行B中?

感谢。

1 个答案:

答案 0 :(得分:2)

意图应该是有明确意图的问题。

说"迪拜"除了作为一个单词含义之外没有任何意义。使用城市名称进行意图训练不会给你带来很好的结果。

Intents的文件格式为listed here。它是question,intent格式。

示例:

Tell me the current weather conditions.,weather_conditions
Is it raining?,weather_conditions
What's the temperature?,weather_conditions
Where is your nearest location?,find_location
Do you have a store in Raleigh?,find_location

Entites是entitiy,value, synomns,...

的非标准格式

示例:

weekday,Monday,Mon
weekday,Tuesday,Tue,Tues
weekday,Wednesday,Wed
weekday,Thursday,Thur,Thu,Thurs
weekday,Friday,Fri
weekday,Saturday,Sat
weekday,Sunday,Sun

更多details for entities here