【发布时间】:2017-08-22 00:36:48
【问题描述】:
我有一个 JSON 格式的决策树。
现在,我正在我网站的流程中使用该 JSON 树。
树的结构类似于下面
{
"id": 1,
"name": "Select the vehicle type",
"children": [{
"id": "2",
"name": "Show the Cars",
"parent": "1",
"children": [{
"id": 3,
"name": "BMW",
"parent": 2
}]
}]
}
现在,我想使用树并使用 API.AI 或 Wit.AI 转换为自然语言处理流程。
我该怎么做?有没有工具可以做到这一点?还是唯一的方法是再次手动创建流程?
【问题讨论】:
标签: json nlp dialogflow-es wit.ai