Update README.md
Browse files
README.md
CHANGED
@@ -49,32 +49,32 @@ The quality of the samples can vary depending on the speaker.
|
|
49 |
This may be due to the sensitivity of the model in learning specific frequencies and also due to the samples used for each speaker.
|
50 |
|
51 |
## How to use
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
print(f"Result: {generation[0]['generated_text']}")
|
76 |
```
|
77 |
|
|
|
|
|
78 |
## Training
|
79 |
|
80 |
### Adaptation
|
|
|
49 |
This may be due to the sensitivity of the model in learning specific frequencies and also due to the samples used for each speaker.
|
50 |
|
51 |
## How to use
|
52 |
+
|
53 |
+
### Installation
|
54 |
+
|
55 |
+
```bash
|
56 |
+
pip install git+https://github.com/langtech-bsc/vocos.git@matcha
|
57 |
+
```
|
58 |
+
You need to install the Catalan phonemizer version of espeak-ng:
|
59 |
+
|
60 |
+
```bash
|
61 |
+
git clone https://github.com/projecte-aina/espeak-ng.git
|
62 |
+
|
63 |
+
export PYTHON=/path/to/env/<env_name>/bin/python
|
64 |
+
cd /path/to/espeak-ng
|
65 |
+
./autogen.sh
|
66 |
+
./configure --prefix=/path/to/espeak-ng
|
67 |
+
make
|
68 |
+
make install
|
69 |
+
|
70 |
+
pip cache purge
|
71 |
+
pip install mecab-python3
|
72 |
+
pip install unidic-lite
|
73 |
+
|
|
|
|
|
74 |
```
|
75 |
|
76 |
+
### Generate
|
77 |
+
|
78 |
## Training
|
79 |
|
80 |
### Adaptation
|