Spaces:
Running
Running
RautenbergFrederik
commited on
Commit
·
6f5a3df
1
Parent(s):
b584386
Update README.md
Browse files
README.md
CHANGED
@@ -12,13 +12,19 @@ This repository contains code for manipulating perceptual voice quality (PVQ) fe
|
|
12 |
git clone https://github.com/FrederikRautenberg/pvq_manipulation.git
|
13 |
cd pvq_manipulation
|
14 |
pip install -e .
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
https://github.com/coqui-ai/TTS
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
https://github.com/fgnt/paderbox
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
git clone https://github.com/FrederikRautenberg/pvq_manipulation.git
|
13 |
cd pvq_manipulation
|
14 |
pip install -e .
|
15 |
+
```
|
16 |
+
|
17 |
+
### Install [YourTTS](https://github.com/coqui-ai/TTS) from
|
18 |
+
```
|
19 |
+
git clone https://github.com/coqui-ai/TTS
|
20 |
+
cd TTS
|
21 |
+
pip install -e .[all,dev,notebooks] # Select the relevant extras
|
22 |
+
```
|
23 |
+
### Make sure that [Paderbox](https://github.com/fgnt/paderbox) and [Padertorch](https://github.com/fgnt/padertorch?tab=readme-ov-file) are installed from
|
24 |
+
```
|
25 |
+
git clone https://github.com/fgnt/paderbox.git
|
26 |
+
cd paderbox
|
27 |
+
pip install --editable .[all]
|
28 |
+
git clone https://github.com/fgnt/padertorch.git
|
29 |
+
cd padertorch && pip install -e .[all]
|
30 |
+
```
|