我尝试使用官方Apple示例: SpeekToMe
我按以下方式编辑了示例以获得置信度:
if let result = result {
for t in result.transcriptions
{
for s in t.segments
{
print("POSSIBLE TRANSCRIPTION: \(s.substring) confidence: \(s.confidence)")
}
}
self.textView.text = result.bestTranscription.formattedString
isFinal = result.isFinal
}
问题是置信水平总是= 0.
我找到similar questions但是将defaultTaskHint设置为听写(或其他任何内容)并没有帮助。
有没有人对如何获得正确的置信度值有任何建议?