Commit
·
36c6e03
1
Parent(s):
eb403da
Upload data
Browse files1. Trained word-level LSTM.
2. Trained token-level 4-gram arpa model.
3. Fine-tuned gpt2 model.
4. Baseline ASR model (https://catalog.ngc.nvidia.com/orgs/nvidia/teams/nemo/models/stt_en_conformer_transducer_small).
5. LibriSpeech text data for train, validation and test.
- .gitattributes +5 -0
- asr/stt_en_conformer_transducer_small.nemo +3 -0
- gpt2/config.json +42 -0
- gpt2/pytorch_model.bin +3 -0
- gpt2/training_args.bin +3 -0
- kenlm/4_ngram_output.bin +3 -0
- lstm/model.pt +3 -0
- lstm/tokenizer.pkl +3 -0
- text/librispeech/clean_test.txt +0 -0
- text/librispeech/clean_train.100.txt +0 -0
- text/librispeech/clean_train.360.txt +3 -0
- text/librispeech/clean_validation.txt +0 -0
- text/librispeech/other_test.txt +0 -0
- text/librispeech/other_train.500.txt +3 -0
- text/librispeech/other_validation.txt +0 -0
- text/lstm/test.txt +0 -0
- text/lstm/train.txt +3 -0
- text/lstm/validation.txt +0 -0
- text/ngram/train.txt +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
asr/stt_en_conformer_transducer_small.nemo filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
text/librispeech/clean_train.360.txt filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
text/librispeech/other_train.500.txt filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
text/lstm/train.txt filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
text/ngram/train.txt filter=lfs diff=lfs merge=lfs -text
|
asr/stt_en_conformer_transducer_small.nemo
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9894f37bb36b183590776dbd000d590889582f188b8bfa63fa795205a0ec0b8e
|
| 3 |
+
size 54480175
|
gpt2/config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "gpt2-medium",
|
| 3 |
+
"activation_function": "gelu_new",
|
| 4 |
+
"architectures": [
|
| 5 |
+
"GPT2LMHeadModel"
|
| 6 |
+
],
|
| 7 |
+
"attn_pdrop": 0.1,
|
| 8 |
+
"bos_token_id": 1024,
|
| 9 |
+
"embd_pdrop": 0.1,
|
| 10 |
+
"eos_token_id": 1025,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"layer_norm_epsilon": 1e-05,
|
| 13 |
+
"model_type": "gpt2",
|
| 14 |
+
"n_ctx": 1024,
|
| 15 |
+
"n_embd": 1024,
|
| 16 |
+
"n_head": 16,
|
| 17 |
+
"n_inner": null,
|
| 18 |
+
"n_layer": 24,
|
| 19 |
+
"n_positions": 1024,
|
| 20 |
+
"n_special": 0,
|
| 21 |
+
"pad_token_id": 1026,
|
| 22 |
+
"predict_special_tokens": true,
|
| 23 |
+
"reorder_and_upcast_attn": false,
|
| 24 |
+
"resid_pdrop": 0.1,
|
| 25 |
+
"scale_attn_by_inverse_layer_idx": false,
|
| 26 |
+
"scale_attn_weights": true,
|
| 27 |
+
"summary_activation": null,
|
| 28 |
+
"summary_first_dropout": 0.1,
|
| 29 |
+
"summary_proj_to_labels": true,
|
| 30 |
+
"summary_type": "cls_index",
|
| 31 |
+
"summary_use_proj": true,
|
| 32 |
+
"task_specific_params": {
|
| 33 |
+
"text-generation": {
|
| 34 |
+
"do_sample": true,
|
| 35 |
+
"max_length": 50
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
"torch_dtype": "float32",
|
| 39 |
+
"transformers_version": "4.21.2",
|
| 40 |
+
"use_cache": true,
|
| 41 |
+
"vocab_size": 1027
|
| 42 |
+
}
|
gpt2/pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d7884f6ef1acccf72b84d2d7b7ad167b2484183dde8e89b7960dce581a1c16f
|
| 3 |
+
size 1242923293
|
gpt2/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2f31c43de1a0b0f9b6421842529cc6b64e1949d34e9fc4bbd1ce7118bdea43c
|
| 3 |
+
size 3323
|
kenlm/4_ngram_output.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da61a874bed41087e90c8b60838ba8656356a040ced4f6fc34bffa04e11ce4d8
|
| 3 |
+
size 78345492
|
lstm/model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb09c452264e0bd81116dcd08922b57163ae4d20423dbe3ce60182906017de5c
|
| 3 |
+
size 194079513
|
lstm/tokenizer.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99a3302dc2da750175a801711394769976331ec8f658f8acc6a60021db0151bf
|
| 3 |
+
size 2030227
|
text/librispeech/clean_test.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/librispeech/clean_train.100.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/librispeech/clean_train.360.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc83220078f2898311f0e0ba68bba6a1681d5b1c08ba0253e6672f85b53dfb38
|
| 3 |
+
size 19225281
|
text/librispeech/clean_validation.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/librispeech/other_test.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/librispeech/other_train.500.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c0736d55a7492da63c126f8c84527ea1af199119771f1000a06b66b7ea9e837
|
| 3 |
+
size 25539815
|
text/librispeech/other_validation.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/lstm/test.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/lstm/train.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b21aa7b62b4c182b51114021427dffcad142c35a327de62b343bb240c5dd62c6
|
| 3 |
+
size 45017800
|
text/lstm/validation.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
text/ngram/train.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2ec40af82e5ff8e35ab249f3a5525894d20f41e4110df85c8e1746896069cd1
|
| 3 |
+
size 44765096
|