如何训练 IBM Watson Assistant 从特定数据集(比如电子书)中回答问题?

How to train IBM Watson Assistant to answer from a specific dataset (say a eBook)?

我是 IBM Watson 的新蜜蜂。我通过视频创建了虚拟 assistant/chatbot,我们可以在其中定义 intents/entities 并做出相应的回答。当我 intents/entities 的数量有限时,这似乎很好。但是说,我有一本电子书,我想训练 Watson 从这本电子书中回答。我如何实现这一点。任何高水平的方法或方向都会非常有帮助。

有不同的方法。

您可以使用集成的 search skill,它为 Watson Discovery 提供 link。您可以将电子书上传到 Watson Discovery 并为其编制索引。

另一种方法是使用数据库或其他东西作为后端。根据识别搜索词和电子书搜索范围的输入,将从后端数据库中检索答案。这个tutorial features a Db2 database and Watson Assistant retrieves the answer from the database. A similar approach is taken in this sample which shows how to retrieve excerpts from Wikipedia.