Watson Unity语音识别突然停止工作。它不断记录错误:
[03/05/2019 17:39:37][SpeechToText.OnListenMessage()][ERROR] Error: <2019-03-05 17:39:37,542 api/src/rapi_common.cc:127> RD_ERROR RAPI: "RReco" -> "settings" -> "nbest_size" -> Integer 0 is lower than 1.
这是从“语音沙箱”示例流场景中进行的,到目前为止一直运行良好。服务有什么变化吗?
答案 0 :(得分:1)
显然,该服务中存在一些错误,但这是Watson开发人员社区-slack工作区对此的快速修复。 创建凭据并实例化服务后,将MaxAlternatives设置为1
_service = new SpeechToText(credentials);
_service.MaxAlternatives = 1; //add this line
这至少可以解决此问题。还要确保在脚本后面不要将MaxAlternatives更改回0。