Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
'gallery_dirs': ['beginner', 'intermediate', 'advanced', 'recipes', 'prototype'],
'filename_pattern': '.py',
'ignore_pattern': re.compile(f"({'|'.join(NOT_RUN)}).py$"),
'promote_jupyter_magic': True,
'backreferences_dir': None
}

Expand Down
10 changes: 5 additions & 5 deletions intermediate_source/text_to_speech_with_torchaudio.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

"""

# %matplotlib inline


######################################################################
# Overview
# --------
Expand Down Expand Up @@ -52,8 +49,11 @@
# encoding.
#

# When running this example in notebook, install DeepPhonemizer
# !pip3 install deep_phonemizer
# %%
# .. code-block:: bash
#
# %%bash
# pip3 install deep_phonemizer

import torch
import torchaudio
Expand Down