From 763fe7409a18842f6fd1f918ac07136eaa7f9f08 Mon Sep 17 00:00:00 2001 From: Tater Totterson Date: Sat, 27 Sep 2025 15:26:43 -0500 Subject: [PATCH] cleanup --- microWakeWord_training_notebook.ipynb | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/microWakeWord_training_notebook.ipynb b/microWakeWord_training_notebook.ipynb index 41900c6..e3d2d56 100644 --- a/microWakeWord_training_notebook.ipynb +++ b/microWakeWord_training_notebook.ipynb @@ -115,7 +115,6 @@ "from pathlib import Path\n", "from IPython.display import Audio, display\n", "\n", - "TARGET_WORD = \"hey_tater\"\n", "REPO_URL = \"https://github.com/rhasspy/piper-sample-generator\"\n", "REPO_DIR = Path.cwd() / \"piper-sample-generator\"\n", "MODELS_DIR = REPO_DIR / \"models\"\n", @@ -243,8 +242,8 @@ "cmd = [\n", " sys.executable,\n", " str(REPO_DIR / \"generate_samples.py\"),\n", - " target_word,\n", - " \"--model\", str(MODELS_DIR / MODEL_NAME), # important: specify generator .pt\n", + " TARGET_WORD,\n", + " \"--model\", str(MODELS_DIR / MODEL_NAME),\n", " \"--max-samples\", \"50000\",\n", " \"--batch-size\", \"100\",\n", " \"--output-dir\", \"generated_samples\",\n", @@ -792,13 +791,6 @@ "!$cmd" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": null,