From 94da079ee5e6a4de82589d773a3c6c17b633bfa7 Mon Sep 17 00:00:00 2001 From: Xuesong Yang <1646669+XuesongYang@users.noreply.github.com> Date: Tue, 4 Oct 2022 14:31:50 -0700 Subject: [PATCH] convert code block to markdown. Signed-off-by: Xuesong Yang <1646669+XuesongYang@users.noreply.github.com> --- tutorials/tts/FastPitch_GermanTTS_Training.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tutorials/tts/FastPitch_GermanTTS_Training.ipynb b/tutorials/tts/FastPitch_GermanTTS_Training.ipynb index 087b25ebc2a4..a8c01a89ee8e 100644 --- a/tutorials/tts/FastPitch_GermanTTS_Training.ipynb +++ b/tutorials/tts/FastPitch_GermanTTS_Training.ipynb @@ -359,14 +359,13 @@ "docker exec -it /bin/bash\n", "```\n", "\n", - "Other install methods for phonemizer are listed [here](https://bootphon.github.io/phonemizer/install.html). The following code snippet shows a general guidance about how to transliterate graphemes into phonemes using phonemizer tool." + "Other install methods for phonemizer are listed [here](https://bootphon.github.io/phonemizer/install.html). The following code snippet shows a general guidance about how to transliterate graphemes into phonemes using phonemizer tool. You could manually run it to append phoneme manifest." ] }, { - "cell_type": "code", - "execution_count": null, - "outputs": [], + "cell_type": "markdown", "source": [ + "```python\n", "import json\n", "from pathlib import Path\n", "from phonemizer.backend import EspeakBackend\n", @@ -406,7 +405,8 @@ "\n", "language = 'de'\n", "for manifest in input_manifest_filepaths:\n", - " phonemization(Path(manifest), language)" + " phonemization(Path(manifest), language)\n", + "```" ], "metadata": { "collapsed": false