Spaces:
Runtime error
Runtime error
Commit
·
e7e81d1
1
Parent(s):
30149d6
update title
Browse files
app.py
CHANGED
@@ -381,6 +381,24 @@ with demo:
|
|
381 |
##### 3. Menerapkan pengelompokan aglomeratif pada pengkodean untuk mengidentifikasi pembicara untuk setiap segmen.
|
382 |
''')
|
383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
# with gr.Row():
|
385 |
# gr.Markdown('''
|
386 |
# ### You can test by following examples:
|
|
|
381 |
##### 3. Menerapkan pengelompokan aglomeratif pada pengkodean untuk mengidentifikasi pembicara untuk setiap segmen.
|
382 |
''')
|
383 |
|
384 |
+
with gr.Row():
|
385 |
+
gr.Markdown('''
|
386 |
+
## Available models and languages
|
387 |
+
|
388 |
+
There are five model sizes, four with English-only versions, offering speed and accuracy tradeoffs. Below are the names of the available models and their approximate memory requirements and inference speed relative to the large model; actual speed may vary depending on many factors including the available hardware.
|
389 |
+
|
390 |
+
| Size | Parameters | English-only model | Multilingual model | Required VRAM | Relative speed |
|
391 |
+
|:------:|:----------:|:------------------:|:------------------:|:-------------:|:--------------:|
|
392 |
+
| tiny | 39 M | `tiny.en` | `tiny` | ~1 GB | ~32x |
|
393 |
+
| base | 74 M | `base.en` | `base` | ~1 GB | ~16x |
|
394 |
+
| small | 244 M | `small.en` | `small` | ~2 GB | ~6x |
|
395 |
+
| medium | 769 M | `medium.en` | `medium` | ~5 GB | ~2x |
|
396 |
+
| large | 1550 M | N/A | `large` | ~10 GB | 1x |
|
397 |
+
|
398 |
+
The `.en` models for English-only applications tend to perform better, especially for the `tiny.en` and `base.en` models. We observed that the difference becomes less significant for the `small.en` and `medium.en` models.
|
399 |
+
''')
|
400 |
+
|
401 |
+
|
402 |
# with gr.Row():
|
403 |
# gr.Markdown('''
|
404 |
# ### You can test by following examples:
|