ksingla025 commited on
Commit
3230371
·
verified ·
1 Parent(s): 1b0e97f

Update readme_template.md

Browse files
Files changed (1) hide show
  1. readme_template.md +7 -7
readme_template.md CHANGED
@@ -1,23 +1,23 @@
1
  ---
2
  language:
3
  - en
4
- license: cc-by-nc-nd-4.0
5
  library_name: nemo
6
  datasets:
7
- - commonvoice
 
8
  thumbnail: null
9
  tags:
10
  - automatic-speech-recognition
11
  - speech
12
  - audio
13
  - CTC
14
- - named-entity-recognition
15
- - emotion-classification
16
  - Transformer
17
  - NeMo
18
  - pytorch
19
  model-index:
20
- - name: 1step_ctc_ner_emotion_commonvoice500hrs
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/1step_ctc_ner_emotion_commonvoice500hrs")
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/1step_ctc_ner_emotion_commonvoice500hrs" audio_dir="<DIRECTORY CONTAINING AUDIO FILES>"
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