Jarbas commited on
Commit
bc5c4fb
·
verified ·
1 Parent(s): ad3c662

Add language/base_model metadata to model card

Browse files
Files changed (1) hide show
  1. README.md +7 -12
README.md CHANGED
@@ -1,6 +1,10 @@
1
  ---
2
  license: cc-by-4.0
 
 
3
  library_name: onnx-asr
 
 
4
  tags:
5
  - automatic-speech-recognition
6
  - onnx
@@ -10,24 +14,15 @@ pipeline_tag: automatic-speech-recognition
10
 
11
  # nvidia-de-conformer-transducer-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_de_conformer_transducer_large](https://huggingface.co/nvidia/stt_de_conformer_transducer_large) (cc-by-4.0).
19
- Decoder: RNN-T Transducer (`encoder-model.onnx` + `decoder_joint-model.onnx`) — `model_type: nemo-conformer-rnnt`, features_size 80,
20
- subsampling_factor 4.
21
 
22
  ```python
23
  import onnx_asr
24
  model = onnx_asr.load_model("OpenVoiceOS/nvidia-de-conformer-transducer-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-de-conformer-transducer-large-onnx"}}}
33
- ```
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - de
5
  library_name: onnx-asr
6
+ base_model:
7
+ - nvidia/stt_de_conformer_transducer_large
8
  tags:
9
  - automatic-speech-recognition
10
  - onnx
 
14
 
15
  # nvidia-de-conformer-transducer-large-onnx
16
 
17
+ ASR model exported to ONNX for the
18
  [onnx-asr](https://github.com/istupakov/onnx-asr) library and the
19
  [ovos-stt-plugin-onnx-asr](https://github.com/OpenVoiceOS/ovos-stt-plugin-onnx-asr)
20
+ OpenVoiceOS STT plugin. Ships both fp32 and int8 weights.
21
 
22
+ Language: **German**. Converted from [nvidia/stt_de_conformer_transducer_large](https://huggingface.co/nvidia/stt_de_conformer_transducer_large).
 
 
23
 
24
  ```python
25
  import onnx_asr
26
  model = onnx_asr.load_model("OpenVoiceOS/nvidia-de-conformer-transducer-large-onnx")
27
  print(model.recognize("audio.wav"))
28
  ```