gpt4 book ai didi

java - Watson STT Java - Websockets Java 和 HTTP POST 之间的不同结果

转载 作者:搜寻专家 更新时间:2023-11-01 03:19:08 25 4
gpt4 key购买 nike

我正在尝试构建一个采用流式音频输入(例如:麦克风中的线路)并使用 IBM Bluemix (Watson) 进行语音转文本的应用。

我简要修改了找到的示例 Java 代码 here .此示例发送的是 WAV,但我发送的是 FLAC……这 [应该] 无关紧要。

结果很糟糕,很糟糕。这是我在使用 Java Websockets 代码时得到的:

{
"result_index": 0,
"results": [
{
"final": true,
"alternatives": [
{
"transcript": "it was six weeks ago today the terror ",
"confidence": 0.92
}
]
}
]
}

现在,将上面的结果与下面的结果进行比较。这些是发送相同内容但使用 cURL (HTTP POST) 时的结果:

{
"results": [
{
"alternatives": [
{
"confidence": 0.945,
"transcript": "it was six weeks ago today the terrorists attacked the U. S. consulate in Benghazi Libya now we've obtained email alerts that were put out by the state department as the attack unfolded as you know four Americans were killed including ambassador Christopher Stevens "
}
],
"final": true
},
{
"alternatives": [
{
"confidence": 0.942,
"transcript": "sharyl Attkisson has our story "
}
],
"final": true
}
],
"result_index": 0
}

这几乎是完美的结果。

为什么使用 Websockets 时会有所不同?

最佳答案

此问题已在 3.0.0-RC1 版本中修复。

您可以从以下位置获取新 jar :

  1. 专家

    <dependency>
    <groupId>com.ibm.watson.developer_cloud</groupId>
    <artifactId>java-sdk</artifactId>
    <version>3.0.0-RC1</version>
    </dependency>
  2. Gradle

    'com.ibm.watson.developer_cloud:java-sdk:3.0.0-RC1'
  3. 压缩包

    下载 jar-with-dependencies (~1.4MB)


这是一个如何使用 WebSockets 识别 flac 音频文件的例子

SpeechToText service = new SpeechToText();
service.setUsernameAndPassword("<username>", "<password>");

FileInputStream audio = new FileInputStream("path-to-audio-file.flac");

RecognizeOptions options = new RecognizeOptions.Builder()
.continuous(true)
.interimResults(true)
.contentType(HttpMediaType.AUDIO_FLAC)
.build();

service.recognizeUsingWebSocket(audio, options, new BaseRecognizeCallback() {
@Override
public void onTranscription(SpeechResults speechResults) {
System.out.println(speechResults);
}
});

要测试的 FLAC 文件:https://s3.amazonaws.com/mozart-company/tmp/4.flac


注意:3.0.0-RC1 是一个候选版本。我们将在下周发布产品版本 (3.0.1)。

关于java - Watson STT Java - Websockets Java 和 HTTP POST 之间的不同结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36504879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com