Spaces:
Sleeping
Sleeping
removed buggy argument
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import numpy as np
|
|
| 4 |
import os
|
| 5 |
|
| 6 |
auth_token = os.environ.get("hf_token") or True
|
| 7 |
-
transcriber = pipeline("automatic-speech-recognition", model="Grosy/wav2vec2-ie-300m"
|
| 8 |
|
| 9 |
def transcribe(stream, new_chunk):
|
| 10 |
sr, y = new_chunk
|
|
|
|
| 4 |
import os
|
| 5 |
|
| 6 |
auth_token = os.environ.get("hf_token") or True
|
| 7 |
+
transcriber = pipeline("automatic-speech-recognition", model="Grosy/wav2vec2-ie-300m")
|
| 8 |
|
| 9 |
def transcribe(stream, new_chunk):
|
| 10 |
sr, y = new_chunk
|