Spaces:
Sleeping
Sleeping
zanemotiwala
commited on
Commit
•
148cae6
1
Parent(s):
a8a6273
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,11 @@ import logging
|
|
3 |
from transformers import pipeline
|
4 |
import torch
|
5 |
|
|
|
|
|
|
|
|
|
|
|
6 |
asr = pipeline(task="automatic-speech-recognition",
|
7 |
model="distil-whisper/distil-small.en")
|
8 |
|
|
|
3 |
from transformers import pipeline
|
4 |
import torch
|
5 |
|
6 |
+
title='Simple Speech Recognition App'
|
7 |
+
description="""This app allows users to record audio through the microphone or upload audio files to be transcribed into text. It uses the
|
8 |
+
speech_recognition library to process audio and extract spoken words. Ideal for quick transcription of short speeches and audio notes."""
|
9 |
+
|
10 |
+
|
11 |
asr = pipeline(task="automatic-speech-recognition",
|
12 |
model="distil-whisper/distil-small.en")
|
13 |
|