forked from qhduan/ConversationalRobotDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
|
||
# 自然语言生成的主要目标 | ||
|
||
- 尽可能让机器说话更自然(更接近人类) | ||
- 尽可能在书写模板所占用的时间和书写规则(代码)的时间平衡,降低总体工作成本 | ||
|
||
## 尽可能让机器说话更自然 | ||
|
||
假设机器人需要提供某航班的起飞时间,它可以这么说: | ||
|
||
111号航班的起飞时间07:00。 | ||
|
||
这样好像也没什么太大,问题。 | ||
但是如果机器人需要同时提供某航班的起飞和降落时间,它可以这么说: | ||
|
||
111号航班的起飞时间07:00,#111航班的降落时间17:00 | ||
|
||
这样是生硬的把两条信息放到了一起。而人类说它可能会这样: | ||
|
||
111号航班于上午7点起飞并于下午5点降落 | ||
|
||
如何生成更自然的人类语言,则是自然语言生成的研究目标之一。 |