Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,6 @@ import whisper
|
|
6 |
model = whisper.load_model("small")
|
7 |
|
8 |
|
9 |
-
|
10 |
def inference(audio):
|
11 |
audio = whisper.load_audio(audio)
|
12 |
audio = whisper.pad_or_trim(audio)
|
@@ -131,8 +130,8 @@ with block:
|
|
131 |
</div>
|
132 |
<p style="margin-bottom: 10px; font-size: 94%">
|
133 |
Whisper is a general-purpose speech recognition model. It has been trained on a large dataset of diverse audio and is also a multi-task model that can perform multilingual speech recognition as well as speech translation and language identification. </p>
|
134 |
-
<p>This
|
135 |
-
<p>This uses the
|
136 |
</p>
|
137 |
</div>
|
138 |
"""
|
|
|
6 |
model = whisper.load_model("small")
|
7 |
|
8 |
|
|
|
9 |
def inference(audio):
|
10 |
audio = whisper.load_audio(audio)
|
11 |
audio = whisper.pad_or_trim(audio)
|
|
|
130 |
</div>
|
131 |
<p style="margin-bottom: 10px; font-size: 94%">
|
132 |
Whisper is a general-purpose speech recognition model. It has been trained on a large dataset of diverse audio and is also a multi-task model that can perform multilingual speech recognition as well as speech translation and language identification. </p>
|
133 |
+
<p>This is a fork by JTHTEO.</p>
|
134 |
+
<p>This uses the small multi-lingual 244mill parameter Whisper model (<a href="https://github.com/openai/whisper/blob/main/model-card.md">Model Card</a>.) </p>
|
135 |
</p>
|
136 |
</div>
|
137 |
"""
|