Update docs

This commit is contained in:
Eren G??lge 2023-09-04 12:24:49 +02:00
parent 04a36a727b
commit 346e3de87c
5 changed files with 6 additions and 14 deletions

View File

@ -1,6 +1,6 @@
furo furo
myst-parser == 2.0.0 myst-parser == 2.0.0
sphinx == 7.0.1 sphinx == 7.2.5
sphinx_inline_tabs sphinx_inline_tabs
sphinx_copybutton sphinx_copybutton
linkify-it-py linkify-it-py

View File

@ -36,7 +36,7 @@
There is also the `callback` interface by which you can manipulate both the model and the `Trainer` states. Callbacks give you There is also the `callback` interface by which you can manipulate both the model and the `Trainer` states. Callbacks give you
an infinite flexibility to add custom behaviours for your model and training routines. an infinite flexibility to add custom behaviours for your model and training routines.
For more details, see {ref}`BaseTTS <Base TTS Model>` and :obj:`TTS.utils.callbacks`. For more details, see {ref}`BaseTTS <Base tts Model>` and :obj:`TTS.utils.callbacks`.
6. Optionally, define `MyModelArgs`. 6. Optionally, define `MyModelArgs`.
@ -204,5 +204,3 @@ class MyModel(BaseTTS):
pass pass
``` ```

View File

@ -5,18 +5,18 @@ Model API provides you a set of functions that easily make your model compatible
## Base TTS Model ## Base TTS Model
```{eval-rst} ```{eval-rst}
.. autoclass:: TTS.model.BaseModel .. autoclass:: TTS.model.BaseTrainerModel
:members: :members:
``` ```
## Base `tts` Model ## Base tts Model
```{eval-rst} ```{eval-rst}
.. autoclass:: TTS.tts.models.base_tts.BaseTTS .. autoclass:: TTS.tts.models.base_tts.BaseTTS
:members: :members:
``` ```
## Base `vocoder` Model ## Base vocoder Model
```{eval-rst} ```{eval-rst}
.. autoclass:: TTS.vocoder.models.base_vocoder.BaseVocoder .. autoclass:: TTS.vocoder.models.base_vocoder.BaseVocoder

View File

@ -91,12 +91,6 @@ tts --model_name tts_models/multilingual/multi-dataset/bark \
:members: :members:
``` ```
## BarkArgs
```{eval-rst}
.. autoclass:: TTS.tts.models.bark.BarkArgs
:members:
```
## Bark Model ## Bark Model
```{eval-rst} ```{eval-rst}
.. autoclass:: TTS.tts.models.bark.Bark .. autoclass:: TTS.tts.models.bark.Bark