Merge pull request #1965 from JRMeyer/notebooks

Fix notebook syntax after train.py was split into parts
This commit is contained in:
Josh Meyer 2021-09-13 09:31:14 -04:00 committed by GitHub
commit ba581501f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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()"
]

View File

@ -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()"
]