From 638874e925e805c9f1fb0071f7399b9014c7d6ca Mon Sep 17 00:00:00 2001 From: Josh Meyer Date: Mon, 13 Sep 2021 09:29:55 -0400 Subject: [PATCH] Fix notebook syntax after train.py was split into parts --- notebooks/easy-transfer-learning.ipynb | 6 +++--- notebooks/train-your-first-coqui-STT-model.ipynb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/notebooks/easy-transfer-learning.ipynb b/notebooks/easy-transfer-learning.ipynb index 4631db82..792bdd98 100644 --- a/notebooks/easy-transfer-learning.ipynb +++ b/notebooks/easy-transfer-learning.ipynb @@ -35,8 +35,8 @@ "outputs": [], "source": [ "## Install Coqui STT if you need to\n", - "# !git clone --depth 1 https://github.com/coqui-ai/STT.git\n", - "# !cd STT; pip install -U pip wheel setuptools; pip install ." + "!git clone --depth 1 https://github.com/coqui-ai/STT.git\n", + "!cd STT; pip install -U pip wheel setuptools; pip install ." ] }, { @@ -251,7 +251,7 @@ "metadata": {}, "outputs": [], "source": [ - "from coqui_stt_training.train import test\n", + "from coqui_stt_training.evaluate import test\n", "\n", "test()" ] diff --git a/notebooks/train-your-first-coqui-STT-model.ipynb b/notebooks/train-your-first-coqui-STT-model.ipynb index bcb10d89..506f6e3b 100644 --- a/notebooks/train-your-first-coqui-STT-model.ipynb +++ b/notebooks/train-your-first-coqui-STT-model.ipynb @@ -33,8 +33,8 @@ "outputs": [], "source": [ "## Install Coqui STT if you need to\n", - "# !git clone --depth 1 https://github.com/coqui-ai/STT.git\n", - "# !cd STT; pip install -U pip wheel setuptools; pip install ." + "!git clone --depth 1 https://github.com/coqui-ai/STT.git\n", + "!cd STT; pip install -U pip wheel setuptools; pip install ." ] }, { @@ -230,7 +230,7 @@ "metadata": {}, "outputs": [], "source": [ - "from coqui_stt_training.train import test\n", + "from coqui_stt_training.evaluate import test\n", "\n", "test()" ]