separate torch pkg install
Browse files- README.md +7 -0
- requirements.txt +2 -2
README.md
CHANGED
@@ -25,6 +25,13 @@ Install packages:
|
|
25 |
pip install -r requirements.txt
|
26 |
```
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
## Prepare Dataset
|
29 |
|
30 |
Example data processing scripts for Emilia and Wenetspeech4TTS, and you may tailor your own one along with a Dataset class in `model/dataset.py`.
|
|
|
25 |
pip install -r requirements.txt
|
26 |
```
|
27 |
|
28 |
+
Install torch with your CUDA version, e.g. :
|
29 |
+
|
30 |
+
```bash
|
31 |
+
pip install torch==2.3.0+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
|
32 |
+
pip install torchaudio==2.3.0+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
|
33 |
+
```
|
34 |
+
|
35 |
## Prepare Dataset
|
36 |
|
37 |
Example data processing scripts for Emilia and Wenetspeech4TTS, and you may tailor your own one along with a Dataset class in `model/dataset.py`.
|
requirements.txt
CHANGED
@@ -10,8 +10,8 @@ jiwer
|
|
10 |
librosa
|
11 |
matplotlib
|
12 |
pypinyin
|
13 |
-
torch>=2.0
|
14 |
-
torchaudio>=2.3.0
|
15 |
torchdiffeq
|
16 |
tqdm>=4.65.0
|
17 |
transformers
|
|
|
10 |
librosa
|
11 |
matplotlib
|
12 |
pypinyin
|
13 |
+
# torch>=2.0
|
14 |
+
# torchaudio>=2.3.0
|
15 |
torchdiffeq
|
16 |
tqdm>=4.65.0
|
17 |
transformers
|