File tree Expand file tree Collapse file tree 5 files changed +6
-14
lines changed Expand file tree Collapse file tree 5 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 1
1
furo
2
2
myst-parser == 2.0.0
3
- sphinx == 7.0.1
3
+ sphinx == 7.2.5
4
4
sphinx_inline_tabs
5
5
sphinx_copybutton
6
6
linkify-it-py
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Start the container and get a shell inside it.
43
43
``` bash
44
44
docker run --rm -it -p 5002:5002 --entrypoint /bin/bash ghcr.io/coqui-ai/tts-cpu
45
45
python3 TTS/server/server.py --list_models # To get the list of available models
46
- python3 TTS/server/server.py --model_name tts_models/en/vctk/vits
46
+ python3 TTS/server/server.py --model_name tts_models/en/vctk/vits
47
47
```
48
48
49
49
### GPU version
Original file line number Diff line number Diff line change 36
36
There is also the ` callback ` interface by which you can manipulate both the model and the ` Trainer ` states. Callbacks give you
37
37
an infinite flexibility to add custom behaviours for your model and training routines.
38
38
39
- For more details, see {ref}` BaseTTS <Base TTS Model> ` and :obj:` TTS.utils.callbacks ` .
39
+ For more details, see {ref}` BaseTTS <Base tts Model> ` and :obj:` TTS.utils.callbacks ` .
40
40
41
41
6 . Optionally, define ` MyModelArgs ` .
42
42
@@ -204,5 +204,3 @@ class MyModel(BaseTTS):
204
204
pass
205
205
206
206
```
207
-
208
-
Original file line number Diff line number Diff line change @@ -5,18 +5,18 @@ Model API provides you a set of functions that easily make your model compatible
5
5
## Base TTS Model
6
6
7
7
``` {eval-rst}
8
- .. autoclass:: TTS.model.BaseModel
8
+ .. autoclass:: TTS.model.BaseTrainerModel
9
9
:members:
10
10
```
11
11
12
- ## Base ` tts ` Model
12
+ ## Base tts Model
13
13
14
14
``` {eval-rst}
15
15
.. autoclass:: TTS.tts.models.base_tts.BaseTTS
16
16
:members:
17
17
```
18
18
19
- ## Base ` vocoder ` Model
19
+ ## Base vocoder Model
20
20
21
21
``` {eval-rst}
22
22
.. autoclass:: TTS.vocoder.models.base_vocoder.BaseVocoder
Original file line number Diff line number Diff line change @@ -91,12 +91,6 @@ tts --model_name tts_models/multilingual/multi-dataset/bark \
91
91
:members:
92
92
```
93
93
94
- ## BarkArgs
95
- ``` {eval-rst}
96
- .. autoclass:: TTS.tts.models.bark.BarkArgs
97
- :members:
98
- ```
99
-
100
94
## Bark Model
101
95
``` {eval-rst}
102
96
.. autoclass:: TTS.tts.models.bark.Bark
You can’t perform that action at this time.
0 commit comments