Li-Jen commited on
Commit
5fc2262
1 Parent(s): b6de426

Update model

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - espnet
4
+ - audio
5
+ - text-to-speech
6
+ language: zh
7
+ datasets:
8
+ - chatbot
9
+ license: cc-by-4.0
10
+ ---
11
+
12
+ ## ESPnet2 TTS model
13
+
14
+ ### `Lance-yang/gpt_tts`
15
+
16
+ This model was trained by Li-Jen using chatbot recipe in [espnet](https://github.com/espnet/espnet/).
17
+
18
+ ### Demo: How to use in ESPnet2
19
+
20
+ Follow the [ESPnet installation instructions](https://espnet.github.io/espnet/installation.html)
21
+ if you haven't done that already.
22
+
23
+ ```bash
24
+ cd espnet
25
+ git checkout 7403795abbc881759076f4d6bfb8784a57031b31
26
+ pip install -e .
27
+ cd egs2/chatbot/tts1
28
+ ./run.sh --skip_data_prep false --skip_train true --download_model Lance-yang/gpt_tts
29
+ ```
30
+
31
+
32
+
33
+ ## TTS config
34
+
35
+ <details><summary>expand</summary>
36
+
37
+ ```
38
+
39
+ ```
40
+
41
+ </details>
42
+
43
+
44
+
45
+ ### Citing ESPnet
46
+
47
+ ```BibTex
48
+ @inproceedings{watanabe2018espnet,
49
+ author={Shinji Watanabe and Takaaki Hori and Shigeki Karita and Tomoki Hayashi and Jiro Nishitoba and Yuya Unno and Nelson Yalta and Jahn Heymann and Matthew Wiesner and Nanxin Chen and Adithya Renduchintala and Tsubasa Ochiai},
50
+ title={{ESPnet}: End-to-End Speech Processing Toolkit},
51
+ year={2018},
52
+ booktitle={Proceedings of Interspeech},
53
+ pages={2207--2211},
54
+ doi={10.21437/Interspeech.2018-1456},
55
+ url={http://dx.doi.org/10.21437/Interspeech.2018-1456}
56
+ }
57
+
58
+
59
+
60
+
61
+ @inproceedings{hayashi2020espnet,
62
+ title={{Espnet-TTS}: Unified, reproducible, and integratable open source end-to-end text-to-speech toolkit},
63
+ 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},
64
+ booktitle={Proceedings of IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
65
+ pages={7654--7658},
66
+ year={2020},
67
+ organization={IEEE}
68
+ }
69
+ ```
70
+
71
+ or arXiv:
72
+
73
+ ```bibtex
74
+ @misc{watanabe2018espnet,
75
+ title={ESPnet: End-to-End Speech Processing Toolkit},
76
+ author={Shinji Watanabe and Takaaki Hori and Shigeki Karita and Tomoki Hayashi and Jiro Nishitoba and Yuya Unno and Nelson Yalta and Jahn Heymann and Matthew Wiesner and Nanxin Chen and Adithya Renduchintala and Tsubasa Ochiai},
77
+ year={2018},
78
+ eprint={1804.00015},
79
+ archivePrefix={arXiv},
80
+ primaryClass={cs.CL}
81
+ }
82
+ ```