The app can be viewed in huggingface https://huggingface.co/spaces/rowel/asr import gradio as gr from transformers import pipeline model = pipeline(task="auto
def detect(audio): chime_threshold = 0.5 prediction = detect_triggerword(audio) chime_on_activate(your_filename, prediction, chime_threshold) re
I'm using the gradio library with one of the basic examples, but am getting this error. I am running this in a Google Colab Notebook. Here is the relevant lines