Spaces:
Sleeping
Sleeping
Added imports
Browse files
app.py
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
2 |
|
3 |
pipe = pipeline(
|
4 |
"automatic-speech-recognition", model="openai/whisper-base"
|
|
|
1 |
import gradio as gr
|
2 |
+
import torch
|
3 |
+
from transformers import pipeline
|
4 |
+
import numpy as np
|
5 |
|
6 |
pipe = pipeline(
|
7 |
"automatic-speech-recognition", model="openai/whisper-base"
|