MCPcopy Create free account

hub / github.com/Kyubyong/tacotron / functions

Functions26 in github.com/Kyubyong/tacotron

↓ 6 callersFunctionconv1d
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 callersFunctionbn
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 callersFunctiongru
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 callersFunctionload_data
(mode="train")
data_load.py:33
↓ 2 callersFunctionconv1d_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 callersFunctionhighwaynet
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 callersFunctioninvert_spectrogram
spectrogram: [f, t]
utils.py:122
↓ 2 callersFunctionload_spectrograms
(fpath)
utils.py:147
↓ 2 callersFunctionload_vocab
()
data_load.py:19
↓ 2 callersFunctionprenet
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 callersFunctiontext_normalize
(text)
data_load.py:24
↓ 1 callersFunctionattention_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 callersFunctiondecoder1
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 callersFunctiondecoder2
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 callersFunctionembed
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 callersFunctionencoder
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 callersFunctioneval
()
eval.py:18
↓ 1 callersFunctionget_batch
Loads training data and put them in queues
data_load.py:71
↓ 1 callersFunctionget_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 callersFunctiongriffin_lim
Applies Griffin-Lim's raw.
utils.py:107
↓ 1 callersFunctionlearning_rate_decay
Noam scheme from tensor2tensor
utils.py:142
↓ 1 callersFunctionplot_alignment
Plots the alignment alignments: A list of (numpy) matrix of shape (encoder_steps, decoder_steps) gs : (int) global step
utils.py:129
↓ 1 callersFunctionspectrogram2wav
# Generate wave file from spectrogram
utils.py:84
↓ 1 callersFunctionsynthesize
()
synthesize.py:21
Method__init__
(self, mode="train")
train.py:20
Function_load_spectrograms
(fpath)
data_load.py:92