Skip to content

Commit

Permalink
Change default Larynx noise scale to 0.667
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Oct 21, 2021
1 parent 4ace91e commit 6496fbd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ tts:
Default settings for [Larynx](https://github.com/rhasspy/larynx) can be provided on the command-line:

* `--larynx-quality` - vocoder quality ("high", "medium", or "low", default: "high")
* `--larynx-noise-scale` - voice volatility (0-1, default: 0.333)
* `--larynx-noise-scale` - voice volatility (0-1, default: 0.667)
* `--larynx-length-scale` - voice speed (< 1 is faster, default: 1.0)

---
Expand Down
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@
parser.add_argument(
"--larynx-noise-scale",
type=float,
default=0.333,
help="Larynx noise scale (voice volatility) to use if not specified in API call (default: 0.333)",
default=0.667,
help="Larynx noise scale (voice volatility) to use if not specified in API call (default: 0.667)",
)
parser.add_argument(
"--larynx-length-scale",
Expand Down
2 changes: 1 addition & 1 deletion larynx/glow_tts.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self, config: TextToSpeechModelConfig):
str(generator_path), sess_options=config.session_options
)

self.noise_scale = 0.333
self.noise_scale = 0.667
self.length_scale = 1.0

# -------------------------------------------------------------------------
Expand Down

0 comments on commit 6496fbd

Please sign in to comment.