【问题标题】:python Deepspeech TypeError: __init__() takes 2 positional arguments but 3 were given [duplicate]python Deepspeech TypeError:__init__()接受2个位置参数,但给出了3个[重复]
【发布时间】:2021-01-24 18:39:37
【问题描述】:

我正在尝试实现 deepspeech,作为实现的一部分,我正在尝试运行以下代码。我已经安装了python3deepspeech-0.9.3

在运行以下代码时,我收到line 17, in <module> model = deepspeech.Model(MODEL_FILE_PATH, BEAM_WIDTH) TypeError: __init__() takes 2 positional arguments but 3 were given 的错误

import deepspeech
import numpy as np
import os
import pyaudio
import time

# DeepSpeech parameters
DEEPSPEECH_MODEL_DIR = 'deepspeech-0.9.3-models'
MODEL_FILE_PATH = os.path.join(DEEPSPEECH_MODEL_DIR, 'output_graph.pbmm')
BEAM_WIDTH = 500
LM_FILE_PATH = os.path.join(DEEPSPEECH_MODEL_DIR, 'lm.binary')
TRIE_FILE_PATH = os.path.join(DEEPSPEECH_MODEL_DIR, 'trie')
LM_ALPHA = 0.75
LM_BETA = 1.85

# Make DeepSpeech Model
model = deepspeech.Model(MODEL_FILE_PATH, BEAM_WIDTH)
model.enableDecoderWithLM(LM_FILE_PATH, TRIE_FILE_PATH, LM_ALPHA, LM_BETA)

# Create a Streaming session
context = model.createStream()

# Encapsulate DeepSpeech audio feeding into a callback for PyAudio
text_so_far = ''
def process_audio(in_data, frame_count, time_info, status):
    global text_so_far
    data16 = np.frombuffer(in_data, dtype=np.int16)
    model.feedAudioContent(context, data16)
    text = model.intermediateDecode(context)
    if text != text_so_far:
        print('Interim text = {}'.format(text))
        text_so_far = text
    return (in_data, pyaudio.paContinue)

# PyAudio parameters
FORMAT = pyaudio.paInt16
CHANNELS = 1
RATE = 16000
CHUNK_SIZE = 1024

# Feed audio to deepspeech in a callback to PyAudio
audio = pyaudio.PyAudio()
stream = audio.open(
    format=FORMAT,
    channels=CHANNELS,
    rate=RATE,
    input=True,
    frames_per_buffer=CHUNK_SIZE,
    stream_callback=process_audio
)

print('Please start speaking, when done press Ctrl-C ...')
stream.start_stream()

try: 
    while stream.is_active():
        time.sleep(0.1)
except KeyboardInterrupt:
    # PyAudio
    stream.stop_stream()
    stream.close()
    audio.terminate()
    print('Finished recording.')
    # DeepSpeech
    text = model.finishStream(context)
    print('Final text = {}'.format(text))

【问题讨论】:

  • 发帖前请搜索您的错误信息

标签: python python-3.x mozilla-deepspeech


【解决方案1】:

你要么给出了更多的参数,要么你没有在 init

中使用 self 关键字

【讨论】:

    【解决方案2】:

    您正在使用已弃用的代码。

    您正在尝试将 0.9 模型与 0.6 代码一起使用。从 0.7 开始,您不再使用 lm.binary 和 trie 作为语言模型。而且你的代码还有很多问题。

    Check the 0.9 docs.

    可能使用current examples. 之一,具体取决于您的用例。

    【讨论】:

    • 虽然可能是真的,但这根本不能回答问题
    • 是的,但他要么使用他没有的旧模型,要么切换到新代码。但是像 lms 这样的其他参数将不起作用。因此,简单的“这样做”是行不通的。他必须检查手册。
    猜你喜欢
    • 2017-02-18
    • 1970-01-01
    • 2014-05-01
    • 2021-01-15
    • 2023-03-03
    • 1970-01-01
    • 1970-01-01
    • 2015-07-13
    • 2018-03-07
    相关资源
    最近更新 更多