ksingla025
commited on
Update readme_template.md
Browse files- readme_template.md +7 -7
readme_template.md
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
4 |
-
license: cc-by-
|
5 |
library_name: nemo
|
6 |
datasets:
|
7 |
-
-
|
|
|
8 |
thumbnail: null
|
9 |
tags:
|
10 |
- automatic-speech-recognition
|
11 |
- speech
|
12 |
- audio
|
13 |
- CTC
|
14 |
-
-
|
15 |
-
- emotion-classification
|
16 |
- Transformer
|
17 |
- NeMo
|
18 |
- pytorch
|
19 |
model-index:
|
20 |
-
- name:
|
21 |
results: []
|
22 |
|
23 |
---
|
@@ -42,7 +42,7 @@ The model is available for use in the NeMo toolkit [3], and can be used as a pre
|
|
42 |
|
43 |
```python
|
44 |
import nemo.collections.asr as nemo_asr
|
45 |
-
asr_model = nemo_asr.models.ASRModel.from_pretrained("ksingla025/
|
46 |
```
|
47 |
|
48 |
### Transcribe and tag using Python
|
@@ -59,7 +59,7 @@ asr_model.transcribe(['audio/digits1.wav'])
|
|
59 |
### Transcribing many audio files
|
60 |
|
61 |
```shell
|
62 |
-
python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py pretrained_name="ksingla025/
|
63 |
```
|
64 |
|
65 |
### Input
|
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
4 |
+
license: cc-by-4.0
|
5 |
library_name: nemo
|
6 |
datasets:
|
7 |
+
- fisher_corpus
|
8 |
+
- Switchboard-1
|
9 |
thumbnail: null
|
10 |
tags:
|
11 |
- automatic-speech-recognition
|
12 |
- speech
|
13 |
- audio
|
14 |
- CTC
|
15 |
+
- Conformer
|
|
|
16 |
- Transformer
|
17 |
- NeMo
|
18 |
- pytorch
|
19 |
model-index:
|
20 |
+
- name: stt_en_conformer_ctc_digits
|
21 |
results: []
|
22 |
|
23 |
---
|
|
|
42 |
|
43 |
```python
|
44 |
import nemo.collections.asr as nemo_asr
|
45 |
+
asr_model = nemo_asr.models.ASRModel.from_pretrained("ksingla025/stt_en_conformer_ctc_digits")
|
46 |
```
|
47 |
|
48 |
### Transcribe and tag using Python
|
|
|
59 |
### Transcribing many audio files
|
60 |
|
61 |
```shell
|
62 |
+
python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py pretrained_name="ksingla025/stt_en_conformer_ctc_digits" audio_dir="<DIRECTORY CONTAINING AUDIO FILES>"
|
63 |
```
|
64 |
|
65 |
### Input
|