From a8749f5917a1ca3ecdd11587cae455e0325fdc8c Mon Sep 17 00:00:00 2001 From: Sanath Samarasinghe Date: Fri, 25 Oct 2024 03:02:55 +0200 Subject: [PATCH 1/3] Fix legacy key value format issue --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8234395..6e5454d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ RUN apt-get update && \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* -ENV HOME "/root" -ENV CONDA_DIR "${HOME}/miniconda" +ENV HOME="/root" +ENV CONDA_DIR="${HOME}/miniconda" ENV PATH="$CONDA_DIR/bin":$PATH ENV CONDA_AUTO_UPDATE_CONDA=false ENV PIP_DOWNLOAD_CACHE="$HOME/.pip/cache" From 1e54b33554848e134bc47cb0917219884f7f0f3d Mon Sep 17 00:00:00 2001 From: Rithik Sachdev <39690921+rithiksachdev@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:11:49 -0500 Subject: [PATCH 2/3] Update setup.py 13.3.rc doesn't exist --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 13f0e27..807670a 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setuptools.setup( 'scipy', 'librosa', 'transformers==4.31.0', - 'tokenizers==0.13.4.rc3', + 'tokenizers==0.14.0', 'scipy==1.13.1' # 'deepspeed==0.8.3', ], From 68dc80001655289263e66094dae26690595a02c7 Mon Sep 17 00:00:00 2001 From: jub0t Date: Tue, 19 Nov 2024 18:28:54 +0500 Subject: [PATCH 3/3] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6f82564..64c2b80 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ A cool application of Tortoise + GPT-3 (not affiliated with this repository): ht If you want to use this on your own computer, you must have an NVIDIA GPU. -On Windows, I **highly** recommend using the Conda installation method. I have been told that if you do not do this, you -will spend a lot of time chasing dependency problems. +> [!TIP] +> On Windows, I **highly** recommend using the Conda installation method. I have been told that if you do not do this, you will spend a lot of time chasing dependency problems. First, install miniconda: https://docs.conda.io/en/latest/miniconda.html @@ -72,7 +72,8 @@ python setup.py install Optionally, pytorch can be installed in the base environment, so that other conda environments can use it too. To do this, simply send the `conda install pytorch...` line before activating the tortoise environment. -> **Note:** When you want to use tortoise-tts, you will always have to ensure the `tortoise` conda environment is activated. +> [!NOTE] +> When you want to use tortoise-tts, you will always have to ensure the `tortoise` conda environment is activated. If you are on windows, you may also need to install pysoundfile: `conda install -c conda-forge pysoundfile`