istupakov commited on
Commit
73c4973
·
verified ·
1 Parent(s): 9fe1d46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
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
- **onnx-asr** is very easy to use (see [Readme](https://github.com/istupakov/onnx-asr?tab=readme-ov-file) for more examples):
141
- ```py
142
- import onnx_asr
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(