ovieyra21 commited on
Commit
4847637
1 Parent(s): bcfd1f2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -7
README.md CHANGED
@@ -1,12 +1,93 @@
1
  ---
2
- license: mit
 
 
 
 
3
  datasets:
4
- - ovieyra21/mabama-v4
5
- language:
6
- - es
7
- metrics:
8
- - bertscore
9
  pipeline_tag: text-to-speech
10
  ---
11
- [Download](/ovieyra21/es_speecht5_tts_mabama/tree/main) them in the Files & versions tab.
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - microsoft/speechtt5
4
+ - audio
5
+ - text-to-speech
6
+ language: es
7
  datasets:
8
+ - mabama-v4
9
+ license: cc-by-4.0
10
+ widget:
11
+ - text: ¿Hola, como estaan?
 
12
  pipeline_tag: text-to-speech
13
  ---
 
14
 
15
+ ## Example ESPnet2 TTS model
16
+
17
+ ### `kan-bayashi/ljspeech_tts_train_tacotron2_raw_phn_tacotron_g2p_en_no_space_train.loss.best`
18
+
19
+ ♻️ Imported from https://zenodo.org/record/3989498#.X90RlOlKjkM
20
+
21
+ This model was trained by kan-bayashi using ljspeech/tts1 recipe in [espnet](https://github.com/espnet/espnet/).
22
+
23
+
24
+
25
+ ### Demo: How to use in ESPnet2
26
+
27
+ ```python
28
+ # coming soon
29
+ ```
30
+
31
+ ### Citing ESPnet
32
+
33
+ ```BibTex
34
+ @inproceedings{watanabe2018espnet,
35
+ 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},
36
+ title={{ESPnet}: End-to-End Speech Processing Toolkit},
37
+ year={2018},
38
+ booktitle={Proceedings of Interspeech},
39
+ pages={2207--2211},
40
+ doi={10.21437/Interspeech.2018-1456},
41
+ url={http://dx.doi.org/10.21437/Interspeech.2018-1456}
42
+ }
43
+ @inproceedings{hayashi2020espnet,
44
+ title={{Espnet-TTS}: Unified, reproducible, and integratable open source end-to-end text-to-speech toolkit},
45
+ 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},
46
+ booktitle={Proceedings of IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
47
+ pages={7654--7658},
48
+ year={2020},
49
+ organization={IEEE}
50
+ }
51
+ ```
52
+
53
+ or arXiv:
54
+
55
+ ```bibtex
56
+ @misc{watanabe2018espnet,
57
+ title={ESPnet: End-to-End Speech Processing Toolkit},
58
+ 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},
59
+ year={2018},
60
+ eprint={1804.00015},
61
+ archivePrefix={arXiv},
62
+ primaryClass={cs.CL}
63
+ }
64
+ ```
65
+
66
+ ### Training config
67
+
68
+ See full config in [`config.yaml`](./config.yaml)
69
+
70
+ ```yaml
71
+ config: conf/tuning/train_tacotron2.yaml
72
+ print_config: false
73
+ log_level: INFO
74
+ dry_run: false
75
+ iterator_type: sequence
76
+ output_dir: exp/tts_train_tacotron2_raw
77
+ ngpu: 1
78
+ seed: 0
79
+ num_workers: 1
80
+ num_att_plot: 3
81
+ dist_backend: nccl
82
+ dist_init_method: env://
83
+ dist_world_size: null
84
+ dist_rank: null
85
+ local_rank: 0
86
+ dist_master_addr: null
87
+ dist_master_port: null
88
+ dist_launcher: null
89
+ multiprocessing_distributed: false
90
+ cudnn_enabled: true
91
+ cudnn_benchmark: false
92
+ cudnn_deterministic: true
93
+ ```