Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
654aa69f12 |
|
@ -1,6 +1,6 @@
|
||||||
# AI Voice Cloning
|
# AI Voice Cloning
|
||||||
|
|
||||||
> **Note** This project is effectively abandonware due to requiring a rewrite. Please use [JarodMica/ai-voice-cloning](https://github.com/JarodMica/ai-voice-cloning).
|
> **Note** This project has been in dire need of being rewritten from the ground up for some time. Apologies for any crust from my rather spaghetti code.
|
||||||
|
|
||||||
This [repo](https://git.ecker.tech/mrq/ai-voice-cloning)/[rentry](https://rentry.org/AI-Voice-Cloning/) aims to serve as both a foolproof guide for setting up AI voice cloning tools for legitimate, local use on Windows/Linux, as well as a stepping stone for anons that genuinely want to play around with [TorToiSe](https://github.com/neonbjb/tortoise-tts).
|
This [repo](https://git.ecker.tech/mrq/ai-voice-cloning)/[rentry](https://rentry.org/AI-Voice-Cloning/) aims to serve as both a foolproof guide for setting up AI voice cloning tools for legitimate, local use on Windows/Linux, as well as a stepping stone for anons that genuinely want to play around with [TorToiSe](https://github.com/neonbjb/tortoise-tts).
|
||||||
|
|
||||||
|
|
22
setup-cpu.sh
Executable file
22
setup-cpu.sh
Executable file
|
@ -0,0 +1,22 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# get local dependencies
|
||||||
|
git submodule init
|
||||||
|
git submodule update --remote
|
||||||
|
# setup venv
|
||||||
|
python3 -m venv venv
|
||||||
|
source ./venv/bin/activate
|
||||||
|
python3 -m pip install --upgrade pip # just to be safe
|
||||||
|
# CUDA
|
||||||
|
#pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
|
||||||
|
# CPU
|
||||||
|
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
|
||||||
|
# install requirements
|
||||||
|
python3 -m pip install -r ./modules/tortoise-tts/requirements.txt # install TorToiSe requirements
|
||||||
|
python3 -m pip install -e ./modules/tortoise-tts/ # install TorToiSe
|
||||||
|
python3 -m pip install -r ./modules/dlas/requirements.txt # instal DLAS requirements, last, because whisperx will break a dependency here
|
||||||
|
python3 -m pip install -e ./modules/dlas/ # install DLAS
|
||||||
|
python3 -m pip install -r ./requirements.txt # install local requirements
|
||||||
|
|
||||||
|
rm *.bat
|
||||||
|
|
||||||
|
deactivate
|
Loading…
Reference in New Issue
Block a user