Shanuka01 commited on
Commit
ad2ec01
·
1 Parent(s): d5df5b2

Upload 570 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +3 -0
  2. CITATION.cff +10 -0
  3. Dockerfile +34 -0
  4. LICENSE +201 -0
  5. MANIFEST.in +2 -0
  6. README2.md +53 -0
  7. app.py +113 -0
  8. examples/favorite_riding_hood.mp3 +0 -0
  9. examples/favorites/atkins_mha.mp3 +0 -0
  10. examples/favorites/atkins_omicron.mp3 +0 -0
  11. examples/favorites/atkins_value.mp3 +0 -0
  12. examples/favorites/daniel_craig_dumbledore.mp3 +0 -0
  13. examples/favorites/daniel_craig_training_ethics.mp3 +0 -0
  14. examples/favorites/dotrice_stop_for_death.mp3 +0 -0
  15. examples/favorites/emma_stone_courage.mp3 +0 -0
  16. examples/favorites/emma_stone_training_ethics.mp3 +0 -0
  17. examples/favorites/halle_barry_dumbledore.mp3 +0 -0
  18. examples/favorites/halle_barry_oar_to_oar.mp3 +0 -0
  19. examples/favorites/henry_cavill_metallic_hydrogen.mp3 +0 -0
  20. examples/favorites/kennard_road_not_taken.mp3 +0 -0
  21. examples/favorites/morgan_freeman_metallic_hydrogen.mp3 +0 -0
  22. examples/favorites/myself_gatsby.mp3 +0 -0
  23. examples/favorites/patrick_stewart_omicron.mp3 +0 -0
  24. examples/favorites/patrick_stewart_secret_of_life.mp3 +0 -0
  25. examples/favorites/robert_deniro_review.mp3 +0 -0
  26. examples/favorites/william_shatner_spacecraft_interview.mp3 +0 -0
  27. examples/finetuned/lj/1.mp3 +0 -0
  28. examples/finetuned/lj/2.mp3 +0 -0
  29. examples/finetuned/lj/3.mp3 +0 -0
  30. examples/finetuned/lj/4.mp3 +0 -0
  31. examples/naturalspeech_comparison/fibers/naturalspeech.mp3 +0 -0
  32. examples/naturalspeech_comparison/fibers/tortoise.mp3 +0 -0
  33. examples/naturalspeech_comparison/lax/naturalspeech.mp3 +0 -0
  34. examples/naturalspeech_comparison/lax/tortoise.mp3 +0 -0
  35. examples/naturalspeech_comparison/maltby/naturalspeech.mp3 +0 -0
  36. examples/naturalspeech_comparison/maltby/tortoise.mp3 +0 -0
  37. examples/prompting/angry.mp3 +0 -0
  38. examples/prompting/happy.mp3 +0 -0
  39. examples/prompting/sad.mp3 +0 -0
  40. examples/prompting/scared.mp3 +0 -0
  41. examples/riding_hood/angelina.mp3 +0 -0
  42. examples/riding_hood/craig.mp3 +0 -0
  43. examples/riding_hood/deniro.mp3 +0 -0
  44. examples/riding_hood/emma.mp3 +0 -0
  45. examples/riding_hood/freeman.mp3 +0 -0
  46. examples/riding_hood/geralt.mp3 +0 -0
  47. examples/riding_hood/halle.mp3 +0 -0
  48. examples/riding_hood/jlaw.mp3 +0 -0
  49. examples/riding_hood/lj.mp3 +0 -0
  50. examples/riding_hood/myself.mp3 +0 -0
.gitattributes CHANGED
@@ -33,3 +33,6 @@ 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
+ tortoise/voices/angie/2.wav filter=lfs diff=lfs merge=lfs -text
37
+ tortoise/voices/deniro/2.wav filter=lfs diff=lfs merge=lfs -text
38
+ tortoise/voices/train_lescault/lescault_new4.wav filter=lfs diff=lfs merge=lfs -text
CITATION.cff ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.3.0
2
+ message: "If you use this software, please cite it as below."
3
+ authors:
4
+ - family-names: "Betker"
5
+ given-names: "James"
6
+ orcid: "https://orcid.org/my-orcid?orcid=0000-0003-3259-4862"
7
+ title: "TorToiSe text-to-speech"
8
+ version: 2.0
9
+ date-released: 2022-04-28
10
+ url: "https://github.com/neonbjb/tortoise-tts"
Dockerfile ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvidia/cuda:12.2.0-base-ubuntu22.04
2
+
3
+ COPY . /app
4
+
5
+ RUN apt-get update && \
6
+ apt-get install -y --allow-unauthenticated --no-install-recommends \
7
+ wget \
8
+ git \
9
+ && apt-get autoremove -y \
10
+ && apt-get clean -y \
11
+ && rm -rf /var/lib/apt/lists/*
12
+
13
+ ENV HOME "/root"
14
+ ENV CONDA_DIR "${HOME}/miniconda"
15
+ ENV PATH="$CONDA_DIR/bin":$PATH
16
+ ENV CONDA_AUTO_UPDATE_CONDA=false
17
+ ENV PIP_DOWNLOAD_CACHE="$HOME/.pip/cache"
18
+ ENV TORTOISE_MODELS_DIR
19
+
20
+ RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda3.sh \
21
+ && bash /tmp/miniconda3.sh -b -p "${CONDA_DIR}" -f -u \
22
+ && "${CONDA_DIR}/bin/conda" init bash \
23
+ && rm -f /tmp/miniconda3.sh \
24
+ && echo ". '${CONDA_DIR}/etc/profile.d/conda.sh'" >> "${HOME}/.profile"
25
+
26
+ # --login option used to source bashrc (thus activating conda env) at every RUN statement
27
+ SHELL ["/bin/bash", "--login", "-c"]
28
+
29
+ RUN conda create --name tortoise python=3.9 numba inflect \
30
+ && conda activate tortoise \
31
+ && conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia \
32
+ && conda install transformers=4.29.2 \
33
+ && cd /app \
34
+ && python setup.py install
LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
MANIFEST.in ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ recursive-include tortoise/data *
2
+ recursive-include tortoise/voices *
README2.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Check out original repo for more details and usage: [Original Repo](https://github.com/neonbjb/tortoise-tts)
2
+
3
+ # Windows Install
4
+ 1. Create and activate new conda environment.
5
+ ```
6
+ conda create --name tortoise-WebUI python=3.9 -y && conda activate tortoise-WebUI
7
+ ```
8
+
9
+ 2. Install pytorch.
10
+ ```
11
+ conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia -y
12
+ ```
13
+
14
+ 3. Confirm CUDA is available
15
+ ```
16
+ python
17
+ import torch
18
+ torch.cuda.is_available()
19
+ exit()
20
+
21
+ ```
22
+
23
+ 4. Clone the repository and cd into the new folder
24
+ ```
25
+ git clone https://github.com/natlamir/tortoise-WebUI.git && cd tortoise-WebUI
26
+ ```
27
+
28
+ 5. Install dependencies
29
+ ```
30
+ pip install -r requirements.txt
31
+ ```
32
+
33
+ 6. Install pysoundfile
34
+ ```
35
+ conda install -c conda-forge pysoundfile -y
36
+ ```
37
+
38
+ 7. Run tortoise setup file
39
+ ```
40
+ python setup.py install
41
+ ```
42
+
43
+ # Usage
44
+ Using the example command from original repo
45
+ ```
46
+ python tortoise/do_tts.py --text "we have now re-installed tortoise. enjoy!" --voice random --preset fast
47
+ ```
48
+
49
+ Or use this command to locally run the gradio web UI (same as the one from [huggingface space](https://huggingface.co/spaces/Manmay/tortoise-tts)) with some modifications to be able to use locally
50
+ ```
51
+ python app.py
52
+ ```
53
+
app.py ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ import gradio as gr
4
+ import torchaudio
5
+ import time
6
+ import numpy as np
7
+ from datetime import datetime
8
+ from tortoise.api import TextToSpeech, MODELS_DIR
9
+ from tortoise.utils.text import split_and_recombine_text
10
+ from tortoise.utils.audio import load_audio, load_voice, load_voices
11
+
12
+ VOICE_OPTIONS = []
13
+
14
+ def inference(
15
+ text,
16
+ script,
17
+ voice,
18
+ voice_b,
19
+ seed,
20
+ split_by_newline,
21
+ ):
22
+ if text is None or text.strip() == "":
23
+ with open(script.name) as f:
24
+ text = f.read()
25
+ if text.strip() == "":
26
+ raise gr.Error("Please provide either text or script file with content.")
27
+
28
+ if split_by_newline == "Yes":
29
+ texts = list(filter(lambda x: x.strip() != "", text.split("\n")))
30
+ else:
31
+ texts = split_and_recombine_text(text)
32
+
33
+ voices = [voice]
34
+ if voice_b != "disabled":
35
+ voices.append(voice_b)
36
+
37
+ if len(voices) == 1:
38
+ voice_samples, conditioning_latents = load_voice(voice)
39
+ else:
40
+ voice_samples, conditioning_latents = load_voices(voices)
41
+
42
+ start_time = time.time()
43
+
44
+ gen, dbg_state = tts.tts_with_preset(text=text, k=1, voice_samples=voice_samples, conditioning_latents=conditioning_latents,
45
+ preset='fast', use_deterministic_seed=None, return_deterministic_state=True, cvvp_amount=.0)
46
+
47
+ sep_segment = gen.squeeze(0).squeeze(0).data.cpu().numpy()
48
+ return 24000, np.round(sep_segment * 32767).astype(np.int16)
49
+
50
+ def main():
51
+ title = "Tortoise TTS 🐢"
52
+ description = """
53
+ A text-to-speech system which powers lot of organizations in Speech synthesis domain.
54
+ <br/>
55
+ a model with strong multi-voice capabilities, highly realistic prosody and intonation.
56
+ <br/>
57
+ for faster inference, use the 'ultra_fast' preset and duplicate space if you don't want to wait in a queue.
58
+ <br/>
59
+ """
60
+
61
+ for root, dirs, files in os.walk("tortoise/voices"):
62
+ for folder in dirs:
63
+ VOICE_OPTIONS.append(folder)
64
+
65
+ text = gr.Textbox(
66
+ lines=4,
67
+ label="Text (Provide either text, or upload a newline separated text file below):",
68
+ )
69
+ script = gr.File(label="Upload a text file")
70
+
71
+ voice = gr.Dropdown(
72
+ VOICE_OPTIONS, value="jane_eyre", label="Select voice:", type="value"
73
+ )
74
+ voice_b = gr.Dropdown(
75
+ VOICE_OPTIONS,
76
+ value="disabled",
77
+ label="(Optional) Select second voice:",
78
+ type="value",
79
+ )
80
+ split_by_newline = gr.Radio(
81
+ ["Yes", "No"],
82
+ label="Split by newline (If [No], it will automatically try to find relevant splits):",
83
+ type="value",
84
+ value="No",
85
+ )
86
+
87
+ output_audio = gr.Audio(label="streaming audio:", scale=10)
88
+ # download_audio = gr.Audio(label="dowanload audio:")
89
+ interface = gr.Interface(
90
+ fn=inference,
91
+ inputs=[
92
+ text,
93
+ script,
94
+ voice,
95
+ voice_b,
96
+ split_by_newline,
97
+ ],
98
+ title=title,
99
+ description=description,
100
+ outputs=[output_audio],
101
+ )
102
+ interface.queue().launch(inbrowser=True)
103
+
104
+ if __name__ == "__main__":
105
+ #tts = TextToSpeech(kv_cache=True, use_deepspeed=False, half=True)
106
+ tts = TextToSpeech(models_dir=MODELS_DIR, use_deepspeed=False, kv_cache=True, half=True)
107
+
108
+ with open("Tortoise_TTS_Runs_Scripts.log", "a") as f:
109
+ f.write(
110
+ f"\n\n-------------------------Tortoise TTS Scripts Logs, {datetime.now()}-------------------------\n"
111
+ )
112
+
113
+ main()
examples/favorite_riding_hood.mp3 ADDED
Binary file (970 kB). View file
 
examples/favorites/atkins_mha.mp3 ADDED
Binary file (31.6 kB). View file
 
examples/favorites/atkins_omicron.mp3 ADDED
Binary file (41.3 kB). View file
 
examples/favorites/atkins_value.mp3 ADDED
Binary file (18.5 kB). View file
 
examples/favorites/daniel_craig_dumbledore.mp3 ADDED
Binary file (24 kB). View file
 
examples/favorites/daniel_craig_training_ethics.mp3 ADDED
Binary file (48.9 kB). View file
 
examples/favorites/dotrice_stop_for_death.mp3 ADDED
Binary file (28.8 kB). View file
 
examples/favorites/emma_stone_courage.mp3 ADDED
Binary file (34.1 kB). View file
 
examples/favorites/emma_stone_training_ethics.mp3 ADDED
Binary file (48 kB). View file
 
examples/favorites/halle_barry_dumbledore.mp3 ADDED
Binary file (21.5 kB). View file
 
examples/favorites/halle_barry_oar_to_oar.mp3 ADDED
Binary file (40.9 kB). View file
 
examples/favorites/henry_cavill_metallic_hydrogen.mp3 ADDED
Binary file (32 kB). View file
 
examples/favorites/kennard_road_not_taken.mp3 ADDED
Binary file (28.5 kB). View file
 
examples/favorites/morgan_freeman_metallic_hydrogen.mp3 ADDED
Binary file (35.4 kB). View file
 
examples/favorites/myself_gatsby.mp3 ADDED
Binary file (28.1 kB). View file
 
examples/favorites/patrick_stewart_omicron.mp3 ADDED
Binary file (37.6 kB). View file
 
examples/favorites/patrick_stewart_secret_of_life.mp3 ADDED
Binary file (36.5 kB). View file
 
examples/favorites/robert_deniro_review.mp3 ADDED
Binary file (36.1 kB). View file
 
examples/favorites/william_shatner_spacecraft_interview.mp3 ADDED
Binary file (47.3 kB). View file
 
examples/finetuned/lj/1.mp3 ADDED
Binary file (38.2 kB). View file
 
examples/finetuned/lj/2.mp3 ADDED
Binary file (26.1 kB). View file
 
examples/finetuned/lj/3.mp3 ADDED
Binary file (18.5 kB). View file
 
examples/finetuned/lj/4.mp3 ADDED
Binary file (22.9 kB). View file
 
examples/naturalspeech_comparison/fibers/naturalspeech.mp3 ADDED
Binary file (33.1 kB). View file
 
examples/naturalspeech_comparison/fibers/tortoise.mp3 ADDED
Binary file (33.5 kB). View file
 
examples/naturalspeech_comparison/lax/naturalspeech.mp3 ADDED
Binary file (41 kB). View file
 
examples/naturalspeech_comparison/lax/tortoise.mp3 ADDED
Binary file (42.3 kB). View file
 
examples/naturalspeech_comparison/maltby/naturalspeech.mp3 ADDED
Binary file (35.1 kB). View file
 
examples/naturalspeech_comparison/maltby/tortoise.mp3 ADDED
Binary file (36.9 kB). View file
 
examples/prompting/angry.mp3 ADDED
Binary file (7.63 kB). View file
 
examples/prompting/happy.mp3 ADDED
Binary file (8.3 kB). View file
 
examples/prompting/sad.mp3 ADDED
Binary file (6.29 kB). View file
 
examples/prompting/scared.mp3 ADDED
Binary file (6.86 kB). View file
 
examples/riding_hood/angelina.mp3 ADDED
Binary file (866 kB). View file
 
examples/riding_hood/craig.mp3 ADDED
Binary file (826 kB). View file
 
examples/riding_hood/deniro.mp3 ADDED
Binary file (851 kB). View file
 
examples/riding_hood/emma.mp3 ADDED
Binary file (807 kB). View file
 
examples/riding_hood/freeman.mp3 ADDED
Binary file (943 kB). View file
 
examples/riding_hood/geralt.mp3 ADDED
Binary file (788 kB). View file
 
examples/riding_hood/halle.mp3 ADDED
Binary file (785 kB). View file
 
examples/riding_hood/jlaw.mp3 ADDED
Binary file (667 kB). View file
 
examples/riding_hood/lj.mp3 ADDED
Binary file (817 kB). View file
 
examples/riding_hood/myself.mp3 ADDED
Binary file (951 kB). View file