Fhrozen commited on
Commit
7132017
1 Parent(s): 1d91bdb

fix readme

Browse files
Files changed (2) hide show
  1. README.md +87 -0
  2. REAME.md +0 -87
README.md CHANGED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - espnet
4
+ - audio
5
+ - automatic-speech-recognition
6
+ language: en
7
+ datasets:
8
+ - mini-an4
9
+ license: cc-by-4.0
10
+ ---
11
+
12
+ # ESPnet2 ASR pretrained model
13
+
14
+ ## `kamo-naoyuki/mini_an4_asr_train_raw_bpe_valid.acc.best`
15
+
16
+ ♻️ Imported from <https://zenodo.org/record/3957940#.YN7zwJozZH4>
17
+ This model was trained by kan-bayashi using jsut/tts1 recipe in [espnet](https://github.com/espnet/espnet/).
18
+
19
+ ### Demo: How to use in ESPnet2
20
+
21
+ ```python
22
+ # coming soon
23
+ ```
24
+
25
+ ### Citing ESPnet
26
+
27
+ ```BibTex
28
+ @inproceedings{watanabe2018espnet,
29
+ author={Shinji Watanabe and Takaaki Hori and Shigeki Karita and Tomoki Hayashi and Jiro Nishitoba and Yuya Unno and Nelson {Enrique Yalta Soplin} and Jahn Heymann and Matthew Wiesner and Nanxin Chen and Adithya Renduchintala and Tsubasa Ochiai},
30
+ title={{ESPnet}: End-to-End Speech Processing Toolkit},
31
+ year={2018},
32
+ booktitle={Proceedings of Interspeech},
33
+ pages={2207--2211},
34
+ doi={10.21437/Interspeech.2018-1456},
35
+ url={http://dx.doi.org/10.21437/Interspeech.2018-1456}
36
+ }
37
+ @inproceedings{hayashi2020espnet,
38
+ title={{Espnet-TTS}: Unified, reproducible, and integratable open source end-to-end text-to-speech toolkit},
39
+ author={Hayashi, Tomoki and Yamamoto, Ryuichi and Inoue, Katsuki and Yoshimura, Takenori and Watanabe, Shinji and Toda, Tomoki and Takeda, Kazuya and Zhang, Yu and Tan, Xu},
40
+ booktitle={Proceedings of IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
41
+ pages={7654--7658},
42
+ year={2020},
43
+ organization={IEEE}
44
+ }
45
+ ```
46
+
47
+ or arXiv:
48
+
49
+ ```bibtex
50
+ @misc{watanabe2018espnet,
51
+ title={ESPnet: End-to-End Speech Processing Toolkit},
52
+ author={Shinji Watanabe and Takaaki Hori and Shigeki Karita and Tomoki Hayashi and Jiro Nishitoba and Yuya Unno and Nelson Enrique Yalta Soplin and Jahn Heymann and Matthew Wiesner and Nanxin Chen and Adithya Renduchintala and Tsubasa Ochiai},
53
+ year={2018},
54
+ eprint={1804.00015},
55
+ archivePrefix={arXiv},
56
+ primaryClass={cs.CL}
57
+ }
58
+ ```
59
+
60
+ ### Training config
61
+
62
+ See full config in [`config.yaml`](./config.yaml)
63
+
64
+ ```yaml
65
+ config: null
66
+ print_config: false
67
+ log_level: INFO
68
+ dry_run: false
69
+ iterator_type: sequence
70
+ output_dir: exp/asr_train_raw_bpe
71
+ ngpu: 1
72
+ seed: 0
73
+ num_workers: 1
74
+ num_att_plot: 3
75
+ dist_backend: nccl
76
+ dist_init_method: env://
77
+ dist_world_size: null
78
+ dist_rank: null
79
+ local_rank: 0
80
+ dist_master_addr: null
81
+ dist_master_port: null
82
+ dist_launcher: null
83
+ multiprocessing_distributed: false
84
+ cudnn_enabled: true
85
+ cudnn_benchmark: false
86
+ cudnn_deterministic: true
87
+ ```
REAME.md DELETED
@@ -1,87 +0,0 @@
1
- ---
2
- tags:
3
- - espnet
4
- - audio
5
- - automatic-speech-recognition
6
- language: en
7
- datasets:
8
- - mini-an4
9
- license: cc-by-4.0
10
- ---
11
-
12
- # ESPnet2 ASR pretrained model
13
-
14
- ## `kamo-naoyuki/mini_an4_asr_train_raw_bpe_valid.acc.best`
15
-
16
- ♻️ Imported from <https://zenodo.org/record/3957940#.YN7zwJozZH4>
17
- This model was trained by kan-bayashi using jsut/tts1 recipe in [espnet](https://github.com/espnet/espnet/).
18
-
19
- ### Demo: How to use in ESPnet2
20
-
21
- ```python
22
- # coming soon
23
- ```
24
-
25
- ### Citing ESPnet
26
-
27
- ```BibTex
28
- @inproceedings{watanabe2018espnet,
29
- author={Shinji Watanabe and Takaaki Hori and Shigeki Karita and Tomoki Hayashi and Jiro Nishitoba and Yuya Unno and Nelson {Enrique Yalta Soplin} and Jahn Heymann and Matthew Wiesner and Nanxin Chen and Adithya Renduchintala and Tsubasa Ochiai},
30
- title={{ESPnet}: End-to-End Speech Processing Toolkit},
31
- year={2018},
32
- booktitle={Proceedings of Interspeech},
33
- pages={2207--2211},
34
- doi={10.21437/Interspeech.2018-1456},
35
- url={http://dx.doi.org/10.21437/Interspeech.2018-1456}
36
- }
37
- @inproceedings{hayashi2020espnet,
38
- title={{Espnet-TTS}: Unified, reproducible, and integratable open source end-to-end text-to-speech toolkit},
39
- author={Hayashi, Tomoki and Yamamoto, Ryuichi and Inoue, Katsuki and Yoshimura, Takenori and Watanabe, Shinji and Toda, Tomoki and Takeda, Kazuya and Zhang, Yu and Tan, Xu},
40
- booktitle={Proceedings of IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
41
- pages={7654--7658},
42
- year={2020},
43
- organization={IEEE}
44
- }
45
- ```
46
-
47
- or arXiv:
48
-
49
- ```bibtex
50
- @misc{watanabe2018espnet,
51
- title={ESPnet: End-to-End Speech Processing Toolkit},
52
- author={Shinji Watanabe and Takaaki Hori and Shigeki Karita and Tomoki Hayashi and Jiro Nishitoba and Yuya Unno and Nelson Enrique Yalta Soplin and Jahn Heymann and Matthew Wiesner and Nanxin Chen and Adithya Renduchintala and Tsubasa Ochiai},
53
- year={2018},
54
- eprint={1804.00015},
55
- archivePrefix={arXiv},
56
- primaryClass={cs.CL}
57
- }
58
- ```
59
-
60
- ### Training config
61
-
62
- See full config in [`config.yaml`](./config.yaml)
63
-
64
- ```yaml
65
- config: null
66
- print_config: false
67
- log_level: INFO
68
- dry_run: false
69
- iterator_type: sequence
70
- output_dir: exp/asr_train_raw_bpe
71
- ngpu: 1
72
- seed: 0
73
- num_workers: 1
74
- num_att_plot: 3
75
- dist_backend: nccl
76
- dist_init_method: env://
77
- dist_world_size: null
78
- dist_rank: null
79
- local_rank: 0
80
- dist_master_addr: null
81
- dist_master_port: null
82
- dist_launcher: null
83
- multiprocessing_distributed: false
84
- cudnn_enabled: true
85
- cudnn_benchmark: false
86
- cudnn_deterministic: true
87
- ```