как сравнить голос со списком в Python - PullRequest
0 голосов
/ 30 января 2019

вот мой код, я использую pocketsphinx. Я хочу сравнить свой голос с этими словами, но он не работает.

from pocketsphinx import LiveSpeech
import speech_recognition as sr
'''The start of Speech system is here,'''

def chair_offline():
    words = ["LEFT","RIGHT","FORWARD","BACKWARD","STOP","RUN"]
    r = sr.Recognizer()
    for audioo in LiveSpeech():
        res = str(audioo)
        if res in words:
            print(res)
        else:
            print("sorry modle not train")

chair_offline()
...