Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Kyubyong/tacotron
/ functions
Functions
26 in github.com/Kyubyong/tacotron
⨍
Functions
26
◇
Types & classes
2
↓ 6 callers
Function
conv1d
Args: inputs: A 3-D tensor with shape of [batch, time, depth]. filters: An int. Number of outputs (=activation maps) size: An i
modules.py:108
↓ 5 callers
Function
bn
Applies batch normalization. Args: inputs: A tensor with 2 or more dimensions, where the first dimension has `batch_size`. If type
modules.py:43
↓ 4 callers
Function
gru
Applies a GRU. Args: inputs: A 3d tensor with shape of [N, T, C]. num_units: An int. The number of hidden units. bidirectio
modules.py:170
↓ 4 callers
Function
load_data
(mode="train")
data_load.py:33
↓ 2 callers
Function
conv1d_banks
Applies a series of conv1d separately. Args: inputs: A 3d tensor with shape of [N, T, C] K: An int. The size of conv1d banks. Tha
modules.py:146
↓ 2 callers
Function
highwaynet
Highway networks, see https://arxiv.org/abs/1505.00387 Args: inputs: A 3D tensor of shape [N, T, W]. num_units: An int or `None`. Spe
modules.py:250
↓ 2 callers
Function
invert_spectrogram
spectrogram: [f, t]
utils.py:122
↓ 2 callers
Function
load_spectrograms
(fpath)
utils.py:147
↓ 2 callers
Function
load_vocab
()
data_load.py:19
↓ 2 callers
Function
prenet
Prenet for Encoder and Decoder1. Args: inputs: A 2D or 3D tensor. num_units: A list of two integers. or None. is_training: A pyt
modules.py:227
↓ 2 callers
Function
text_normalize
(text)
data_load.py:24
↓ 1 callers
Function
attention_decoder
Applies a GRU to `inputs`, while attending `memory`. Args: inputs: A 3d tensor with shape of [N, T', C']. Decoder inputs. memory: A 3d
modules.py:199
↓ 1 callers
Function
decoder1
Args: inputs: A 3d tensor with shape of [N, T_y/r, n_mels(*r)]. Shifted log melspectrogram of sound files. memory: A 3d tensor with s
networks.py:57
↓ 1 callers
Function
decoder2
Decoder Post-processing net = CBHG Args: inputs: A 3d tensor with shape of [N, T_y/r, n_mels*r]. Log magnitude spectrogram of sound files.
networks.py:89
↓ 1 callers
Function
embed
Embeds a given tensor. Args: inputs: A `Tensor` with type `int32` or `int64` containing the ids to be looked up in `lookup ta
modules.py:14
↓ 1 callers
Function
encoder
Args: inputs: A 2d tensor with shape of [N, T_x, E], with dtype of int32. Encoder inputs. is_training: Whether or not the layer is in
networks.py:15
↓ 1 callers
Function
eval
()
eval.py:18
↓ 1 callers
Function
get_batch
Loads training data and put them in queues
data_load.py:71
↓ 1 callers
Function
get_spectrograms
Returns normalized log(melspectrogram) and log(magnitude) from `sound_file`. Args: sound_file: A string. The full path of a sound file.
utils.py:21
↓ 1 callers
Function
griffin_lim
Applies Griffin-Lim's raw.
utils.py:107
↓ 1 callers
Function
learning_rate_decay
Noam scheme from tensor2tensor
utils.py:142
↓ 1 callers
Function
plot_alignment
Plots the alignment alignments: A list of (numpy) matrix of shape (encoder_steps, decoder_steps) gs : (int) global step
utils.py:129
↓ 1 callers
Function
spectrogram2wav
# Generate wave file from spectrogram
utils.py:84
↓ 1 callers
Function
synthesize
()
synthesize.py:21
Method
__init__
(self, mode="train")
train.py:20
Function
_load_spectrograms
(fpath)
data_load.py:92