Spaces:
Running
Running
Add default space files
Browse files- README.md +11 -28
- old_README.md +30 -0
README.md
CHANGED
@@ -1,30 +1,13 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
### Clone the repository and install
|
10 |
-
|
11 |
-
```sh
|
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 |
-
```
|
|
|
1 |
+
---
|
2 |
+
title: Pvq Manipulation
|
3 |
+
emoji: 🏢
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: purple
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 5.26.0
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
short_description: Testing pvq manipulation for speech synthesis
|
11 |
---
|
12 |
|
13 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
old_README.md
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PVQ Manipulation
|
2 |
+
|
3 |
+
This repository contains code for manipulating perceptual voice quality (PVQ) features, intended for experiments and synthesis using models such as YourTTS.
|
4 |
+
|
5 |
+
---
|
6 |
+
|
7 |
+
## Installation
|
8 |
+
|
9 |
+
### Clone the repository and install
|
10 |
+
|
11 |
+
```sh
|
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 |
+
```
|