Jarbas commited on
Commit
2fba2c2
·
verified ·
1 Parent(s): 7167b27

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: apache-2.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
  # bsc-lt-los-conformer-transducer-large-punctuated-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 [BSC-LT/stt_los_conformer_transducer_large_punctuated](https://huggingface.co/BSC-LT/stt_los_conformer_transducer_large_punctuated) (apache-2.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/bsc-lt-los-conformer-transducer-large-punctuated-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/bsc-lt-los-conformer-transducer-large-punctuated-onnx"}}}
33
- ```
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - es
5
  library_name: onnx-asr
6
+ base_model:
7
+ - BSC-LT/stt_los_conformer_transducer_large_punctuated
8
  tags:
9
  - automatic-speech-recognition
10
  - onnx
 
14
 
15
  # bsc-lt-los-conformer-transducer-large-punctuated-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: **Spanish**. Converted from [BSC-LT/stt_los_conformer_transducer_large_punctuated](https://huggingface.co/BSC-LT/stt_los_conformer_transducer_large_punctuated).
 
 
23
 
24
  ```python
25
  import onnx_asr
26
  model = onnx_asr.load_model("OpenVoiceOS/bsc-lt-los-conformer-transducer-large-punctuated-onnx")
27
  print(model.recognize("audio.wav"))
28
  ```