Update README.md
Browse files
README.md
CHANGED
@@ -70,15 +70,11 @@ library_name: outetts
|
|
70 |
> **Important Sampling Considerations**
|
71 |
>
|
72 |
> When using OuteTTS version 1.0, it is crucial to use the settings specified in the [Sampling Configuration](#sampling-configuration) section.
|
73 |
-
>
|
74 |
> The **repetition penalty implementation** is particularly important - this model requires penalization applied to a **64-token recent window**,
|
75 |
> rather than across the entire context window. Penalizing the entire context will cause the model to produce **broken or low-quality output**.
|
76 |
>
|
77 |
-
>
|
78 |
-
>
|
79 |
-
>
|
80 |
-
> To address this limitation, I've implemented a **windowed repetition penalty** for the **Hugging Face Transformers** backend in the **OuteTTS** library,
|
81 |
-
> which significantly improves output quality and resolves sampling issues, providing comparable results to llama.cpp.
|
82 |
|
83 |
# OuteTTS Version 1.0
|
84 |
|
|
|
70 |
> **Important Sampling Considerations**
|
71 |
>
|
72 |
> When using OuteTTS version 1.0, it is crucial to use the settings specified in the [Sampling Configuration](#sampling-configuration) section.
|
|
|
73 |
> The **repetition penalty implementation** is particularly important - this model requires penalization applied to a **64-token recent window**,
|
74 |
> rather than across the entire context window. Penalizing the entire context will cause the model to produce **broken or low-quality output**.
|
75 |
>
|
76 |
+
> To address this limitation, all necessary samplers and patches for all backends are set up automatically in the **outetts** library.
|
77 |
+
> If using a custom implementation, ensure you correctly implement these requirements.
|
|
|
|
|
|
|
78 |
|
79 |
# OuteTTS Version 1.0
|
80 |
|