Jarbas commited on
Commit
a3a74f8
·
verified ·
1 Parent(s): 2ac9354

Add language/base_model metadata to model card

Browse files
Files changed (1) hide show
  1. README.md +5 -12
README.md CHANGED
@@ -1,6 +1,8 @@
1
  ---
2
  license: cc-by-4.0
3
  library_name: onnx-asr
 
 
4
  tags:
5
  - automatic-speech-recognition
6
  - onnx
@@ -10,24 +12,15 @@ pipeline_tag: automatic-speech-recognition
10
 
11
  # nvidia-eo-conformer-ctc-large-onnx
12
 
13
- NVIDIA NeMo ASR model exported to ONNX for the
14
  [onnx-asr](https://github.com/istupakov/onnx-asr) library and the
15
  [ovos-stt-plugin-onnx-asr](https://github.com/OpenVoiceOS/ovos-stt-plugin-onnx-asr)
16
- OpenVoiceOS STT plugin.
17
 
18
- Converted from [nvidia/stt_eo_conformer_ctc_large](https://huggingface.co/nvidia/stt_eo_conformer_ctc_large) (cc-by-4.0).
19
- Decoder: CTC (`model.onnx`) — `model_type: nemo-conformer-ctc`, features_size 80,
20
- subsampling_factor 4.
21
 
22
  ```python
23
  import onnx_asr
24
  model = onnx_asr.load_model("OpenVoiceOS/nvidia-eo-conformer-ctc-large-onnx")
25
  print(model.recognize("audio.wav"))
26
  ```
27
-
28
- Or via OpenVoiceOS config:
29
-
30
- ```json
31
- {"stt": {"module": "ovos-stt-plugin-onnx-asr",
32
- "ovos-stt-plugin-onnx-asr": {"model": "OpenVoiceOS/nvidia-eo-conformer-ctc-large-onnx"}}}
33
- ```
 
1
  ---
2
  license: cc-by-4.0
3
  library_name: onnx-asr
4
+ base_model:
5
+ - nvidia/stt_eo_conformer_ctc_large
6
  tags:
7
  - automatic-speech-recognition
8
  - onnx
 
12
 
13
  # nvidia-eo-conformer-ctc-large-onnx
14
 
15
+ ASR model exported to ONNX for the
16
  [onnx-asr](https://github.com/istupakov/onnx-asr) library and the
17
  [ovos-stt-plugin-onnx-asr](https://github.com/OpenVoiceOS/ovos-stt-plugin-onnx-asr)
18
+ OpenVoiceOS STT plugin. Ships both fp32 and int8 weights.
19
 
20
+ Language: **Multilingual**. Converted from [nvidia/stt_eo_conformer_ctc_large](https://huggingface.co/nvidia/stt_eo_conformer_ctc_large).
 
 
21
 
22
  ```python
23
  import onnx_asr
24
  model = onnx_asr.load_model("OpenVoiceOS/nvidia-eo-conformer-ctc-large-onnx")
25
  print(model.recognize("audio.wav"))
26
  ```