Microsoft Azure Cognitive Speech to Text - 识别日期
Microsoft Azure Cognitive Speech to Text - recognize dates
Microsoft Cognitive Speech to Text 服务可以识别日期并以格式化的方式输出文本吗?
例如,当输入语音是 "date of birth is five fifteen sixty-four",
文本输出显示 "date of birth is 5/15/64".
谢谢!
当您使用 Speech-To-Text 功能时,您可以获得不同格式的句子结果,例如此处为一年 (1932):
以下是关于每种格式的文档:https://docs.microsoft.com/fr-fr/azure/cognitive-services/speech-service/rest-apis#nbest
如果输出不符合您的需要,我强烈建议从 STT 输出中生成的文本中使用 DateTime 识别器(用于 LUIS 等其他解决方案)。来源是 here,根据您的编程语言,有可用的包。
Microsoft Cognitive Speech to Text 服务可以识别日期并以格式化的方式输出文本吗? 例如,当输入语音是 "date of birth is five fifteen sixty-four", 文本输出显示 "date of birth is 5/15/64".
谢谢!
当您使用 Speech-To-Text 功能时,您可以获得不同格式的句子结果,例如此处为一年 (1932):
以下是关于每种格式的文档:https://docs.microsoft.com/fr-fr/azure/cognitive-services/speech-service/rest-apis#nbest
如果输出不符合您的需要,我强烈建议从 STT 输出中生成的文本中使用 DateTime 识别器(用于 LUIS 等其他解决方案)。来源是 here,根据您的编程语言,有可用的包。