mirror of
https://github.com/TaterTotterson/microWakeWord-Trainer-Nvidia-Docker.git
synced 2026-06-12 20:10:19 -06:00
piper speaking speeds
This commit is contained in:
@@ -232,7 +232,7 @@
|
|||||||
},
|
},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"# Generate a large number of wake word samples for training\n",
|
"# Generate a large number of wake word samples for training (with length-scale sweep)\n",
|
||||||
"import sys, subprocess\n",
|
"import sys, subprocess\n",
|
||||||
"from pathlib import Path\n",
|
"from pathlib import Path\n",
|
||||||
"\n",
|
"\n",
|
||||||
@@ -240,14 +240,21 @@
|
|||||||
"MODELS_DIR = REPO_DIR / \"models\"\n",
|
"MODELS_DIR = REPO_DIR / \"models\"\n",
|
||||||
"MODEL_NAME = \"en_US-libritts_r-medium.pt\"\n",
|
"MODEL_NAME = \"en_US-libritts_r-medium.pt\"\n",
|
||||||
"\n",
|
"\n",
|
||||||
|
"MAX_SAMPLES = 50000\n",
|
||||||
|
"BATCH_SIZE = 100\n",
|
||||||
|
"\n",
|
||||||
|
"# Piper \"speed\" control via piper-sample-generator is length_scale(s)\n",
|
||||||
|
"LENGTH_SCALES = [\"0.85\", \"0.95\", \"1.00\", \"1.05\", \"1.15\"]\n",
|
||||||
|
"\n",
|
||||||
"cmd = [\n",
|
"cmd = [\n",
|
||||||
" sys.executable,\n",
|
" sys.executable,\n",
|
||||||
" str(REPO_DIR / \"generate_samples.py\"),\n",
|
" str(REPO_DIR / \"generate_samples.py\"),\n",
|
||||||
" TARGET_WORD,\n",
|
" TARGET_WORD,\n",
|
||||||
" \"--model\", str(MODELS_DIR / MODEL_NAME),\n",
|
" \"--model\", str(MODELS_DIR / MODEL_NAME),\n",
|
||||||
" \"--max-samples\", \"50000\",\n",
|
" \"--max-samples\", str(MAX_SAMPLES),\n",
|
||||||
" \"--batch-size\", \"100\",\n",
|
" \"--batch-size\", str(BATCH_SIZE),\n",
|
||||||
" \"--output-dir\", \"generated_samples\",\n",
|
" \"--output-dir\", \"generated_samples\",\n",
|
||||||
|
" \"--length-scales\", *LENGTH_SCALES,\n",
|
||||||
"]\n",
|
"]\n",
|
||||||
"\n",
|
"\n",
|
||||||
"print(\"→\", \" \".join(cmd))\n",
|
"print(\"→\", \" \".join(cmd))\n",
|
||||||
|
|||||||
Reference in New Issue
Block a user