Skip to content

Commit

Permalink
convert code block to markdown.
Browse files Browse the repository at this point in the history
Signed-off-by: Xuesong Yang <1646669+XuesongYang@users.noreply.github.com>
  • Loading branch information
XuesongYang committed Oct 4, 2022
1 parent 603c16a commit 94da079
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tutorials/tts/FastPitch_GermanTTS_Training.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -359,14 +359,13 @@
"docker exec -it <docker_container_id> /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",
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 94da079

Please sign in to comment.