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.
我可以在 Watson Conversation API 的对话流中使用条件中意图的置信度等级吗?
为此,请创建一个条件来查找您的意图,然后检查置信度。
您将拥有的样本条件
#temperature AND intents[0].confidence > 0.70
在 UI 中,键入它可能会很棘手。因此,对于第一部分,在您键入时从下拉列表中选择意图。对于第二部分,键入后,单击下拉菜单中的“创建新条件”。它会阻止它被擦除。
在输出文本字段中,您还可以添加:
<? intents ?>
这将在您的测试聊天窗口中显示 Intent JSON blob。因此,您可以使用它来查看它是否有效。