
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
2-6까진 잘 따라오다가 2-7에서 갑자기 막혔는데,... transformers 오류가 있더라고요.
해결 방법 없나요?

작성한 코드 및 에러 메세지
from transformers import pipeline
import gradio as gr
asr = pipeline("automatic-speech-recognition", "facebook/wav2vec2-base-960h")
def speech_to_text(speech):
text = asr(speech)["text"]
return text
with gr.Blocks() as demo:
audio_file = gr.Audio(type="filepath")
text = gr.Textbox()
label = gr.Label()
button1 = gr.Button('Recognize Speech')
button1.click(speech_to_text, inputs=audio_file, outputs=text)
demo.launch(share=True)
