Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于我的应用程序域,存在许多具有同义词的特定词。我需要配置对话服务来理解自定义词及其同义词。
对话服务中是否提供词干和停用词词典?我需要一个自定义词典来表示单词的同义词吗?我怎样才能建造它?
停用词是对话服务的内置功能。
目前,处理同义词的最佳方法是将所有同义词添加到意图示例中。例如#greeting意图,例如Hi, Hello, Wassup,Howdy等。
#greeting
Hi
Hello
Wassup
Howdy
或者,您可以定义自定义实体并在那里定义所有同义词(UI 中对此提供支持)。例如,实体@facility具有,等pool同义词的值。swimming poolplace to swim
@facility
pool
swimming pool
place to swim
所以,是的,现在最好有一个自定义的同义词列表,intents使用entities会话服务构建。
intents
entities