Update app.py
Browse files
app.py
CHANGED
@@ -137,11 +137,9 @@ with gr.Blocks(title="onnx-asr demo") as demo:
|
|
137 |
**[onnx-asr](https://github.com/istupakov/onnx-asr)** is a Python package for Automatic Speech Recognition using ONNX models.
|
138 |
The package is written in pure Python with minimal dependencies (no `pytorch` or `transformers`).
|
139 |
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
model = onnx_asr.load_model("nemo-parakeet-tdt-0.6b-v2")
|
144 |
-
print(model.recognize("test.wav"))
|
145 |
```
|
146 |
""")
|
147 |
gr.TabbedInterface(
|
|
|
137 |
**[onnx-asr](https://github.com/istupakov/onnx-asr)** is a Python package for Automatic Speech Recognition using ONNX models.
|
138 |
The package is written in pure Python with minimal dependencies (no `pytorch` or `transformers`).
|
139 |
|
140 |
+
Supports Parakeet TDT 0.6B V2 (En) and GigaAM v2 (Ru) models
|
141 |
+
(and many other modern [models](https://github.com/istupakov/onnx-asr?tab=readme-ov-file#supported-model-names)).
|
142 |
+
You can also use it with your own model if it has a supported architecture.
|
|
|
|
|
143 |
```
|
144 |
""")
|
145 |
gr.TabbedInterface(
|