├── README.md
├── LICENSE
├── tortoise_tts_mrq_colab.ipynb
└── tortoise_tts_colab.ipynb
/README.md:
--------------------------------------------------------------------------------
1 | 🐣 Please follow me for new updates https://twitter.com/camenduru
2 | 🔥 Please join our discord server https://discord.gg/k5BwmmvJJU
3 | 🥳 Please join my patreon community https://patreon.com/camenduru
4 |
5 | ## 🦒 Colab
6 |
7 | | Colab | Info
8 | | --- | --- |
9 | [](https://colab.research.google.com/github/camenduru/tortoise-tts-colab/blob/main/tortoise_tts_colab.ipynb) | tortoise_tts_colab
10 | [](https://colab.research.google.com/github/camenduru/tortoise-tts-colab/blob/main/tortoise_tts_mrq_colab.ipynb) | tortoise_tts_mrq_colab [wiki](https://git.ecker.tech/mrq/ai-voice-cloning/wiki)
thanks to [mrq/ai-voice-cloning](https://git.ecker.tech/mrq/ai-voice-cloning) ❤
thanks to @zabinzsur for the suggestion ❤
11 |
12 | ## Main Repo
13 | https://github.com/neonbjb/tortoise-tts
14 | https://huggingface.co/spaces/mdnestor/tortoise/tree/main
15 |
16 | ## Page
17 | https://nonint.com/static/tortoise_v2_examples.html
18 |
19 | ## Paper
20 | https://arxiv.org/abs/2305.07243
21 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | This is free and unencumbered software released into the public domain.
2 |
3 | Anyone is free to copy, modify, publish, use, compile, sell, or
4 | distribute this software, either in source code form or as a compiled
5 | binary, for any purpose, commercial or non-commercial, and by any
6 | means.
7 |
8 | In jurisdictions that recognize copyright laws, the author or authors
9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
24 | For more information, please refer to
25 |
--------------------------------------------------------------------------------
/tortoise_tts_mrq_colab.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "cells": [
3 | {
4 | "cell_type": "markdown",
5 | "metadata": {
6 | "id": "view-in-github"
7 | },
8 | "source": [
9 | "[](https://colab.research.google.com/github/camenduru/tortoise-tts-colab/blob/main/tortoise_tts_mrq_colab.ipynb)"
10 | ]
11 | },
12 | {
13 | "cell_type": "code",
14 | "execution_count": null,
15 | "metadata": {
16 | "id": "FtsMKKfH18iM"
17 | },
18 | "outputs": [],
19 | "source": [
20 | "!apt install python3.8-venv\n",
21 | "!git clone https://git.ecker.tech/camenduru/ai-voice-cloning\n",
22 | "%cd /content/ai-voice-cloning\n",
23 | "!./setup-cuda.sh\n",
24 | "\n",
25 | "%cd /content/ai-voice-cloning/\n",
26 | "!./start.sh --share"
27 | ]
28 | }
29 | ],
30 | "metadata": {
31 | "accelerator": "GPU",
32 | "colab": {
33 | "private_outputs": true,
34 | "provenance": []
35 | },
36 | "gpuClass": "standard",
37 | "kernelspec": {
38 | "display_name": "Python 3",
39 | "name": "python3"
40 | },
41 | "language_info": {
42 | "name": "python"
43 | }
44 | },
45 | "nbformat": 4,
46 | "nbformat_minor": 0
47 | }
48 |
--------------------------------------------------------------------------------
/tortoise_tts_colab.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "nbformat": 4,
3 | "nbformat_minor": 0,
4 | "metadata": {
5 | "colab": {
6 | "provenance": [],
7 | "gpuType": "T4"
8 | },
9 | "kernelspec": {
10 | "name": "python3",
11 | "display_name": "Python 3"
12 | },
13 | "language_info": {
14 | "name": "python"
15 | },
16 | "accelerator": "GPU"
17 | },
18 | "cells": [
19 | {
20 | "cell_type": "markdown",
21 | "metadata": {
22 | "id": "view-in-github"
23 | },
24 | "source": [
25 | "[](https://colab.research.google.com/github/camenduru/tortoise-tts-colab/blob/main/tortoise_tts_colab.ipynb)"
26 | ]
27 | },
28 | {
29 | "cell_type": "code",
30 | "execution_count": null,
31 | "metadata": {
32 | "id": "CezP9y36zeQ3"
33 | },
34 | "outputs": [],
35 | "source": [
36 | "%cd /content\n",
37 | "!git clone -b dev https://github.com/camenduru/tortoise-hf\n",
38 | "%cd /content/tortoise-hf\n",
39 | "!git clone -b v1.0 https://github.com/camenduru/tortoise-tts\n",
40 | "\n",
41 | "!pip install gradio scipy -U\n",
42 | "%cd /content/tortoise-hf/tortoise-tts\n",
43 | "!pip install transformers==4.19.0\n",
44 | "!pip install -r requirements.txt\n",
45 | "!python setup.py install\n",
46 | "\n",
47 | "%cd /content/tortoise-hf\n",
48 | "!python app.py"
49 | ]
50 | }
51 | ]
52 | }
--------------------------------------------------------------------------------