use_deepspeed giving me trouble on Windows10/RTX 2070 #833
Unanswered
anthonyj-codestuff
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just wiped out my tortoise setup and reinstalled everything. It doesn't take THAT long to generate a phrase (~10 min/350 chars), but I'd still like an extra boost if I can get it.
E:\Projects\tts>pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
I skipped the bit about setting up a "pythonenv" environment because the base "tortoise" env is already set up for Python 3.9.20
(tortoise) E:\Projects\tts>conda install pytorch torchvision torchaudio pytorch-cuda=12.1 transformers -c pytorch -c nvidia
setup.py install
, I downloaded DeepSpeed 0.8.3, built a shiny newdeepspeed-0.8.3+unknown-cp39-cp39-win_amd64.whl
, and installed it from the "tortoise" environmentNOW I can run python
...\do_tts.py
and it works just fine, but if I try to run something like(tortoise) E:\Projects\tts>python "..\Tortoise TTS\tortoise\do_tts.py" --text "test voice says a thing" --voice random --preset standard --output_path .\audio --candidates 1 --use_deepspeed true
I get the lengthy error
I'm not sure what the
torch.load with weights_only=False
thing is all about, but it started popping up after I updated the repo and rebuilt the "tortoise" env. It doesn't seem to affect the audio generation. Not sure how to approach the DeepSpeedMonitorConfig error, but based on the suggestion here, it seems like maybe uninstalling Pydantic before installing Tortoise could work, but that just led to issues withtokenizers
not cooperating with the installAm I missing something obvious?
Beta Was this translation helpful? Give feedback.
All reactions