id
int32
0
252k
repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
21,800
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
linear_interpolate_rank
def linear_interpolate_rank(tensor1, tensor2, coeffs, rank=1): """Linearly interpolate channel at "rank" between two tensors. The channels are ranked according to their L2 norm between tensor1[channel] and tensor2[channel]. Args: tensor1: 4-D Tensor, NHWC tensor2: 4-D Tensor, NHWC coeffs: list of ...
python
def linear_interpolate_rank(tensor1, tensor2, coeffs, rank=1): """Linearly interpolate channel at "rank" between two tensors. The channels are ranked according to their L2 norm between tensor1[channel] and tensor2[channel]. Args: tensor1: 4-D Tensor, NHWC tensor2: 4-D Tensor, NHWC coeffs: list of ...
[ "def", "linear_interpolate_rank", "(", "tensor1", ",", "tensor2", ",", "coeffs", ",", "rank", "=", "1", ")", ":", "# sum across space, max across channels.", "_", ",", "_", ",", "_", ",", "num_channels", "=", "common_layers", ".", "shape_list", "(", "tensor1", ...
Linearly interpolate channel at "rank" between two tensors. The channels are ranked according to their L2 norm between tensor1[channel] and tensor2[channel]. Args: tensor1: 4-D Tensor, NHWC tensor2: 4-D Tensor, NHWC coeffs: list of floats. rank: integer. Returns: interp_latents: list of in...
[ "Linearly", "interpolate", "channel", "at", "rank", "between", "two", "tensors", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L53-L82
21,801
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
get_cond_latents_at_level
def get_cond_latents_at_level(cond_latents, level, hparams): """Returns a single or list of conditional latents at level 'level'.""" if cond_latents: if hparams.latent_dist_encoder in ["conv_net", "conv3d_net"]: return [cond_latent[level] for cond_latent in cond_latents] elif hparams.latent_dist_encod...
python
def get_cond_latents_at_level(cond_latents, level, hparams): """Returns a single or list of conditional latents at level 'level'.""" if cond_latents: if hparams.latent_dist_encoder in ["conv_net", "conv3d_net"]: return [cond_latent[level] for cond_latent in cond_latents] elif hparams.latent_dist_encod...
[ "def", "get_cond_latents_at_level", "(", "cond_latents", ",", "level", ",", "hparams", ")", ":", "if", "cond_latents", ":", "if", "hparams", ".", "latent_dist_encoder", "in", "[", "\"conv_net\"", ",", "\"conv3d_net\"", "]", ":", "return", "[", "cond_latent", "["...
Returns a single or list of conditional latents at level 'level'.
[ "Returns", "a", "single", "or", "list", "of", "conditional", "latents", "at", "level", "level", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L141-L147
21,802
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
check_cond_latents
def check_cond_latents(cond_latents, hparams): """Shape checking for cond_latents.""" if cond_latents is None: return if not isinstance(cond_latents[0], list): cond_latents = [cond_latents] exp_num_latents = hparams.num_cond_latents if hparams.latent_dist_encoder == "conv_net": exp_num_latents += ...
python
def check_cond_latents(cond_latents, hparams): """Shape checking for cond_latents.""" if cond_latents is None: return if not isinstance(cond_latents[0], list): cond_latents = [cond_latents] exp_num_latents = hparams.num_cond_latents if hparams.latent_dist_encoder == "conv_net": exp_num_latents += ...
[ "def", "check_cond_latents", "(", "cond_latents", ",", "hparams", ")", ":", "if", "cond_latents", "is", "None", ":", "return", "if", "not", "isinstance", "(", "cond_latents", "[", "0", "]", ",", "list", ")", ":", "cond_latents", "=", "[", "cond_latents", "...
Shape checking for cond_latents.
[ "Shape", "checking", "for", "cond_latents", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L150-L165
21,803
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
get_variable_ddi
def get_variable_ddi(name, shape, initial_value, dtype=tf.float32, init=False, trainable=True): """Wrapper for data-dependent initialization.""" # If init is a tf bool: w is assigned dynamically at runtime. # If init is a python bool: then w is determined during graph construction. w = tf.g...
python
def get_variable_ddi(name, shape, initial_value, dtype=tf.float32, init=False, trainable=True): """Wrapper for data-dependent initialization.""" # If init is a tf bool: w is assigned dynamically at runtime. # If init is a python bool: then w is determined during graph construction. w = tf.g...
[ "def", "get_variable_ddi", "(", "name", ",", "shape", ",", "initial_value", ",", "dtype", "=", "tf", ".", "float32", ",", "init", "=", "False", ",", "trainable", "=", "True", ")", ":", "# If init is a tf bool: w is assigned dynamically at runtime.", "# If init is a ...
Wrapper for data-dependent initialization.
[ "Wrapper", "for", "data", "-", "dependent", "initialization", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L169-L180
21,804
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
get_dropout
def get_dropout(x, rate=0.0, init=True): """Dropout x with dropout_rate = rate. Apply zero dropout during init or prediction time. Args: x: 4-D Tensor, shape=(NHWC). rate: Dropout rate. init: Initialization. Returns: x: activations after dropout. """ if init or rate == 0: return x re...
python
def get_dropout(x, rate=0.0, init=True): """Dropout x with dropout_rate = rate. Apply zero dropout during init or prediction time. Args: x: 4-D Tensor, shape=(NHWC). rate: Dropout rate. init: Initialization. Returns: x: activations after dropout. """ if init or rate == 0: return x re...
[ "def", "get_dropout", "(", "x", ",", "rate", "=", "0.0", ",", "init", "=", "True", ")", ":", "if", "init", "or", "rate", "==", "0", ":", "return", "x", "return", "tf", ".", "layers", ".", "dropout", "(", "x", ",", "rate", "=", "rate", ",", "tra...
Dropout x with dropout_rate = rate. Apply zero dropout during init or prediction time. Args: x: 4-D Tensor, shape=(NHWC). rate: Dropout rate. init: Initialization. Returns: x: activations after dropout.
[ "Dropout", "x", "with", "dropout_rate", "=", "rate", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L184-L198
21,805
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
actnorm_3d
def actnorm_3d(name, x, logscale_factor=3.): """Applies actnorm to each time-step independently. There are a total of 2*n_channels*n_steps parameters learnt. Args: name: variable scope. x: 5-D Tensor, (NTHWC) logscale_factor: Increases the learning rate of the scale by logscale_...
python
def actnorm_3d(name, x, logscale_factor=3.): """Applies actnorm to each time-step independently. There are a total of 2*n_channels*n_steps parameters learnt. Args: name: variable scope. x: 5-D Tensor, (NTHWC) logscale_factor: Increases the learning rate of the scale by logscale_...
[ "def", "actnorm_3d", "(", "name", ",", "x", ",", "logscale_factor", "=", "3.", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "x", "=", "tf", ".", "unstack", "(", "x", ",", "axis", ...
Applies actnorm to each time-step independently. There are a total of 2*n_channels*n_steps parameters learnt. Args: name: variable scope. x: 5-D Tensor, (NTHWC) logscale_factor: Increases the learning rate of the scale by logscale_factor. Returns: x: 5-D Tensor, (NTHWC) with...
[ "Applies", "actnorm", "to", "each", "time", "-", "step", "independently", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L202-L222
21,806
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
actnorm_center
def actnorm_center(name, x, reverse=False, init=False): """Add a bias to x. Initialize such that the output of the first minibatch is zero centered per channel. Args: name: scope x: 2-D or 4-D Tensor. reverse: Forward or backward operation. init: data-dependent initialization. Returns: ...
python
def actnorm_center(name, x, reverse=False, init=False): """Add a bias to x. Initialize such that the output of the first minibatch is zero centered per channel. Args: name: scope x: 2-D or 4-D Tensor. reverse: Forward or backward operation. init: data-dependent initialization. Returns: ...
[ "def", "actnorm_center", "(", "name", ",", "x", ",", "reverse", "=", "False", ",", "init", "=", "False", ")", ":", "shape", "=", "common_layers", ".", "shape_list", "(", "x", ")", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "...
Add a bias to x. Initialize such that the output of the first minibatch is zero centered per channel. Args: name: scope x: 2-D or 4-D Tensor. reverse: Forward or backward operation. init: data-dependent initialization. Returns: x_center: (x + b), if reverse is True and (x - b) otherwise.
[ "Add", "a", "bias", "to", "x", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L265-L296
21,807
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
actnorm_scale
def actnorm_scale(name, x, logscale_factor=3., reverse=False, init=False): """Per-channel scaling of x.""" x_shape = common_layers.shape_list(x) with tf.variable_scope(name, reuse=tf.AUTO_REUSE): # Variance initialization logic. assert len(x_shape) == 2 or len(x_shape) == 4 if len(x_shape) == 2: ...
python
def actnorm_scale(name, x, logscale_factor=3., reverse=False, init=False): """Per-channel scaling of x.""" x_shape = common_layers.shape_list(x) with tf.variable_scope(name, reuse=tf.AUTO_REUSE): # Variance initialization logic. assert len(x_shape) == 2 or len(x_shape) == 4 if len(x_shape) == 2: ...
[ "def", "actnorm_scale", "(", "name", ",", "x", ",", "logscale_factor", "=", "3.", ",", "reverse", "=", "False", ",", "init", "=", "False", ")", ":", "x_shape", "=", "common_layers", ".", "shape_list", "(", "x", ")", "with", "tf", ".", "variable_scope", ...
Per-channel scaling of x.
[ "Per", "-", "channel", "scaling", "of", "x", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L300-L331
21,808
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
invertible_1x1_conv
def invertible_1x1_conv(name, x, reverse=False): """1X1 convolution on x. The 1X1 convolution is parametrized as P*L*(U + sign(s)*exp(log(s))) where 1. P is a permutation matrix. 2. L is a lower triangular matrix with diagonal entries unity. 3. U is a upper triangular matrix where the diagonal entries zero. ...
python
def invertible_1x1_conv(name, x, reverse=False): """1X1 convolution on x. The 1X1 convolution is parametrized as P*L*(U + sign(s)*exp(log(s))) where 1. P is a permutation matrix. 2. L is a lower triangular matrix with diagonal entries unity. 3. U is a upper triangular matrix where the diagonal entries zero. ...
[ "def", "invertible_1x1_conv", "(", "name", ",", "x", ",", "reverse", "=", "False", ")", ":", "_", ",", "height", ",", "width", ",", "channels", "=", "common_layers", ".", "shape_list", "(", "x", ")", "w_shape", "=", "[", "channels", ",", "channels", "]...
1X1 convolution on x. The 1X1 convolution is parametrized as P*L*(U + sign(s)*exp(log(s))) where 1. P is a permutation matrix. 2. L is a lower triangular matrix with diagonal entries unity. 3. U is a upper triangular matrix where the diagonal entries zero. 4. s is a vector. sign(s) and P are fixed and the...
[ "1X1", "convolution", "on", "x", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L335-L401
21,809
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
add_edge_bias
def add_edge_bias(x, filter_size): """Pad x and concatenates an edge bias across the depth of x. The edge bias can be thought of as a binary feature which is unity when the filter is being convolved over an edge and zero otherwise. Args: x: Input tensor, shape (NHWC) filter_size: filter_size to determ...
python
def add_edge_bias(x, filter_size): """Pad x and concatenates an edge bias across the depth of x. The edge bias can be thought of as a binary feature which is unity when the filter is being convolved over an edge and zero otherwise. Args: x: Input tensor, shape (NHWC) filter_size: filter_size to determ...
[ "def", "add_edge_bias", "(", "x", ",", "filter_size", ")", ":", "x_shape", "=", "common_layers", ".", "shape_list", "(", "x", ")", "if", "filter_size", "[", "0", "]", "==", "1", "and", "filter_size", "[", "1", "]", "==", "1", ":", "return", "x", "a",...
Pad x and concatenates an edge bias across the depth of x. The edge bias can be thought of as a binary feature which is unity when the filter is being convolved over an edge and zero otherwise. Args: x: Input tensor, shape (NHWC) filter_size: filter_size to determine padding. Returns: x_pad: Input...
[ "Pad", "x", "and", "concatenates", "an", "edge", "bias", "across", "the", "depth", "of", "x", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L404-L426
21,810
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
time_pad
def time_pad(x, filter_size, dilations): """Pad left across time and pad valid across the spatial components. Also concats a binary feature that indicates if a feature is padded or not. Args: x: 5-D Tensor, (NTHWC) filter_size: list of ints dilations: list of ints, dilations - 1 specifies the number...
python
def time_pad(x, filter_size, dilations): """Pad left across time and pad valid across the spatial components. Also concats a binary feature that indicates if a feature is padded or not. Args: x: 5-D Tensor, (NTHWC) filter_size: list of ints dilations: list of ints, dilations - 1 specifies the number...
[ "def", "time_pad", "(", "x", ",", "filter_size", ",", "dilations", ")", ":", "x_shape", "=", "common_layers", ".", "shape_list", "(", "x", ")", "if", "filter_size", "==", "[", "1", ",", "1", ",", "1", "]", ":", "return", "x", "_", ",", "h", ",", ...
Pad left across time and pad valid across the spatial components. Also concats a binary feature that indicates if a feature is padded or not. Args: x: 5-D Tensor, (NTHWC) filter_size: list of ints dilations: list of ints, dilations - 1 specifies the number of holes between two filter el...
[ "Pad", "left", "across", "time", "and", "pad", "valid", "across", "the", "spatial", "components", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L429-L461
21,811
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
conv
def conv(name, x, output_channels, filter_size=None, stride=None, logscale_factor=3.0, apply_actnorm=True, conv_init="default", dilations=None): """Convolutional layer with edge bias padding and optional actnorm. If x is 5-dimensional, actnorm is applied independently across every time-step. ...
python
def conv(name, x, output_channels, filter_size=None, stride=None, logscale_factor=3.0, apply_actnorm=True, conv_init="default", dilations=None): """Convolutional layer with edge bias padding and optional actnorm. If x is 5-dimensional, actnorm is applied independently across every time-step. ...
[ "def", "conv", "(", "name", ",", "x", ",", "output_channels", ",", "filter_size", "=", "None", ",", "stride", "=", "None", ",", "logscale_factor", "=", "3.0", ",", "apply_actnorm", "=", "True", ",", "conv_init", "=", "\"default\"", ",", "dilations", "=", ...
Convolutional layer with edge bias padding and optional actnorm. If x is 5-dimensional, actnorm is applied independently across every time-step. Args: name: variable scope. x: 4-D Tensor or 5-D Tensor of shape NHWC or NTHWC output_channels: Number of output channels. filter_size: list of ints, i...
[ "Convolutional", "layer", "with", "edge", "bias", "padding", "and", "optional", "actnorm", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L465-L544
21,812
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
conv_block
def conv_block(name, x, mid_channels, dilations=None, activation="relu", dropout=0.0): """2 layer conv block used in the affine coupling layer. Args: name: variable scope. x: 4-D or 5-D Tensor. mid_channels: Output channels of the second layer. dilations: Optional, list of integers. ...
python
def conv_block(name, x, mid_channels, dilations=None, activation="relu", dropout=0.0): """2 layer conv block used in the affine coupling layer. Args: name: variable scope. x: 4-D or 5-D Tensor. mid_channels: Output channels of the second layer. dilations: Optional, list of integers. ...
[ "def", "conv_block", "(", "name", ",", "x", ",", "mid_channels", ",", "dilations", "=", "None", ",", "activation", "=", "\"relu\"", ",", "dropout", "=", "0.0", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", ...
2 layer conv block used in the affine coupling layer. Args: name: variable scope. x: 4-D or 5-D Tensor. mid_channels: Output channels of the second layer. dilations: Optional, list of integers. activation: relu or gatu. If relu, the second layer is relu(W*x) If gatu, the second layer ...
[ "2", "layer", "conv", "block", "used", "in", "the", "affine", "coupling", "layer", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L548-L603
21,813
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
dilated_conv_stack
def dilated_conv_stack(name, x, mid_channels, output_channels, dilation_rates, activation="relu", dropout=0.0): """Dilated convolutional stack. Features at different rates are computed independently using a 3 layer convolutional stack and added. Args: name: va...
python
def dilated_conv_stack(name, x, mid_channels, output_channels, dilation_rates, activation="relu", dropout=0.0): """Dilated convolutional stack. Features at different rates are computed independently using a 3 layer convolutional stack and added. Args: name: va...
[ "def", "dilated_conv_stack", "(", "name", ",", "x", ",", "mid_channels", ",", "output_channels", ",", "dilation_rates", ",", "activation", "=", "\"relu\"", ",", "dropout", "=", "0.0", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", ...
Dilated convolutional stack. Features at different rates are computed independently using a 3 layer convolutional stack and added. Args: name: variable scope. x: 5-D Tensor. mid_channels: Number of output channels of the first layer in the conv stack. output_channels: Number of...
[ "Dilated", "convolutional", "stack", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L606-L634
21,814
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
conv_stack
def conv_stack(name, x, mid_channels, output_channels, dilations=None, activation="relu", dropout=0.0): """3-layer convolutional stack. Args: name: variable scope. x: 5-D Tensor. mid_channels: Number of output channels of the first layer. output_channels: Number of output channels. ...
python
def conv_stack(name, x, mid_channels, output_channels, dilations=None, activation="relu", dropout=0.0): """3-layer convolutional stack. Args: name: variable scope. x: 5-D Tensor. mid_channels: Number of output channels of the first layer. output_channels: Number of output channels. ...
[ "def", "conv_stack", "(", "name", ",", "x", ",", "mid_channels", ",", "output_channels", ",", "dilations", "=", "None", ",", "activation", "=", "\"relu\"", ",", "dropout", "=", "0.0", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reus...
3-layer convolutional stack. Args: name: variable scope. x: 5-D Tensor. mid_channels: Number of output channels of the first layer. output_channels: Number of output channels. dilations: Dilations to apply in the first 3x3 layer and the last 3x3 layer. By default, apply no dilation...
[ "3", "-", "layer", "convolutional", "stack", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L638-L665
21,815
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
additive_coupling
def additive_coupling(name, x, mid_channels=512, reverse=False, activation="relu", dropout=0.0): """Reversible additive coupling layer. Args: name: variable scope. x: 4-D Tensor, shape=(NHWC). mid_channels: number of channels in the coupling layer. reverse: Forward or reverse ...
python
def additive_coupling(name, x, mid_channels=512, reverse=False, activation="relu", dropout=0.0): """Reversible additive coupling layer. Args: name: variable scope. x: 4-D Tensor, shape=(NHWC). mid_channels: number of channels in the coupling layer. reverse: Forward or reverse ...
[ "def", "additive_coupling", "(", "name", ",", "x", ",", "mid_channels", "=", "512", ",", "reverse", "=", "False", ",", "activation", "=", "\"relu\"", ",", "dropout", "=", "0.0", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", ...
Reversible additive coupling layer. Args: name: variable scope. x: 4-D Tensor, shape=(NHWC). mid_channels: number of channels in the coupling layer. reverse: Forward or reverse operation. activation: "relu" or "gatu" dropout: default, 0.0 Returns: output: 4-D Tensor, shape=(NHWC) ob...
[ "Reversible", "additive", "coupling", "layer", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L669-L696
21,816
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
affine_coupling
def affine_coupling(name, x, mid_channels=512, activation="relu", reverse=False, dropout=0.0): """Reversible affine coupling layer. Args: name: variable scope. x: 4-D Tensor. mid_channels: number of channels in the coupling layer. activation: Can be either "relu" or "gatu". ...
python
def affine_coupling(name, x, mid_channels=512, activation="relu", reverse=False, dropout=0.0): """Reversible affine coupling layer. Args: name: variable scope. x: 4-D Tensor. mid_channels: number of channels in the coupling layer. activation: Can be either "relu" or "gatu". ...
[ "def", "affine_coupling", "(", "name", ",", "x", ",", "mid_channels", "=", "512", ",", "activation", "=", "\"relu\"", ",", "reverse", "=", "False", ",", "dropout", "=", "0.0", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=...
Reversible affine coupling layer. Args: name: variable scope. x: 4-D Tensor. mid_channels: number of channels in the coupling layer. activation: Can be either "relu" or "gatu". reverse: Forward or reverse operation. dropout: default, 0.0 Returns: output: x shifted and scaled by an affin...
[ "Reversible", "affine", "coupling", "layer", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L700-L738
21,817
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
squeeze
def squeeze(name, x, factor=2, reverse=True): """Block-wise spatial squeezing of x to increase the number of channels. Args: name: Used for variable scoping. x: 4-D Tensor of shape (batch_size X H X W X C) factor: Factor by which the spatial dimensions should be squeezed. reverse: Squueze or unsque...
python
def squeeze(name, x, factor=2, reverse=True): """Block-wise spatial squeezing of x to increase the number of channels. Args: name: Used for variable scoping. x: 4-D Tensor of shape (batch_size X H X W X C) factor: Factor by which the spatial dimensions should be squeezed. reverse: Squueze or unsque...
[ "def", "squeeze", "(", "name", ",", "x", ",", "factor", "=", "2", ",", "reverse", "=", "True", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "shape", "=", "common_layers", ".", "sh...
Block-wise spatial squeezing of x to increase the number of channels. Args: name: Used for variable scoping. x: 4-D Tensor of shape (batch_size X H X W X C) factor: Factor by which the spatial dimensions should be squeezed. reverse: Squueze or unsqueeze operation. Returns: x: 4-D Tensor of sha...
[ "Block", "-", "wise", "spatial", "squeezing", "of", "x", "to", "increase", "the", "number", "of", "channels", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L742-L776
21,818
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
get_dilation_rates
def get_dilation_rates(hparams, width): """Get a list of valid dilation rates. Args: hparams: HParams. width: spatial dimension. Ensures that the effective filter size is not larger than the spatial dimension. Returns: allowed_dilations: A list of dilation rates. """ # dil_rate=1 means...
python
def get_dilation_rates(hparams, width): """Get a list of valid dilation rates. Args: hparams: HParams. width: spatial dimension. Ensures that the effective filter size is not larger than the spatial dimension. Returns: allowed_dilations: A list of dilation rates. """ # dil_rate=1 means...
[ "def", "get_dilation_rates", "(", "hparams", ",", "width", ")", ":", "# dil_rate=1 means no dilation.", "allowed_dilations", "=", "[", "[", "1", "]", "*", "5", "]", "apply_dilations", "=", "hparams", ".", "get", "(", "\"latent_apply_dilations\"", ",", "False", "...
Get a list of valid dilation rates. Args: hparams: HParams. width: spatial dimension. Ensures that the effective filter size is not larger than the spatial dimension. Returns: allowed_dilations: A list of dilation rates.
[ "Get", "a", "list", "of", "valid", "dilation", "rates", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L779-L800
21,819
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
temporal_latent_to_dist
def temporal_latent_to_dist(name, x, hparams, output_channels=None): """Network that maps a time-indexed list of 3-D latents to a gaussian. Args: name: variable scope. x: List of 4-D Tensors indexed by time, (NHWC) hparams: tf.contrib.training.Hparams. output_channels: int, Number of channels of th...
python
def temporal_latent_to_dist(name, x, hparams, output_channels=None): """Network that maps a time-indexed list of 3-D latents to a gaussian. Args: name: variable scope. x: List of 4-D Tensors indexed by time, (NHWC) hparams: tf.contrib.training.Hparams. output_channels: int, Number of channels of th...
[ "def", "temporal_latent_to_dist", "(", "name", ",", "x", ",", "hparams", ",", "output_channels", "=", "None", ")", ":", "_", ",", "_", ",", "width", ",", "_", ",", "res_channels", "=", "common_layers", ".", "shape_list", "(", "x", ")", "if", "output_chan...
Network that maps a time-indexed list of 3-D latents to a gaussian. Args: name: variable scope. x: List of 4-D Tensors indexed by time, (NHWC) hparams: tf.contrib.training.Hparams. output_channels: int, Number of channels of the output gaussian mean. Returns: dist: tfp.distributions.Normal
[ "Network", "that", "maps", "a", "time", "-", "indexed", "list", "of", "3", "-", "D", "latents", "to", "a", "gaussian", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L804-L843
21,820
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
single_conv_dist
def single_conv_dist(name, x, output_channels=None): """A 3x3 convolution mapping x to a standard normal distribution at init. Args: name: variable scope. x: 4-D Tensor. output_channels: number of channels of the mean and std. """ with tf.variable_scope(name, reuse=tf.AUTO_REUSE): x_shape = com...
python
def single_conv_dist(name, x, output_channels=None): """A 3x3 convolution mapping x to a standard normal distribution at init. Args: name: variable scope. x: 4-D Tensor. output_channels: number of channels of the mean and std. """ with tf.variable_scope(name, reuse=tf.AUTO_REUSE): x_shape = com...
[ "def", "single_conv_dist", "(", "name", ",", "x", ",", "output_channels", "=", "None", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "x_shape", "=", "common_layers", ".", "shape_list", "...
A 3x3 convolution mapping x to a standard normal distribution at init. Args: name: variable scope. x: 4-D Tensor. output_channels: number of channels of the mean and std.
[ "A", "3x3", "convolution", "mapping", "x", "to", "a", "standard", "normal", "distribution", "at", "init", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L847-L863
21,821
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
latent_to_dist
def latent_to_dist(name, x, hparams, output_channels=None): """Map latent to the mean and log-scale of a Gaussian. Args: name: variable scope. x: 4-D Tensor of shape (NHWC) hparams: HParams. latent_architecture - can be "single_conv", "glow_nn" or "glow_resnet", defaul...
python
def latent_to_dist(name, x, hparams, output_channels=None): """Map latent to the mean and log-scale of a Gaussian. Args: name: variable scope. x: 4-D Tensor of shape (NHWC) hparams: HParams. latent_architecture - can be "single_conv", "glow_nn" or "glow_resnet", defaul...
[ "def", "latent_to_dist", "(", "name", ",", "x", ",", "hparams", ",", "output_channels", "=", "None", ")", ":", "architecture", "=", "hparams", ".", "get", "(", "\"latent_architecture\"", ",", "\"single_conv\"", ")", "depth", "=", "hparams", ".", "get", "(", ...
Map latent to the mean and log-scale of a Gaussian. Args: name: variable scope. x: 4-D Tensor of shape (NHWC) hparams: HParams. latent_architecture - can be "single_conv", "glow_nn" or "glow_resnet", default = single_conv latent_encoder_depth - int, depth of archit...
[ "Map", "latent", "to", "the", "mean", "and", "log", "-", "scale", "of", "a", "Gaussian", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L867-L925
21,822
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
noise_op
def noise_op(latents, hparams): """Adds isotropic gaussian-noise to each latent. Args: latents: 4-D or 5-D tensor, shape=(NTHWC) or (NHWC). hparams: HParams. Returns: latents: latents with isotropic gaussian noise appended. """ if hparams.latent_noise == 0 or hparams.mode != tf.estimator.ModeKeys...
python
def noise_op(latents, hparams): """Adds isotropic gaussian-noise to each latent. Args: latents: 4-D or 5-D tensor, shape=(NTHWC) or (NHWC). hparams: HParams. Returns: latents: latents with isotropic gaussian noise appended. """ if hparams.latent_noise == 0 or hparams.mode != tf.estimator.ModeKeys...
[ "def", "noise_op", "(", "latents", ",", "hparams", ")", ":", "if", "hparams", ".", "latent_noise", "==", "0", "or", "hparams", ".", "mode", "!=", "tf", ".", "estimator", ".", "ModeKeys", ".", "TRAIN", ":", "return", "latents", "latent_shape", "=", "commo...
Adds isotropic gaussian-noise to each latent. Args: latents: 4-D or 5-D tensor, shape=(NTHWC) or (NHWC). hparams: HParams. Returns: latents: latents with isotropic gaussian noise appended.
[ "Adds", "isotropic", "gaussian", "-", "noise", "to", "each", "latent", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L929-L941
21,823
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
merge_level_and_latent_dist
def merge_level_and_latent_dist(level_dist, latent_dist, merge_std="prev_level"): """Merge level_dist and latent_dist. new_dist ~ N(level_dist.mean + latent_dis.mean, std) where std is determined according to merge_std. Args: level_dist: instance of tfp.distributions.Normal...
python
def merge_level_and_latent_dist(level_dist, latent_dist, merge_std="prev_level"): """Merge level_dist and latent_dist. new_dist ~ N(level_dist.mean + latent_dis.mean, std) where std is determined according to merge_std. Args: level_dist: instance of tfp.distributions.Normal...
[ "def", "merge_level_and_latent_dist", "(", "level_dist", ",", "latent_dist", ",", "merge_std", "=", "\"prev_level\"", ")", ":", "level_mean", ",", "level_std", "=", "level_dist", ".", "loc", ",", "level_dist", ".", "scale", "latent_mean", ",", "latent_std", "=", ...
Merge level_dist and latent_dist. new_dist ~ N(level_dist.mean + latent_dis.mean, std) where std is determined according to merge_std. Args: level_dist: instance of tfp.distributions.Normal latent_dist: instance of tfp.distributions.Normal merge_std: can be "prev_level", "prev_step" or "normal". R...
[ "Merge", "level_dist", "and", "latent_dist", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L945-L972
21,824
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
level_cond_prior
def level_cond_prior(prior_dist, z, latent, hparams, state): """Returns a conditional prior for each level. Args: prior_dist: Distribution conditioned on the previous levels. z: Tensor, output of the previous levels. latent: Tensor or a list of tensors to condition the latent_distribution. hparams:...
python
def level_cond_prior(prior_dist, z, latent, hparams, state): """Returns a conditional prior for each level. Args: prior_dist: Distribution conditioned on the previous levels. z: Tensor, output of the previous levels. latent: Tensor or a list of tensors to condition the latent_distribution. hparams:...
[ "def", "level_cond_prior", "(", "prior_dist", ",", "z", ",", "latent", ",", "hparams", ",", "state", ")", ":", "latent_dist_encoder", "=", "hparams", ".", "get", "(", "\"latent_dist_encoder\"", ",", "None", ")", "latent_skip", "=", "hparams", ".", "get", "("...
Returns a conditional prior for each level. Args: prior_dist: Distribution conditioned on the previous levels. z: Tensor, output of the previous levels. latent: Tensor or a list of tensors to condition the latent_distribution. hparams: next_frame_glow hparams. state: Current LSTM state. Used only...
[ "Returns", "a", "conditional", "prior", "for", "each", "level", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L976-L1044
21,825
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
revnet_step
def revnet_step(name, x, hparams, reverse=True): """One step of glow generative flow. Actnorm + invertible 1X1 conv + affine_coupling. Args: name: used for variable scope. x: input hparams: coupling_width is the only hparam that is being used in this function. reverse: forward or re...
python
def revnet_step(name, x, hparams, reverse=True): """One step of glow generative flow. Actnorm + invertible 1X1 conv + affine_coupling. Args: name: used for variable scope. x: input hparams: coupling_width is the only hparam that is being used in this function. reverse: forward or re...
[ "def", "revnet_step", "(", "name", ",", "x", ",", "hparams", ",", "reverse", "=", "True", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "if", "hparams", ".", "coupling", "==", "\"add...
One step of glow generative flow. Actnorm + invertible 1X1 conv + affine_coupling. Args: name: used for variable scope. x: input hparams: coupling_width is the only hparam that is being used in this function. reverse: forward or reverse pass. Returns: z: Output of one step of re...
[ "One", "step", "of", "glow", "generative", "flow", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L1156-L1193
21,826
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
revnet
def revnet(name, x, hparams, reverse=True): """'hparams.depth' steps of generative flow. Args: name: variable scope for the revnet block. x: 4-D Tensor, shape=(NHWC). hparams: HParams. reverse: bool, forward or backward pass. Returns: x: 4-D Tensor, shape=(NHWC). objective: float. """ ...
python
def revnet(name, x, hparams, reverse=True): """'hparams.depth' steps of generative flow. Args: name: variable scope for the revnet block. x: 4-D Tensor, shape=(NHWC). hparams: HParams. reverse: bool, forward or backward pass. Returns: x: 4-D Tensor, shape=(NHWC). objective: float. """ ...
[ "def", "revnet", "(", "name", ",", "x", ",", "hparams", ",", "reverse", "=", "True", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "steps", "=", "np", ".", "arange", "(", "hparams"...
hparams.depth' steps of generative flow. Args: name: variable scope for the revnet block. x: 4-D Tensor, shape=(NHWC). hparams: HParams. reverse: bool, forward or backward pass. Returns: x: 4-D Tensor, shape=(NHWC). objective: float.
[ "hparams", ".", "depth", "steps", "of", "generative", "flow", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L1196-L1218
21,827
tensorflow/tensor2tensor
tensor2tensor/models/research/glow_ops.py
top_prior
def top_prior(name, z_shape, learn_prior="normal", temperature=1.0): """Unconditional prior distribution. Args: name: variable scope z_shape: Shape of the mean / scale of the prior distribution. learn_prior: Possible options are "normal" and "single_conv". If set to "single_conv", the ...
python
def top_prior(name, z_shape, learn_prior="normal", temperature=1.0): """Unconditional prior distribution. Args: name: variable scope z_shape: Shape of the mean / scale of the prior distribution. learn_prior: Possible options are "normal" and "single_conv". If set to "single_conv", the ...
[ "def", "top_prior", "(", "name", ",", "z_shape", ",", "learn_prior", "=", "\"normal\"", ",", "temperature", "=", "1.0", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "h", "=", "tf", ...
Unconditional prior distribution. Args: name: variable scope z_shape: Shape of the mean / scale of the prior distribution. learn_prior: Possible options are "normal" and "single_conv". If set to "single_conv", the gaussian is parametrized by a single convolutional layer ...
[ "Unconditional", "prior", "distribution", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow_ops.py#L1249-L1276
21,828
tensorflow/tensor2tensor
tensor2tensor/utils/quantization.py
bfloat16_activations_var_getter
def bfloat16_activations_var_getter(getter, *args, **kwargs): """A custom getter function for float32 parameters and bfloat16 activations. Args: getter: custom getter *args: arguments **kwargs: keyword arguments Returns: variables with the correct dtype. Raises: KeyError: if "dtype" is not ...
python
def bfloat16_activations_var_getter(getter, *args, **kwargs): """A custom getter function for float32 parameters and bfloat16 activations. Args: getter: custom getter *args: arguments **kwargs: keyword arguments Returns: variables with the correct dtype. Raises: KeyError: if "dtype" is not ...
[ "def", "bfloat16_activations_var_getter", "(", "getter", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "requested_dtype", "=", "kwargs", "[", "\"dtype\"", "]", "if", "requested_dtype", "==", "tf", ".", "bfloat16", ":", "kwargs", "[", "\"dtype\"", "]",...
A custom getter function for float32 parameters and bfloat16 activations. Args: getter: custom getter *args: arguments **kwargs: keyword arguments Returns: variables with the correct dtype. Raises: KeyError: if "dtype" is not provided as a kwarg.
[ "A", "custom", "getter", "function", "for", "float32", "parameters", "and", "bfloat16", "activations", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/quantization.py#L25-L48
21,829
tensorflow/tensor2tensor
tensor2tensor/utils/quantization.py
float16_activations_var_getter
def float16_activations_var_getter(getter, *args, **kwargs): """A custom getter function for float32 parameters and float16 activations. This function ensures the following: 1. All variables requested with type fp16 are stored as type fp32. 2. All variables requested with type fp32 are returned as type fp1...
python
def float16_activations_var_getter(getter, *args, **kwargs): """A custom getter function for float32 parameters and float16 activations. This function ensures the following: 1. All variables requested with type fp16 are stored as type fp32. 2. All variables requested with type fp32 are returned as type fp1...
[ "def", "float16_activations_var_getter", "(", "getter", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "requested_dtype", "=", "kwargs", "[", "\"dtype\"", "]", "if", "requested_dtype", "==", "tf", ".", "float16", ":", "kwargs", "[", "\"dtype\"", "]", ...
A custom getter function for float32 parameters and float16 activations. This function ensures the following: 1. All variables requested with type fp16 are stored as type fp32. 2. All variables requested with type fp32 are returned as type fp16. See https://docs.nvidia.com/deeplearning/sdk/mixed-precision-...
[ "A", "custom", "getter", "function", "for", "float32", "parameters", "and", "float16", "activations", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/quantization.py#L51-L86
21,830
tensorflow/tensor2tensor
tensor2tensor/utils/quantization.py
simulated_quantize
def simulated_quantize(x, num_bits, noise): """Simulate quantization to num_bits bits, with externally-stored scale. num_bits is the number of bits used to store each value. noise is a float32 Tensor containing values in [0, 1). Each value in noise should take different values across different steps, approxi...
python
def simulated_quantize(x, num_bits, noise): """Simulate quantization to num_bits bits, with externally-stored scale. num_bits is the number of bits used to store each value. noise is a float32 Tensor containing values in [0, 1). Each value in noise should take different values across different steps, approxi...
[ "def", "simulated_quantize", "(", "x", ",", "num_bits", ",", "noise", ")", ":", "shape", "=", "x", ".", "get_shape", "(", ")", ".", "as_list", "(", ")", "if", "not", "(", "len", "(", "shape", ")", ">=", "2", "and", "shape", "[", "-", "1", "]", ...
Simulate quantization to num_bits bits, with externally-stored scale. num_bits is the number of bits used to store each value. noise is a float32 Tensor containing values in [0, 1). Each value in noise should take different values across different steps, approximating a uniform distribution over [0, 1). In t...
[ "Simulate", "quantization", "to", "num_bits", "bits", "with", "externally", "-", "stored", "scale", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/quantization.py#L89-L134
21,831
tensorflow/tensor2tensor
tensor2tensor/utils/quantization.py
_randomized_roundoff_to_bfloat16
def _randomized_roundoff_to_bfloat16(x, noise, cand1, cand2): """Round-off x to cand1 or to cand2 in an unbiased way. Cand1 and cand2 are the same shape as x. For every element of x, the corresponding elements of cand1 and cand2 should be the two closest bfloat16 values to x. Order does not matter. cand1 an...
python
def _randomized_roundoff_to_bfloat16(x, noise, cand1, cand2): """Round-off x to cand1 or to cand2 in an unbiased way. Cand1 and cand2 are the same shape as x. For every element of x, the corresponding elements of cand1 and cand2 should be the two closest bfloat16 values to x. Order does not matter. cand1 an...
[ "def", "_randomized_roundoff_to_bfloat16", "(", "x", ",", "noise", ",", "cand1", ",", "cand2", ")", ":", "cand1_f", "=", "tf", ".", "to_float", "(", "cand1", ")", "cand2_f", "=", "tf", ".", "to_float", "(", "cand2", ")", "step_size", "=", "cand2_f", "-",...
Round-off x to cand1 or to cand2 in an unbiased way. Cand1 and cand2 are the same shape as x. For every element of x, the corresponding elements of cand1 and cand2 should be the two closest bfloat16 values to x. Order does not matter. cand1 and cand2 must differ from each other. Args: x: A float32 Tens...
[ "Round", "-", "off", "x", "to", "cand1", "or", "to", "cand2", "in", "an", "unbiased", "way", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/quantization.py#L160-L183
21,832
tensorflow/tensor2tensor
tensor2tensor/utils/quantization.py
_to_bfloat16_unbiased
def _to_bfloat16_unbiased(x, noise): """Convert a float32 to a bfloat16 using randomized roundoff. Args: x: A float32 Tensor. noise: a float32 Tensor with values in [0, 1), broadcastable to tf.shape(x) Returns: A float32 Tensor. """ x_sign = tf.sign(x) # Make sure x is positive. If it is zero,...
python
def _to_bfloat16_unbiased(x, noise): """Convert a float32 to a bfloat16 using randomized roundoff. Args: x: A float32 Tensor. noise: a float32 Tensor with values in [0, 1), broadcastable to tf.shape(x) Returns: A float32 Tensor. """ x_sign = tf.sign(x) # Make sure x is positive. If it is zero,...
[ "def", "_to_bfloat16_unbiased", "(", "x", ",", "noise", ")", ":", "x_sign", "=", "tf", ".", "sign", "(", "x", ")", "# Make sure x is positive. If it is zero, the two candidates are identical.", "x", "=", "x", "*", "x_sign", "+", "1e-30", "cand1", "=", "tf", "."...
Convert a float32 to a bfloat16 using randomized roundoff. Args: x: A float32 Tensor. noise: a float32 Tensor with values in [0, 1), broadcastable to tf.shape(x) Returns: A float32 Tensor.
[ "Convert", "a", "float32", "to", "a", "bfloat16", "using", "randomized", "roundoff", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/quantization.py#L186-L206
21,833
tensorflow/tensor2tensor
tensor2tensor/utils/quantization.py
ParameterEncoding.custom_getter
def custom_getter(self, activation_dtype=tf.bfloat16): """A custom getter that uses the encoding for bfloat16 and float32 vars. When a bfloat16 or float32 variable is requsted, an encoded float16 varaible is created, which is then decoded and cast to a bfloat16 activation. Args: activation_d...
python
def custom_getter(self, activation_dtype=tf.bfloat16): """A custom getter that uses the encoding for bfloat16 and float32 vars. When a bfloat16 or float32 variable is requsted, an encoded float16 varaible is created, which is then decoded and cast to a bfloat16 activation. Args: activation_d...
[ "def", "custom_getter", "(", "self", ",", "activation_dtype", "=", "tf", ".", "bfloat16", ")", ":", "def", "getter_fn", "(", "getter", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "requested_dtype", "=", "kwargs", "[", "\"dtype\"", "]", "if", "...
A custom getter that uses the encoding for bfloat16 and float32 vars. When a bfloat16 or float32 variable is requsted, an encoded float16 varaible is created, which is then decoded and cast to a bfloat16 activation. Args: activation_dtype: a dtype to which to convert the decoded value. Retu...
[ "A", "custom", "getter", "that", "uses", "the", "encoding", "for", "bfloat16", "and", "float32", "vars", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/quantization.py#L246-L268
21,834
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
load_videos
def load_videos(template, video_length, frame_shape): """Loads videos from files. Args: template: template string for listing the image files. video_length: length of the video. frame_shape: shape of each frame. Returns: dataset: the tf dataset frame by frame. dataset_len: number of the item...
python
def load_videos(template, video_length, frame_shape): """Loads videos from files. Args: template: template string for listing the image files. video_length: length of the video. frame_shape: shape of each frame. Returns: dataset: the tf dataset frame by frame. dataset_len: number of the item...
[ "def", "load_videos", "(", "template", ",", "video_length", ",", "frame_shape", ")", ":", "filenames", "=", "tf", ".", "gfile", ".", "Glob", "(", "template", ")", "if", "not", "filenames", ":", "raise", "ValueError", "(", "\"no files found.\"", ")", "filenam...
Loads videos from files. Args: template: template string for listing the image files. video_length: length of the video. frame_shape: shape of each frame. Returns: dataset: the tf dataset frame by frame. dataset_len: number of the items which is the number of image files. Raises: ValueE...
[ "Loads", "videos", "from", "files", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L38-L63
21,835
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
psnr_and_ssim
def psnr_and_ssim(output, target): """Compute the PSNR and SSIM. Args: output: 4-D Tensor, shape=(num_frames, height, width, num_channels) target: 4-D Tensor, shape=(num_frames, height, width, num_channels) Returns: psnr: 1-D Tensor, shape=(num_frames,) ssim: 1-D Tensor, shape=(num_frames,) """...
python
def psnr_and_ssim(output, target): """Compute the PSNR and SSIM. Args: output: 4-D Tensor, shape=(num_frames, height, width, num_channels) target: 4-D Tensor, shape=(num_frames, height, width, num_channels) Returns: psnr: 1-D Tensor, shape=(num_frames,) ssim: 1-D Tensor, shape=(num_frames,) """...
[ "def", "psnr_and_ssim", "(", "output", ",", "target", ")", ":", "output", "=", "tf", ".", "cast", "(", "output", ",", "dtype", "=", "tf", ".", "int32", ")", "target", "=", "tf", ".", "cast", "(", "target", ",", "dtype", "=", "tf", ".", "int32", "...
Compute the PSNR and SSIM. Args: output: 4-D Tensor, shape=(num_frames, height, width, num_channels) target: 4-D Tensor, shape=(num_frames, height, width, num_channels) Returns: psnr: 1-D Tensor, shape=(num_frames,) ssim: 1-D Tensor, shape=(num_frames,)
[ "Compute", "the", "PSNR", "and", "SSIM", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L93-L107
21,836
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
get_zipped_dataset_from_predictions
def get_zipped_dataset_from_predictions(predictions): """Creates dataset from in-memory predictions.""" targets = stack_data_given_key(predictions, "targets") outputs = stack_data_given_key(predictions, "outputs") num_videos, num_steps = targets.shape[:2] # Truncate output time-steps to match target time-ste...
python
def get_zipped_dataset_from_predictions(predictions): """Creates dataset from in-memory predictions.""" targets = stack_data_given_key(predictions, "targets") outputs = stack_data_given_key(predictions, "outputs") num_videos, num_steps = targets.shape[:2] # Truncate output time-steps to match target time-ste...
[ "def", "get_zipped_dataset_from_predictions", "(", "predictions", ")", ":", "targets", "=", "stack_data_given_key", "(", "predictions", ",", "\"targets\"", ")", "outputs", "=", "stack_data_given_key", "(", "predictions", ",", "\"outputs\"", ")", "num_videos", ",", "nu...
Creates dataset from in-memory predictions.
[ "Creates", "dataset", "from", "in", "-", "memory", "predictions", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L116-L132
21,837
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
reduce_to_best_decode
def reduce_to_best_decode(metrics, reduce_func): """Extracts the best-decode from the metrics according to reduce_func. Args: metrics: 3-D numpy array, shape=(num_decodes, num_samples, num_frames) reduce_func: callable, np.argmax or np.argmin. Returns: best_metrics: 2-D numpy array, shape=(num_sample...
python
def reduce_to_best_decode(metrics, reduce_func): """Extracts the best-decode from the metrics according to reduce_func. Args: metrics: 3-D numpy array, shape=(num_decodes, num_samples, num_frames) reduce_func: callable, np.argmax or np.argmin. Returns: best_metrics: 2-D numpy array, shape=(num_sample...
[ "def", "reduce_to_best_decode", "(", "metrics", ",", "reduce_func", ")", ":", "num_videos", "=", "metrics", ".", "shape", "[", "1", "]", "# Take mean of the metric across the frames to approximate the video", "# closest to the ground truth.", "mean_across_frames", "=", "np", ...
Extracts the best-decode from the metrics according to reduce_func. Args: metrics: 3-D numpy array, shape=(num_decodes, num_samples, num_frames) reduce_func: callable, np.argmax or np.argmin. Returns: best_metrics: 2-D numpy array, shape=(num_samples, num_frames). best_decode_ind: 1-D numpy array, ...
[ "Extracts", "the", "best", "-", "decode", "from", "the", "metrics", "according", "to", "reduce_func", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L167-L185
21,838
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
compute_all_metrics_statistics
def compute_all_metrics_statistics(all_results): """Computes statistics of metrics across multiple decodings. Args: all_results: dict of 3-D numpy arrays. Each array has shape=(num_decodes, num_samples, num_frames). Returns: statistics: dict of 1-D numpy arrays, shape=(num_frames). ...
python
def compute_all_metrics_statistics(all_results): """Computes statistics of metrics across multiple decodings. Args: all_results: dict of 3-D numpy arrays. Each array has shape=(num_decodes, num_samples, num_frames). Returns: statistics: dict of 1-D numpy arrays, shape=(num_frames). ...
[ "def", "compute_all_metrics_statistics", "(", "all_results", ")", ":", "statistics", "=", "{", "}", "decode_inds", "=", "{", "}", "all_metrics", "=", "all_results", ".", "keys", "(", ")", "for", "key", "in", "all_metrics", ":", "values", "=", "all_results", ...
Computes statistics of metrics across multiple decodings. Args: all_results: dict of 3-D numpy arrays. Each array has shape=(num_decodes, num_samples, num_frames). Returns: statistics: dict of 1-D numpy arrays, shape=(num_frames). First the statistic (max/mean/std) is compu...
[ "Computes", "statistics", "of", "metrics", "across", "multiple", "decodings", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L188-L220
21,839
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
compute_video_metrics_from_predictions
def compute_video_metrics_from_predictions(predictions, decode_hparams): """Computes metrics from predictions. Args: predictions: list of list of dicts. outer length: num_decodes, inner_length: num_samples decode_hparams: Decode hparams. instance of HParams. Returns: statistics: dict...
python
def compute_video_metrics_from_predictions(predictions, decode_hparams): """Computes metrics from predictions. Args: predictions: list of list of dicts. outer length: num_decodes, inner_length: num_samples decode_hparams: Decode hparams. instance of HParams. Returns: statistics: dict...
[ "def", "compute_video_metrics_from_predictions", "(", "predictions", ",", "decode_hparams", ")", ":", "all_results", "=", "{", "}", "ssim_all_decodes", ",", "psnr_all_decodes", "=", "[", "]", ",", "[", "]", "for", "single_decode", "in", "predictions", ":", "args",...
Computes metrics from predictions. Args: predictions: list of list of dicts. outer length: num_decodes, inner_length: num_samples decode_hparams: Decode hparams. instance of HParams. Returns: statistics: dict of Tensors, key being the metric with each Tensor having the ...
[ "Computes", "metrics", "from", "predictions", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L223-L246
21,840
tensorflow/tensor2tensor
tensor2tensor/utils/video_metrics.py
compute_and_save_video_metrics
def compute_and_save_video_metrics( output_dirs, problem_name, video_length, frame_shape): """Compute and saves the video metrics.""" statistics, all_results = compute_video_metrics_from_png_files( output_dirs, problem_name, video_length, frame_shape) for results, output_dir in zip(all_results, output_d...
python
def compute_and_save_video_metrics( output_dirs, problem_name, video_length, frame_shape): """Compute and saves the video metrics.""" statistics, all_results = compute_video_metrics_from_png_files( output_dirs, problem_name, video_length, frame_shape) for results, output_dir in zip(all_results, output_d...
[ "def", "compute_and_save_video_metrics", "(", "output_dirs", ",", "problem_name", ",", "video_length", ",", "frame_shape", ")", ":", "statistics", ",", "all_results", "=", "compute_video_metrics_from_png_files", "(", "output_dirs", ",", "problem_name", ",", "video_length"...
Compute and saves the video metrics.
[ "Compute", "and", "saves", "the", "video", "metrics", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/video_metrics.py#L282-L294
21,841
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
basic_lstm
def basic_lstm(inputs, state, num_units, name=None): """Basic LSTM.""" input_shape = common_layers.shape_list(inputs) # reuse parameters across time-steps. cell = tf.nn.rnn_cell.BasicLSTMCell( num_units, name=name, reuse=tf.AUTO_REUSE) if state is None: state = cell.zero_state(input_shape[0], tf.flo...
python
def basic_lstm(inputs, state, num_units, name=None): """Basic LSTM.""" input_shape = common_layers.shape_list(inputs) # reuse parameters across time-steps. cell = tf.nn.rnn_cell.BasicLSTMCell( num_units, name=name, reuse=tf.AUTO_REUSE) if state is None: state = cell.zero_state(input_shape[0], tf.flo...
[ "def", "basic_lstm", "(", "inputs", ",", "state", ",", "num_units", ",", "name", "=", "None", ")", ":", "input_shape", "=", "common_layers", ".", "shape_list", "(", "inputs", ")", "# reuse parameters across time-steps.", "cell", "=", "tf", ".", "nn", ".", "r...
Basic LSTM.
[ "Basic", "LSTM", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L68-L77
21,842
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
lstm_cell
def lstm_cell(inputs, state, num_units, use_peepholes=False, cell_clip=0.0, initializer=None, num_proj=None, num_unit_shards=None, num_proj_shards=None, reuse=None, name=None): "...
python
def lstm_cell(inputs, state, num_units, use_peepholes=False, cell_clip=0.0, initializer=None, num_proj=None, num_unit_shards=None, num_proj_shards=None, reuse=None, name=None): "...
[ "def", "lstm_cell", "(", "inputs", ",", "state", ",", "num_units", ",", "use_peepholes", "=", "False", ",", "cell_clip", "=", "0.0", ",", "initializer", "=", "None", ",", "num_proj", "=", "None", ",", "num_unit_shards", "=", "None", ",", "num_proj_shards", ...
Full LSTM cell.
[ "Full", "LSTM", "cell", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L80-L106
21,843
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
conv_lstm_2d
def conv_lstm_2d(inputs, state, output_channels, kernel_size=5, name=None, spatial_dims=None): """2D Convolutional LSTM.""" input_shape = common_layers.shape_list(inputs) batch_size, input_channels = input_shape[0], input_shape[-1] if spatial_dims is None: input_shape = input_shape[1:] el...
python
def conv_lstm_2d(inputs, state, output_channels, kernel_size=5, name=None, spatial_dims=None): """2D Convolutional LSTM.""" input_shape = common_layers.shape_list(inputs) batch_size, input_channels = input_shape[0], input_shape[-1] if spatial_dims is None: input_shape = input_shape[1:] el...
[ "def", "conv_lstm_2d", "(", "inputs", ",", "state", ",", "output_channels", ",", "kernel_size", "=", "5", ",", "name", "=", "None", ",", "spatial_dims", "=", "None", ")", ":", "input_shape", "=", "common_layers", ".", "shape_list", "(", "inputs", ")", "bat...
2D Convolutional LSTM.
[ "2D", "Convolutional", "LSTM", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L109-L125
21,844
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
scheduled_sample_count
def scheduled_sample_count(ground_truth_x, generated_x, batch_size, scheduled_sample_var): """Sample batch with specified mix of groundtruth and generated data points. Args: ground_truth_x: tensor of ground-truth data points. ...
python
def scheduled_sample_count(ground_truth_x, generated_x, batch_size, scheduled_sample_var): """Sample batch with specified mix of groundtruth and generated data points. Args: ground_truth_x: tensor of ground-truth data points. ...
[ "def", "scheduled_sample_count", "(", "ground_truth_x", ",", "generated_x", ",", "batch_size", ",", "scheduled_sample_var", ")", ":", "num_ground_truth", "=", "scheduled_sample_var", "idx", "=", "tf", ".", "random_shuffle", "(", "tf", ".", "range", "(", "batch_size"...
Sample batch with specified mix of groundtruth and generated data points. Args: ground_truth_x: tensor of ground-truth data points. generated_x: tensor of generated data points. batch_size: batch size scheduled_sample_var: number of ground-truth examples to include in batch. Returns: New batch ...
[ "Sample", "batch", "with", "specified", "mix", "of", "groundtruth", "and", "generated", "data", "points", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L128-L156
21,845
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
inject_additional_input
def inject_additional_input(layer, inputs, name, mode="concat"): """Injects the additional input into the layer. Args: layer: layer that the input should be injected to. inputs: inputs to be injected. name: TF scope name. mode: how the infor should be added to the layer: "concat" concats as a...
python
def inject_additional_input(layer, inputs, name, mode="concat"): """Injects the additional input into the layer. Args: layer: layer that the input should be injected to. inputs: inputs to be injected. name: TF scope name. mode: how the infor should be added to the layer: "concat" concats as a...
[ "def", "inject_additional_input", "(", "layer", ",", "inputs", ",", "name", ",", "mode", "=", "\"concat\"", ")", ":", "layer_shape", "=", "common_layers", ".", "shape_list", "(", "layer", ")", "input_shape", "=", "common_layers", ".", "shape_list", "(", "input...
Injects the additional input into the layer. Args: layer: layer that the input should be injected to. inputs: inputs to be injected. name: TF scope name. mode: how the infor should be added to the layer: "concat" concats as additional channels. "multiplicative" broadcasts inputs and multi...
[ "Injects", "the", "additional", "input", "into", "the", "layer", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L159-L199
21,846
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
scheduled_sample_prob
def scheduled_sample_prob(ground_truth_x, generated_x, batch_size, scheduled_sample_var): """Probability based scheduled sampling. Args: ground_truth_x: tensor of ground-truth data points. generated_x: tensor of generated data po...
python
def scheduled_sample_prob(ground_truth_x, generated_x, batch_size, scheduled_sample_var): """Probability based scheduled sampling. Args: ground_truth_x: tensor of ground-truth data points. generated_x: tensor of generated data po...
[ "def", "scheduled_sample_prob", "(", "ground_truth_x", ",", "generated_x", ",", "batch_size", ",", "scheduled_sample_var", ")", ":", "probability_threshold", "=", "scheduled_sample_var", "probability_of_generated", "=", "tf", ".", "random_uniform", "(", "[", "batch_size",...
Probability based scheduled sampling. Args: ground_truth_x: tensor of ground-truth data points. generated_x: tensor of generated data points. batch_size: batch size scheduled_sample_var: probability of choosing from ground_truth. Returns: New batch with randomly selected data points.
[ "Probability", "based", "scheduled", "sampling", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L202-L219
21,847
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
dna_transformation
def dna_transformation(prev_image, dna_input, dna_kernel_size, relu_shift): """Apply dynamic neural advection to previous image. Args: prev_image: previous image to be transformed. dna_input: hidden lyaer to be used for computing DNA transformation. dna_kernel_size: dna kernel size. relu_shift: shi...
python
def dna_transformation(prev_image, dna_input, dna_kernel_size, relu_shift): """Apply dynamic neural advection to previous image. Args: prev_image: previous image to be transformed. dna_input: hidden lyaer to be used for computing DNA transformation. dna_kernel_size: dna kernel size. relu_shift: shi...
[ "def", "dna_transformation", "(", "prev_image", ",", "dna_input", ",", "dna_kernel_size", ",", "relu_shift", ")", ":", "# Construct translated images.", "prev_image_pad", "=", "tf", ".", "pad", "(", "prev_image", ",", "[", "[", "0", ",", "0", "]", ",", "[", ...
Apply dynamic neural advection to previous image. Args: prev_image: previous image to be transformed. dna_input: hidden lyaer to be used for computing DNA transformation. dna_kernel_size: dna kernel size. relu_shift: shift for ReLU function. Returns: List of images transformed by the predicted ...
[ "Apply", "dynamic", "neural", "advection", "to", "previous", "image", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L222-L251
21,848
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
cdna_transformation
def cdna_transformation(prev_image, cdna_input, num_masks, color_channels, dna_kernel_size, relu_shift): """Apply convolutional dynamic neural advection to previous image. Args: prev_image: previous image to be transformed. cdna_input: hidden lyaer to be used for computing CDNA kern...
python
def cdna_transformation(prev_image, cdna_input, num_masks, color_channels, dna_kernel_size, relu_shift): """Apply convolutional dynamic neural advection to previous image. Args: prev_image: previous image to be transformed. cdna_input: hidden lyaer to be used for computing CDNA kern...
[ "def", "cdna_transformation", "(", "prev_image", ",", "cdna_input", ",", "num_masks", ",", "color_channels", ",", "dna_kernel_size", ",", "relu_shift", ")", ":", "batch_size", "=", "tf", ".", "shape", "(", "cdna_input", ")", "[", "0", "]", "height", "=", "in...
Apply convolutional dynamic neural advection to previous image. Args: prev_image: previous image to be transformed. cdna_input: hidden lyaer to be used for computing CDNA kernels. num_masks: number of masks and hence the number of CDNA transformations. color_channels: the number of color channels in ...
[ "Apply", "convolutional", "dynamic", "neural", "advection", "to", "previous", "image", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L254-L304
21,849
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
vgg_layer
def vgg_layer(inputs, nout, kernel_size=3, activation=tf.nn.leaky_relu, padding="SAME", is_training=True, has_batchnorm=False, scope=None): """A layer of VGG network with batch norm. Args: inputs: image tensor ...
python
def vgg_layer(inputs, nout, kernel_size=3, activation=tf.nn.leaky_relu, padding="SAME", is_training=True, has_batchnorm=False, scope=None): """A layer of VGG network with batch norm. Args: inputs: image tensor ...
[ "def", "vgg_layer", "(", "inputs", ",", "nout", ",", "kernel_size", "=", "3", ",", "activation", "=", "tf", ".", "nn", ".", "leaky_relu", ",", "padding", "=", "\"SAME\"", ",", "is_training", "=", "True", ",", "has_batchnorm", "=", "False", ",", "scope", ...
A layer of VGG network with batch norm. Args: inputs: image tensor nout: number of output channels kernel_size: size of the kernel activation: activation function padding: padding of the image is_training: whether it is training mode or not has_batchnorm: whether batchnorm is applied or n...
[ "A", "layer", "of", "VGG", "network", "with", "batch", "norm", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L307-L335
21,850
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
tile_and_concat
def tile_and_concat(image, latent, concat_latent=True): """Tile latent and concatenate to image across depth. Args: image: 4-D Tensor, (batch_size X height X width X channels) latent: 2-D Tensor, (batch_size X latent_dims) concat_latent: If set to False, the image is returned as is. Returns: con...
python
def tile_and_concat(image, latent, concat_latent=True): """Tile latent and concatenate to image across depth. Args: image: 4-D Tensor, (batch_size X height X width X channels) latent: 2-D Tensor, (batch_size X latent_dims) concat_latent: If set to False, the image is returned as is. Returns: con...
[ "def", "tile_and_concat", "(", "image", ",", "latent", ",", "concat_latent", "=", "True", ")", ":", "if", "not", "concat_latent", ":", "return", "image", "image_shape", "=", "common_layers", ".", "shape_list", "(", "image", ")", "latent_shape", "=", "common_la...
Tile latent and concatenate to image across depth. Args: image: 4-D Tensor, (batch_size X height X width X channels) latent: 2-D Tensor, (batch_size X latent_dims) concat_latent: If set to False, the image is returned as is. Returns: concat_latent: 4-D Tensor, (batch_size X height X width X channe...
[ "Tile", "latent", "and", "concatenate", "to", "image", "across", "depth", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L338-L361
21,851
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
_encode_gif
def _encode_gif(images, fps): """Encodes numpy images into gif string. Args: images: A 4-D `uint8` `np.array` (or a list of 3-D images) of shape `[time, height, width, channels]` where `channels` is 1 or 3. fps: frames per second of the animation Returns: The encoded gif string. Raises: ...
python
def _encode_gif(images, fps): """Encodes numpy images into gif string. Args: images: A 4-D `uint8` `np.array` (or a list of 3-D images) of shape `[time, height, width, channels]` where `channels` is 1 or 3. fps: frames per second of the animation Returns: The encoded gif string. Raises: ...
[ "def", "_encode_gif", "(", "images", ",", "fps", ")", ":", "writer", "=", "WholeVideoWriter", "(", "fps", ")", "writer", ".", "write_multi", "(", "images", ")", "return", "writer", ".", "finish", "(", ")" ]
Encodes numpy images into gif string. Args: images: A 4-D `uint8` `np.array` (or a list of 3-D images) of shape `[time, height, width, channels]` where `channels` is 1 or 3. fps: frames per second of the animation Returns: The encoded gif string. Raises: IOError: If the ffmpeg command ret...
[ "Encodes", "numpy", "images", "into", "gif", "string", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L364-L380
21,852
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
ffmpeg_works
def ffmpeg_works(): """Tries to encode images with ffmpeg to check if it works.""" images = np.zeros((2, 32, 32, 3), dtype=np.uint8) try: _encode_gif(images, 2) return True except (IOError, OSError): return False
python
def ffmpeg_works(): """Tries to encode images with ffmpeg to check if it works.""" images = np.zeros((2, 32, 32, 3), dtype=np.uint8) try: _encode_gif(images, 2) return True except (IOError, OSError): return False
[ "def", "ffmpeg_works", "(", ")", ":", "images", "=", "np", ".", "zeros", "(", "(", "2", ",", "32", ",", "32", ",", "3", ")", ",", "dtype", "=", "np", ".", "uint8", ")", "try", ":", "_encode_gif", "(", "images", ",", "2", ")", "return", "True", ...
Tries to encode images with ffmpeg to check if it works.
[ "Tries", "to", "encode", "images", "with", "ffmpeg", "to", "check", "if", "it", "works", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L383-L390
21,853
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
conv_latent_tower
def conv_latent_tower(images, time_axis, latent_channels=1, min_logvar=-5, is_training=False, random_latent=False, tiny_mode=False, small_mode=False): """Builds convolutional latent tower for stochastic model. At training time this tower generates a latent distribution (...
python
def conv_latent_tower(images, time_axis, latent_channels=1, min_logvar=-5, is_training=False, random_latent=False, tiny_mode=False, small_mode=False): """Builds convolutional latent tower for stochastic model. At training time this tower generates a latent distribution (...
[ "def", "conv_latent_tower", "(", "images", ",", "time_axis", ",", "latent_channels", "=", "1", ",", "min_logvar", "=", "-", "5", ",", "is_training", "=", "False", ",", "random_latent", "=", "False", ",", "tiny_mode", "=", "False", ",", "small_mode", "=", "...
Builds convolutional latent tower for stochastic model. At training time this tower generates a latent distribution (mean and std) conditioned on the entire video. This latent variable will be fed to the main tower as an extra variable to be used for future frames prediction. At inference time, the tower is di...
[ "Builds", "convolutional", "latent", "tower", "for", "stochastic", "model", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L516-L582
21,854
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
extract_random_video_patch
def extract_random_video_patch(videos, num_frames=-1): """For every video, extract a random consecutive patch of num_frames. Args: videos: 5-D Tensor, (NTHWC) num_frames: Integer, if -1 then the entire video is returned. Returns: video_patch: 5-D Tensor, (NTHWC) with T = num_frames. Raises: Val...
python
def extract_random_video_patch(videos, num_frames=-1): """For every video, extract a random consecutive patch of num_frames. Args: videos: 5-D Tensor, (NTHWC) num_frames: Integer, if -1 then the entire video is returned. Returns: video_patch: 5-D Tensor, (NTHWC) with T = num_frames. Raises: Val...
[ "def", "extract_random_video_patch", "(", "videos", ",", "num_frames", "=", "-", "1", ")", ":", "if", "num_frames", "==", "-", "1", ":", "return", "videos", "batch_size", ",", "num_total_frames", ",", "h", ",", "w", ",", "c", "=", "common_layers", ".", "...
For every video, extract a random consecutive patch of num_frames. Args: videos: 5-D Tensor, (NTHWC) num_frames: Integer, if -1 then the entire video is returned. Returns: video_patch: 5-D Tensor, (NTHWC) with T = num_frames. Raises: ValueError: If num_frames is greater than the number of total f...
[ "For", "every", "video", "extract", "a", "random", "consecutive", "patch", "of", "num_frames", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L621-L658
21,855
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
VideoWriter.write_multi
def write_multi(self, frames, encoded_frames=None): """Writes multiple video frames.""" if encoded_frames is None: # Infinite iterator. encoded_frames = iter(lambda: None, 1) for (frame, encoded_frame) in zip(frames, encoded_frames): self.write(frame, encoded_frame)
python
def write_multi(self, frames, encoded_frames=None): """Writes multiple video frames.""" if encoded_frames is None: # Infinite iterator. encoded_frames = iter(lambda: None, 1) for (frame, encoded_frame) in zip(frames, encoded_frames): self.write(frame, encoded_frame)
[ "def", "write_multi", "(", "self", ",", "frames", ",", "encoded_frames", "=", "None", ")", ":", "if", "encoded_frames", "is", "None", ":", "# Infinite iterator.", "encoded_frames", "=", "iter", "(", "lambda", ":", "None", ",", "1", ")", "for", "(", "frame"...
Writes multiple video frames.
[ "Writes", "multiple", "video", "frames", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L668-L674
21,856
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
WholeVideoWriter.__init_ffmpeg
def __init_ffmpeg(self, image_shape): """Initializes ffmpeg to write frames.""" import itertools # pylint: disable=g-import-not-at-top from subprocess import Popen, PIPE # pylint: disable=g-import-not-at-top,g-multiple-import,g-importing-member ffmpeg = "ffmpeg" height, width, channels = image_sha...
python
def __init_ffmpeg(self, image_shape): """Initializes ffmpeg to write frames.""" import itertools # pylint: disable=g-import-not-at-top from subprocess import Popen, PIPE # pylint: disable=g-import-not-at-top,g-multiple-import,g-importing-member ffmpeg = "ffmpeg" height, width, channels = image_sha...
[ "def", "__init_ffmpeg", "(", "self", ",", "image_shape", ")", ":", "import", "itertools", "# pylint: disable=g-import-not-at-top", "from", "subprocess", "import", "Popen", ",", "PIPE", "# pylint: disable=g-import-not-at-top,g-multiple-import,g-importing-member", "ffmpeg", "=", ...
Initializes ffmpeg to write frames.
[ "Initializes", "ffmpeg", "to", "write", "frames", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L715-L744
21,857
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
WholeVideoWriter._start_reader_thread
def _start_reader_thread(self, stream, chunks): """Starts a thread for reading output from FFMPEG. The thread reads consecutive chunks from the stream and saves them in the given list. Args: stream: output stream of the FFMPEG process. chunks: list to save output chunks to. Returns: ...
python
def _start_reader_thread(self, stream, chunks): """Starts a thread for reading output from FFMPEG. The thread reads consecutive chunks from the stream and saves them in the given list. Args: stream: output stream of the FFMPEG process. chunks: list to save output chunks to. Returns: ...
[ "def", "_start_reader_thread", "(", "self", ",", "stream", ",", "chunks", ")", ":", "import", "io", "# pylint: disable=g-import-not-at-top", "import", "threading", "# pylint: disable=g-import-not-at-top", "def", "target", "(", ")", ":", "while", "True", ":", "chunk", ...
Starts a thread for reading output from FFMPEG. The thread reads consecutive chunks from the stream and saves them in the given list. Args: stream: output stream of the FFMPEG process. chunks: list to save output chunks to. Returns: Thread
[ "Starts", "a", "thread", "for", "reading", "output", "from", "FFMPEG", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L746-L769
21,858
tensorflow/tensor2tensor
tensor2tensor/layers/common_video.py
WholeVideoWriter.finish
def finish(self): """Finishes transconding and returns the video. Returns: bytes Raises: IOError: in case of transcoding error. """ if self.proc is None: return None self.proc.stdin.close() for thread in (self._out_thread, self._err_thread): thread.join() (out, ...
python
def finish(self): """Finishes transconding and returns the video. Returns: bytes Raises: IOError: in case of transcoding error. """ if self.proc is None: return None self.proc.stdin.close() for thread in (self._out_thread, self._err_thread): thread.join() (out, ...
[ "def", "finish", "(", "self", ")", ":", "if", "self", ".", "proc", "is", "None", ":", "return", "None", "self", ".", "proc", ".", "stdin", ".", "close", "(", ")", "for", "thread", "in", "(", "self", ".", "_out_thread", ",", "self", ".", "_err_threa...
Finishes transconding and returns the video. Returns: bytes Raises: IOError: in case of transcoding error.
[ "Finishes", "transconding", "and", "returns", "the", "video", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_video.py#L776-L800
21,859
tensorflow/tensor2tensor
tensor2tensor/serving/query.py
validate_flags
def validate_flags(): """Validates flags are set to acceptable values.""" if FLAGS.cloud_mlengine_model_name: assert not FLAGS.server assert not FLAGS.servable_name else: assert FLAGS.server assert FLAGS.servable_name
python
def validate_flags(): """Validates flags are set to acceptable values.""" if FLAGS.cloud_mlengine_model_name: assert not FLAGS.server assert not FLAGS.servable_name else: assert FLAGS.server assert FLAGS.servable_name
[ "def", "validate_flags", "(", ")", ":", "if", "FLAGS", ".", "cloud_mlengine_model_name", ":", "assert", "not", "FLAGS", ".", "server", "assert", "not", "FLAGS", ".", "servable_name", "else", ":", "assert", "FLAGS", ".", "server", "assert", "FLAGS", ".", "ser...
Validates flags are set to acceptable values.
[ "Validates", "flags", "are", "set", "to", "acceptable", "values", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/serving/query.py#L53-L60
21,860
tensorflow/tensor2tensor
tensor2tensor/serving/query.py
make_request_fn
def make_request_fn(): """Returns a request function.""" if FLAGS.cloud_mlengine_model_name: request_fn = serving_utils.make_cloud_mlengine_request_fn( credentials=GoogleCredentials.get_application_default(), model_name=FLAGS.cloud_mlengine_model_name, version=FLAGS.cloud_mlengine_model_...
python
def make_request_fn(): """Returns a request function.""" if FLAGS.cloud_mlengine_model_name: request_fn = serving_utils.make_cloud_mlengine_request_fn( credentials=GoogleCredentials.get_application_default(), model_name=FLAGS.cloud_mlengine_model_name, version=FLAGS.cloud_mlengine_model_...
[ "def", "make_request_fn", "(", ")", ":", "if", "FLAGS", ".", "cloud_mlengine_model_name", ":", "request_fn", "=", "serving_utils", ".", "make_cloud_mlengine_request_fn", "(", "credentials", "=", "GoogleCredentials", ".", "get_application_default", "(", ")", ",", "mode...
Returns a request function.
[ "Returns", "a", "request", "function", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/serving/query.py#L63-L76
21,861
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.encoder
def encoder(self, inputs, n_layers=3): """Convnet that encodes inputs into mean and std of a gaussian. Args: inputs: 5-D Tensor, shape (batch_size, num_frames, width, height, channels) n_layers: Number of layers. Returns: z_mu: Mean of the latent gaussians. z_log_var: log(var) of the l...
python
def encoder(self, inputs, n_layers=3): """Convnet that encodes inputs into mean and std of a gaussian. Args: inputs: 5-D Tensor, shape (batch_size, num_frames, width, height, channels) n_layers: Number of layers. Returns: z_mu: Mean of the latent gaussians. z_log_var: log(var) of the l...
[ "def", "encoder", "(", "self", ",", "inputs", ",", "n_layers", "=", "3", ")", ":", "latent_dims", "=", "self", ".", "hparams", ".", "z_dim", "shape_as_list", "=", "inputs", ".", "shape", ".", "as_list", "(", ")", "if", "len", "(", "shape_as_list", ")",...
Convnet that encodes inputs into mean and std of a gaussian. Args: inputs: 5-D Tensor, shape (batch_size, num_frames, width, height, channels) n_layers: Number of layers. Returns: z_mu: Mean of the latent gaussians. z_log_var: log(var) of the latent gaussians. Raises: ValueError...
[ "Convnet", "that", "encodes", "inputs", "into", "mean", "and", "std", "of", "a", "gaussian", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L42-L105
21,862
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.get_fc_dimensions
def get_fc_dimensions(self, strides, kernel_sizes): """Get expected fully connected shape after a series of convolutions.""" output_height, output_width, _ = self.hparams.problem.frame_shape output_steps = self.hparams.video_num_target_frames output_shape = np.array([output_steps, output_height, output_...
python
def get_fc_dimensions(self, strides, kernel_sizes): """Get expected fully connected shape after a series of convolutions.""" output_height, output_width, _ = self.hparams.problem.frame_shape output_steps = self.hparams.video_num_target_frames output_shape = np.array([output_steps, output_height, output_...
[ "def", "get_fc_dimensions", "(", "self", ",", "strides", ",", "kernel_sizes", ")", ":", "output_height", ",", "output_width", ",", "_", "=", "self", ".", "hparams", ".", "problem", ".", "frame_shape", "output_steps", "=", "self", ".", "hparams", ".", "video_...
Get expected fully connected shape after a series of convolutions.
[ "Get", "expected", "fully", "connected", "shape", "after", "a", "series", "of", "convolutions", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L110-L118
21,863
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.discriminator
def discriminator(self, frames): """3-D SNGAN discriminator. Args: frames: a list of batch-major tensors indexed by time. Returns: logits: 1-D Tensor with shape=batch_size. Positive logits imply that the discriminator thinks that it belongs to the true class. ""...
python
def discriminator(self, frames): """3-D SNGAN discriminator. Args: frames: a list of batch-major tensors indexed by time. Returns: logits: 1-D Tensor with shape=batch_size. Positive logits imply that the discriminator thinks that it belongs to the true class. ""...
[ "def", "discriminator", "(", "self", ",", "frames", ")", ":", "ndf", "=", "self", ".", "hparams", ".", "num_discriminator_filters", "frames", "=", "tf", ".", "stack", "(", "frames", ")", "# Switch from time-major axis to batch-major axis.", "frames", "=", "common_...
3-D SNGAN discriminator. Args: frames: a list of batch-major tensors indexed by time. Returns: logits: 1-D Tensor with shape=batch_size. Positive logits imply that the discriminator thinks that it belongs to the true class.
[ "3", "-", "D", "SNGAN", "discriminator", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L120-L153
21,864
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.d_step
def d_step(self, true_frames, gen_frames): """Performs the discriminator step in computing the GAN loss. Applies stop-gradient to the generated frames while computing the discriminator loss to make sure that the gradients are not back-propagated to the generator. This makes sure that only the discrimin...
python
def d_step(self, true_frames, gen_frames): """Performs the discriminator step in computing the GAN loss. Applies stop-gradient to the generated frames while computing the discriminator loss to make sure that the gradients are not back-propagated to the generator. This makes sure that only the discrimin...
[ "def", "d_step", "(", "self", ",", "true_frames", ",", "gen_frames", ")", ":", "hparam_to_disc_loss", "=", "{", "\"least_squares\"", ":", "gan_losses", ".", "least_squares_discriminator_loss", ",", "\"cross_entropy\"", ":", "gan_losses", ".", "modified_discriminator_los...
Performs the discriminator step in computing the GAN loss. Applies stop-gradient to the generated frames while computing the discriminator loss to make sure that the gradients are not back-propagated to the generator. This makes sure that only the discriminator is updated. Args: true_frames: Tru...
[ "Performs", "the", "discriminator", "step", "in", "computing", "the", "GAN", "loss", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L155-L192
21,865
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.g_step
def g_step(self, gen_frames, fake_logits_stop): """Performs the generator step in computing the GAN loss. Args: gen_frames: Generated frames fake_logits_stop: Logits corresponding to the generated frames as per the discriminator. Assumed to have a stop-gradient term. Ret...
python
def g_step(self, gen_frames, fake_logits_stop): """Performs the generator step in computing the GAN loss. Args: gen_frames: Generated frames fake_logits_stop: Logits corresponding to the generated frames as per the discriminator. Assumed to have a stop-gradient term. Ret...
[ "def", "g_step", "(", "self", ",", "gen_frames", ",", "fake_logits_stop", ")", ":", "hparam_to_gen_loss", "=", "{", "\"least_squares\"", ":", "gan_losses", ".", "least_squares_generator_loss", ",", "\"cross_entropy\"", ":", "gan_losses", ".", "modified_generator_loss", ...
Performs the generator step in computing the GAN loss. Args: gen_frames: Generated frames fake_logits_stop: Logits corresponding to the generated frames as per the discriminator. Assumed to have a stop-gradient term. Returns: gan_g_loss_pos_d: Loss. gan_g_loss_ne...
[ "Performs", "the", "generator", "step", "in", "computing", "the", "GAN", "loss", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L194-L226
21,866
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.get_gan_loss
def get_gan_loss(self, true_frames, gen_frames, name): """Get the discriminator + generator loss at every step. This performs an 1:1 update of the discriminator and generator at every step. Args: true_frames: 5-D Tensor of shape (num_steps, batch_size, H, W, C) Assumed to be g...
python
def get_gan_loss(self, true_frames, gen_frames, name): """Get the discriminator + generator loss at every step. This performs an 1:1 update of the discriminator and generator at every step. Args: true_frames: 5-D Tensor of shape (num_steps, batch_size, H, W, C) Assumed to be g...
[ "def", "get_gan_loss", "(", "self", ",", "true_frames", ",", "gen_frames", ",", "name", ")", ":", "# D - STEP", "with", "tf", ".", "variable_scope", "(", "\"%s_discriminator\"", "%", "name", ",", "reuse", "=", "tf", ".", "AUTO_REUSE", ")", ":", "gan_d_loss",...
Get the discriminator + generator loss at every step. This performs an 1:1 update of the discriminator and generator at every step. Args: true_frames: 5-D Tensor of shape (num_steps, batch_size, H, W, C) Assumed to be ground truth. gen_frames: 5-D Tensor of shape (num_steps,...
[ "Get", "the", "discriminator", "+", "generator", "loss", "at", "every", "step", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L228-L262
21,867
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.get_extra_loss
def get_extra_loss(self, latent_means=None, latent_stds=None, true_frames=None, gen_frames=None): """Gets extra loss from VAE and GAN.""" if not self.is_training: return 0.0 vae_loss, d_vae_loss, d_gan_loss = 0.0, 0.0, 0.0 # Use sv2p's KL divergence computation. if self.h...
python
def get_extra_loss(self, latent_means=None, latent_stds=None, true_frames=None, gen_frames=None): """Gets extra loss from VAE and GAN.""" if not self.is_training: return 0.0 vae_loss, d_vae_loss, d_gan_loss = 0.0, 0.0, 0.0 # Use sv2p's KL divergence computation. if self.h...
[ "def", "get_extra_loss", "(", "self", ",", "latent_means", "=", "None", ",", "latent_stds", "=", "None", ",", "true_frames", "=", "None", ",", "gen_frames", "=", "None", ")", ":", "if", "not", "self", ".", "is_training", ":", "return", "0.0", "vae_loss", ...
Gets extra loss from VAE and GAN.
[ "Gets", "extra", "loss", "from", "VAE", "and", "GAN", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L264-L296
21,868
tensorflow/tensor2tensor
tensor2tensor/models/video/savp.py
NextFrameSavpBase.pad_conv3d_lrelu
def pad_conv3d_lrelu(self, activations, n_filters, kernel_size, strides, scope): """Pad, apply 3-D convolution and leaky relu.""" padding = [[0, 0], [1, 1], [1, 1], [1, 1], [0, 0]] # tf.nn.conv3d accepts a list of 5 values for strides # with first and last value equal to 1 if...
python
def pad_conv3d_lrelu(self, activations, n_filters, kernel_size, strides, scope): """Pad, apply 3-D convolution and leaky relu.""" padding = [[0, 0], [1, 1], [1, 1], [1, 1], [0, 0]] # tf.nn.conv3d accepts a list of 5 values for strides # with first and last value equal to 1 if...
[ "def", "pad_conv3d_lrelu", "(", "self", ",", "activations", ",", "n_filters", ",", "kernel_size", ",", "strides", ",", "scope", ")", ":", "padding", "=", "[", "[", "0", ",", "0", "]", ",", "[", "1", ",", "1", "]", ",", "[", "1", ",", "1", "]", ...
Pad, apply 3-D convolution and leaky relu.
[ "Pad", "apply", "3", "-", "D", "convolution", "and", "leaky", "relu", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/savp.py#L298-L327
21,869
tensorflow/tensor2tensor
tensor2tensor/utils/pruning_utils.py
sparsify
def sparsify(sess, eval_model, pruning_strategy, pruning_params): """Prune the weights of a model and evaluate.""" weights = tf.trainable_variables() def should_prune(name): """Whether to prune a weight or not.""" in_whitelist = not pruning_params.white_list or any( e in name for e in pruning_par...
python
def sparsify(sess, eval_model, pruning_strategy, pruning_params): """Prune the weights of a model and evaluate.""" weights = tf.trainable_variables() def should_prune(name): """Whether to prune a weight or not.""" in_whitelist = not pruning_params.white_list or any( e in name for e in pruning_par...
[ "def", "sparsify", "(", "sess", ",", "eval_model", ",", "pruning_strategy", ",", "pruning_params", ")", ":", "weights", "=", "tf", ".", "trainable_variables", "(", ")", "def", "should_prune", "(", "name", ")", ":", "\"\"\"Whether to prune a weight or not.\"\"\"", ...
Prune the weights of a model and evaluate.
[ "Prune", "the", "weights", "of", "a", "model", "and", "evaluate", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/pruning_utils.py#L45-L80
21,870
tensorflow/tensor2tensor
tensor2tensor/insights/server.py
DebugFrontendApplication.load_config
def load_config(self): """Loads the configuration.""" config = dict([(key, value) for key, value in iteritems(self.options) if key in self.cfg.settings and value is not None]) for key, value in iteritems(config): self.cfg.set(key.lower(), value)
python
def load_config(self): """Loads the configuration.""" config = dict([(key, value) for key, value in iteritems(self.options) if key in self.cfg.settings and value is not None]) for key, value in iteritems(config): self.cfg.set(key.lower(), value)
[ "def", "load_config", "(", "self", ")", ":", "config", "=", "dict", "(", "[", "(", "key", ",", "value", ")", "for", "key", ",", "value", "in", "iteritems", "(", "self", ".", "options", ")", "if", "key", "in", "self", ".", "cfg", ".", "settings", ...
Loads the configuration.
[ "Loads", "the", "configuration", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/insights/server.py#L79-L84
21,871
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
ppo_atari_base
def ppo_atari_base(): """Pong base parameters.""" hparams = ppo_discrete_action_base() hparams.learning_rate_constant = 1e-4 hparams.epoch_length = 200 hparams.gae_gamma = 0.985 hparams.gae_lambda = 0.985 hparams.entropy_loss_coef = 0.003 hparams.value_loss_coef = 1 hparams.optimization_epochs = 3 h...
python
def ppo_atari_base(): """Pong base parameters.""" hparams = ppo_discrete_action_base() hparams.learning_rate_constant = 1e-4 hparams.epoch_length = 200 hparams.gae_gamma = 0.985 hparams.gae_lambda = 0.985 hparams.entropy_loss_coef = 0.003 hparams.value_loss_coef = 1 hparams.optimization_epochs = 3 h...
[ "def", "ppo_atari_base", "(", ")", ":", "hparams", "=", "ppo_discrete_action_base", "(", ")", "hparams", ".", "learning_rate_constant", "=", "1e-4", "hparams", ".", "epoch_length", "=", "200", "hparams", ".", "gae_gamma", "=", "0.985", "hparams", ".", "gae_lambd...
Pong base parameters.
[ "Pong", "base", "parameters", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L100-L115
21,872
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
ppo_original_params
def ppo_original_params(): """Parameters based on the original PPO paper.""" hparams = ppo_atari_base() hparams.learning_rate_constant = 2.5e-4 hparams.gae_gamma = 0.99 hparams.gae_lambda = 0.95 hparams.clipping_coef = 0.1 hparams.value_loss_coef = 1 hparams.entropy_loss_coef = 0.01 hparams.eval_every...
python
def ppo_original_params(): """Parameters based on the original PPO paper.""" hparams = ppo_atari_base() hparams.learning_rate_constant = 2.5e-4 hparams.gae_gamma = 0.99 hparams.gae_lambda = 0.95 hparams.clipping_coef = 0.1 hparams.value_loss_coef = 1 hparams.entropy_loss_coef = 0.01 hparams.eval_every...
[ "def", "ppo_original_params", "(", ")", ":", "hparams", "=", "ppo_atari_base", "(", ")", "hparams", ".", "learning_rate_constant", "=", "2.5e-4", "hparams", ".", "gae_gamma", "=", "0.99", "hparams", ".", "gae_lambda", "=", "0.95", "hparams", ".", "clipping_coef"...
Parameters based on the original PPO paper.
[ "Parameters", "based", "on", "the", "original", "PPO", "paper", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L119-L134
21,873
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
ppo_original_world_model_stochastic_discrete
def ppo_original_world_model_stochastic_discrete(): """Atari parameters with stochastic discrete world model as policy.""" hparams = ppo_original_params() hparams.policy_network = "next_frame_basic_stochastic_discrete" hparams_keys = hparams.values().keys() video_hparams = basic_stochastic.next_frame_basic_st...
python
def ppo_original_world_model_stochastic_discrete(): """Atari parameters with stochastic discrete world model as policy.""" hparams = ppo_original_params() hparams.policy_network = "next_frame_basic_stochastic_discrete" hparams_keys = hparams.values().keys() video_hparams = basic_stochastic.next_frame_basic_st...
[ "def", "ppo_original_world_model_stochastic_discrete", "(", ")", ":", "hparams", "=", "ppo_original_params", "(", ")", "hparams", ".", "policy_network", "=", "\"next_frame_basic_stochastic_discrete\"", "hparams_keys", "=", "hparams", ".", "values", "(", ")", ".", "keys"...
Atari parameters with stochastic discrete world model as policy.
[ "Atari", "parameters", "with", "stochastic", "discrete", "world", "model", "as", "policy", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L205-L219
21,874
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
make_simulated_env_fn
def make_simulated_env_fn(**env_kwargs): """Returns a function creating a simulated env, in or out of graph. Args: **env_kwargs: kwargs to pass to the simulated env constructor. Returns: Function in_graph -> env. """ def env_fn(in_graph): class_ = SimulatedBatchEnv if in_graph else SimulatedBatc...
python
def make_simulated_env_fn(**env_kwargs): """Returns a function creating a simulated env, in or out of graph. Args: **env_kwargs: kwargs to pass to the simulated env constructor. Returns: Function in_graph -> env. """ def env_fn(in_graph): class_ = SimulatedBatchEnv if in_graph else SimulatedBatc...
[ "def", "make_simulated_env_fn", "(", "*", "*", "env_kwargs", ")", ":", "def", "env_fn", "(", "in_graph", ")", ":", "class_", "=", "SimulatedBatchEnv", "if", "in_graph", "else", "SimulatedBatchGymEnv", "return", "class_", "(", "*", "*", "env_kwargs", ")", "retu...
Returns a function creating a simulated env, in or out of graph. Args: **env_kwargs: kwargs to pass to the simulated env constructor. Returns: Function in_graph -> env.
[ "Returns", "a", "function", "creating", "a", "simulated", "env", "in", "or", "out", "of", "graph", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L234-L246
21,875
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
make_simulated_env_kwargs
def make_simulated_env_kwargs(real_env, hparams, **extra_kwargs): """Extracts simulated env kwargs from real_env and loop hparams.""" objs_and_attrs = [ (real_env, [ "reward_range", "observation_space", "action_space", "frame_height", "frame_width" ]), (hparams, ["frame_stack_s...
python
def make_simulated_env_kwargs(real_env, hparams, **extra_kwargs): """Extracts simulated env kwargs from real_env and loop hparams.""" objs_and_attrs = [ (real_env, [ "reward_range", "observation_space", "action_space", "frame_height", "frame_width" ]), (hparams, ["frame_stack_s...
[ "def", "make_simulated_env_kwargs", "(", "real_env", ",", "hparams", ",", "*", "*", "extra_kwargs", ")", ":", "objs_and_attrs", "=", "[", "(", "real_env", ",", "[", "\"reward_range\"", ",", "\"observation_space\"", ",", "\"action_space\"", ",", "\"frame_height\"", ...
Extracts simulated env kwargs from real_env and loop hparams.
[ "Extracts", "simulated", "env", "kwargs", "from", "real_env", "and", "loop", "hparams", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L250-L270
21,876
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
get_policy
def get_policy(observations, hparams, action_space): """Get a policy network. Args: observations: observations hparams: parameters action_space: action space Returns: Tuple (action logits, value). """ if not isinstance(action_space, gym.spaces.Discrete): raise ValueError("Expecting discr...
python
def get_policy(observations, hparams, action_space): """Get a policy network. Args: observations: observations hparams: parameters action_space: action space Returns: Tuple (action logits, value). """ if not isinstance(action_space, gym.spaces.Discrete): raise ValueError("Expecting discr...
[ "def", "get_policy", "(", "observations", ",", "hparams", ",", "action_space", ")", ":", "if", "not", "isinstance", "(", "action_space", ",", "gym", ".", "spaces", ".", "Discrete", ")", ":", "raise", "ValueError", "(", "\"Expecting discrete action space.\"", ")"...
Get a policy network. Args: observations: observations hparams: parameters action_space: action space Returns: Tuple (action logits, value).
[ "Get", "a", "policy", "network", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L280-L332
21,877
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
rlmf_tictactoe
def rlmf_tictactoe(): """Base set of hparams for model-free PPO.""" hparams = rlmf_original() hparams.game = "tictactoe" hparams.rl_env_name = "T2TEnv-TicTacToeEnv-v0" # Since we don't have any no-op actions, otherwise we have to have an # attribute called `get_action_meanings`. hparams.eval_max_num_noops...
python
def rlmf_tictactoe(): """Base set of hparams for model-free PPO.""" hparams = rlmf_original() hparams.game = "tictactoe" hparams.rl_env_name = "T2TEnv-TicTacToeEnv-v0" # Since we don't have any no-op actions, otherwise we have to have an # attribute called `get_action_meanings`. hparams.eval_max_num_noops...
[ "def", "rlmf_tictactoe", "(", ")", ":", "hparams", "=", "rlmf_original", "(", ")", "hparams", ".", "game", "=", "\"tictactoe\"", "hparams", ".", "rl_env_name", "=", "\"T2TEnv-TicTacToeEnv-v0\"", "# Since we don't have any no-op actions, otherwise we have to have an", "# att...
Base set of hparams for model-free PPO.
[ "Base", "set", "of", "hparams", "for", "model", "-", "free", "PPO", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L427-L443
21,878
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
rlmf_tiny
def rlmf_tiny(): """Tiny set of hparams for model-free PPO.""" hparams = rlmf_original() hparams = hparams.override_from_dict(rlmf_tiny_overrides()) hparams.batch_size = 2 hparams.base_algo_params = "ppo_original_tiny" hparams.add_hparam("ppo_epochs_num", 3) hparams.add_hparam("ppo_epoch_length", 2) ret...
python
def rlmf_tiny(): """Tiny set of hparams for model-free PPO.""" hparams = rlmf_original() hparams = hparams.override_from_dict(rlmf_tiny_overrides()) hparams.batch_size = 2 hparams.base_algo_params = "ppo_original_tiny" hparams.add_hparam("ppo_epochs_num", 3) hparams.add_hparam("ppo_epoch_length", 2) ret...
[ "def", "rlmf_tiny", "(", ")", ":", "hparams", "=", "rlmf_original", "(", ")", "hparams", "=", "hparams", ".", "override_from_dict", "(", "rlmf_tiny_overrides", "(", ")", ")", "hparams", ".", "batch_size", "=", "2", "hparams", ".", "base_algo_params", "=", "\...
Tiny set of hparams for model-free PPO.
[ "Tiny", "set", "of", "hparams", "for", "model", "-", "free", "PPO", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L456-L464
21,879
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
rlmf_dqn_tiny
def rlmf_dqn_tiny(): """Tiny DQN params.""" hparams = rlmf_original() hparams = hparams.override_from_dict(rlmf_tiny_overrides()) hparams.batch_size = 1 hparams.base_algo = "dqn" hparams.base_algo_params = "dqn_original_params" hparams.add_hparam("dqn_num_frames", 128) hparams.add_hparam("dqn_save_every...
python
def rlmf_dqn_tiny(): """Tiny DQN params.""" hparams = rlmf_original() hparams = hparams.override_from_dict(rlmf_tiny_overrides()) hparams.batch_size = 1 hparams.base_algo = "dqn" hparams.base_algo_params = "dqn_original_params" hparams.add_hparam("dqn_num_frames", 128) hparams.add_hparam("dqn_save_every...
[ "def", "rlmf_dqn_tiny", "(", ")", ":", "hparams", "=", "rlmf_original", "(", ")", "hparams", "=", "hparams", ".", "override_from_dict", "(", "rlmf_tiny_overrides", "(", ")", ")", "hparams", ".", "batch_size", "=", "1", "hparams", ".", "base_algo", "=", "\"dq...
Tiny DQN params.
[ "Tiny", "DQN", "params", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L468-L479
21,880
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
rlmf_eval
def rlmf_eval(): """Eval set of hparams for model-free PPO.""" hparams = rlmf_original() hparams.batch_size = 8 hparams.eval_sampling_temps = [0.0, 0.5, 1.0] hparams.eval_rl_env_max_episode_steps = -1 hparams.add_hparam("ppo_epoch_length", 128) hparams.add_hparam("ppo_optimization_batch_size", 32) hpara...
python
def rlmf_eval(): """Eval set of hparams for model-free PPO.""" hparams = rlmf_original() hparams.batch_size = 8 hparams.eval_sampling_temps = [0.0, 0.5, 1.0] hparams.eval_rl_env_max_episode_steps = -1 hparams.add_hparam("ppo_epoch_length", 128) hparams.add_hparam("ppo_optimization_batch_size", 32) hpara...
[ "def", "rlmf_eval", "(", ")", ":", "hparams", "=", "rlmf_original", "(", ")", "hparams", ".", "batch_size", "=", "8", "hparams", ".", "eval_sampling_temps", "=", "[", "0.0", ",", "0.5", ",", "1.0", "]", "hparams", ".", "eval_rl_env_max_episode_steps", "=", ...
Eval set of hparams for model-free PPO.
[ "Eval", "set", "of", "hparams", "for", "model", "-", "free", "PPO", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L483-L495
21,881
tensorflow/tensor2tensor
tensor2tensor/models/research/rl.py
feed_forward_gaussian_fun
def feed_forward_gaussian_fun(action_space, config, observations): """Feed-forward Gaussian.""" if not isinstance(action_space, gym.spaces.box.Box): raise ValueError("Expecting continuous action space.") mean_weights_initializer = tf.initializers.variance_scaling( scale=config.init_mean_factor) logst...
python
def feed_forward_gaussian_fun(action_space, config, observations): """Feed-forward Gaussian.""" if not isinstance(action_space, gym.spaces.box.Box): raise ValueError("Expecting continuous action space.") mean_weights_initializer = tf.initializers.variance_scaling( scale=config.init_mean_factor) logst...
[ "def", "feed_forward_gaussian_fun", "(", "action_space", ",", "config", ",", "observations", ")", ":", "if", "not", "isinstance", "(", "action_space", ",", "gym", ".", "spaces", ".", "box", ".", "Box", ")", ":", "raise", "ValueError", "(", "\"Expecting continu...
Feed-forward Gaussian.
[ "Feed", "-", "forward", "Gaussian", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/rl.py#L559-L596
21,882
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._curvature_range
def _curvature_range(self): """Curvature range. Returns: h_max_t, h_min_t ops """ self._curv_win = tf.get_variable("curv_win", dtype=tf.float32, trainable=False, shape=[self.curvature_wi...
python
def _curvature_range(self): """Curvature range. Returns: h_max_t, h_min_t ops """ self._curv_win = tf.get_variable("curv_win", dtype=tf.float32, trainable=False, shape=[self.curvature_wi...
[ "def", "_curvature_range", "(", "self", ")", ":", "self", ".", "_curv_win", "=", "tf", ".", "get_variable", "(", "\"curv_win\"", ",", "dtype", "=", "tf", ".", "float32", ",", "trainable", "=", "False", ",", "shape", "=", "[", "self", ".", "curvature_wind...
Curvature range. Returns: h_max_t, h_min_t ops
[ "Curvature", "range", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L193-L230
21,883
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._grad_variance
def _grad_variance(self): """Estimate of gradient Variance. Returns: C_t ops. """ grad_var_ops = [] tensor_to_avg = [] for t, g in zip(self._vars, self._grad): if isinstance(g, tf.IndexedSlices): tensor_to_avg.append( tf.reshape(tf.unsorted_segment_sum(g.values, ...
python
def _grad_variance(self): """Estimate of gradient Variance. Returns: C_t ops. """ grad_var_ops = [] tensor_to_avg = [] for t, g in zip(self._vars, self._grad): if isinstance(g, tf.IndexedSlices): tensor_to_avg.append( tf.reshape(tf.unsorted_segment_sum(g.values, ...
[ "def", "_grad_variance", "(", "self", ")", ":", "grad_var_ops", "=", "[", "]", "tensor_to_avg", "=", "[", "]", "for", "t", ",", "g", "in", "zip", "(", "self", ".", "_vars", ",", "self", ".", "_grad", ")", ":", "if", "isinstance", "(", "g", ",", "...
Estimate of gradient Variance. Returns: C_t ops.
[ "Estimate", "of", "gradient", "Variance", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L232-L263
21,884
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._dist_to_opt
def _dist_to_opt(self): """Distance to optimum. Returns: D_t ops """ dist_to_opt_ops = [] # Running average of the norm of gradient self._grad_norm = tf.sqrt(self._grad_norm_squared) avg_op = self._moving_averager.apply([self._grad_norm,]) dist_to_opt_ops.append(avg_op) with t...
python
def _dist_to_opt(self): """Distance to optimum. Returns: D_t ops """ dist_to_opt_ops = [] # Running average of the norm of gradient self._grad_norm = tf.sqrt(self._grad_norm_squared) avg_op = self._moving_averager.apply([self._grad_norm,]) dist_to_opt_ops.append(avg_op) with t...
[ "def", "_dist_to_opt", "(", "self", ")", ":", "dist_to_opt_ops", "=", "[", "]", "# Running average of the norm of gradient", "self", ".", "_grad_norm", "=", "tf", ".", "sqrt", "(", "self", ".", "_grad_norm_squared", ")", "avg_op", "=", "self", ".", "_moving_aver...
Distance to optimum. Returns: D_t ops
[ "Distance", "to", "optimum", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L265-L289
21,885
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._grad_sparsity
def _grad_sparsity(self): """Gradient sparsity.""" # If the sparse minibatch gradient has 10 percent of its entries # non-zero, its sparsity is 0.1. # The norm of dense gradient averaged from full dataset # are roughly estimated norm of minibatch # sparse gradient norm * sqrt(sparsity) # An ...
python
def _grad_sparsity(self): """Gradient sparsity.""" # If the sparse minibatch gradient has 10 percent of its entries # non-zero, its sparsity is 0.1. # The norm of dense gradient averaged from full dataset # are roughly estimated norm of minibatch # sparse gradient norm * sqrt(sparsity) # An ...
[ "def", "_grad_sparsity", "(", "self", ")", ":", "# If the sparse minibatch gradient has 10 percent of its entries", "# non-zero, its sparsity is 0.1.", "# The norm of dense gradient averaged from full dataset", "# are roughly estimated norm of minibatch", "# sparse gradient norm * sqrt(sparsity)...
Gradient sparsity.
[ "Gradient", "sparsity", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L291-L306
21,886
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._prepare_variables
def _prepare_variables(self): """Prepare Variables for YellowFin. Returns: Grad**2, Norm, Norm**2, Mean(Norm**2) ops """ self._moving_averager = tf.train.ExponentialMovingAverage( decay=self._beta, zero_debias=self._zero_debias) # assert self._grad is not None and len(self._grad) > 0 ...
python
def _prepare_variables(self): """Prepare Variables for YellowFin. Returns: Grad**2, Norm, Norm**2, Mean(Norm**2) ops """ self._moving_averager = tf.train.ExponentialMovingAverage( decay=self._beta, zero_debias=self._zero_debias) # assert self._grad is not None and len(self._grad) > 0 ...
[ "def", "_prepare_variables", "(", "self", ")", ":", "self", ".", "_moving_averager", "=", "tf", ".", "train", ".", "ExponentialMovingAverage", "(", "decay", "=", "self", ".", "_beta", ",", "zero_debias", "=", "self", ".", "_zero_debias", ")", "# assert self._g...
Prepare Variables for YellowFin. Returns: Grad**2, Norm, Norm**2, Mean(Norm**2) ops
[ "Prepare", "Variables", "for", "YellowFin", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L308-L349
21,887
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._get_cubic_root
def _get_cubic_root(self): """Get the cubic root.""" # We have the equation x^2 D^2 + (1-x)^4 * C / h_min^2 # where x = sqrt(mu). # We substitute x, which is sqrt(mu), with x = y + 1. # It gives y^3 + py = q # where p = (D^2 h_min^2)/(2*C) and q = -p. # We use the Vieta's substitution to com...
python
def _get_cubic_root(self): """Get the cubic root.""" # We have the equation x^2 D^2 + (1-x)^4 * C / h_min^2 # where x = sqrt(mu). # We substitute x, which is sqrt(mu), with x = y + 1. # It gives y^3 + py = q # where p = (D^2 h_min^2)/(2*C) and q = -p. # We use the Vieta's substitution to com...
[ "def", "_get_cubic_root", "(", "self", ")", ":", "# We have the equation x^2 D^2 + (1-x)^4 * C / h_min^2", "# where x = sqrt(mu).", "# We substitute x, which is sqrt(mu), with x = y + 1.", "# It gives y^3 + py = q", "# where p = (D^2 h_min^2)/(2*C) and q = -p.", "# We use the Vieta's substitut...
Get the cubic root.
[ "Get", "the", "cubic", "root", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L351-L387
21,888
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._get_lr_tensor
def _get_lr_tensor(self): """Get lr minimizing the surrogate. Returns: The lr_t. """ lr = tf.squared_difference(1.0, tf.sqrt(self._mu)) / self._h_min return lr
python
def _get_lr_tensor(self): """Get lr minimizing the surrogate. Returns: The lr_t. """ lr = tf.squared_difference(1.0, tf.sqrt(self._mu)) / self._h_min return lr
[ "def", "_get_lr_tensor", "(", "self", ")", ":", "lr", "=", "tf", ".", "squared_difference", "(", "1.0", ",", "tf", ".", "sqrt", "(", "self", ".", "_mu", ")", ")", "/", "self", ".", "_h_min", "return", "lr" ]
Get lr minimizing the surrogate. Returns: The lr_t.
[ "Get", "lr", "minimizing", "the", "surrogate", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L389-L396
21,889
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._get_mu_tensor
def _get_mu_tensor(self): """Get the min mu which minimize the surrogate. Returns: The mu_t. """ root = self._get_cubic_root() dr = self._h_max / self._h_min mu = tf.maximum( root**2, ((tf.sqrt(dr) - 1) / (tf.sqrt(dr) + 1))**2) return mu
python
def _get_mu_tensor(self): """Get the min mu which minimize the surrogate. Returns: The mu_t. """ root = self._get_cubic_root() dr = self._h_max / self._h_min mu = tf.maximum( root**2, ((tf.sqrt(dr) - 1) / (tf.sqrt(dr) + 1))**2) return mu
[ "def", "_get_mu_tensor", "(", "self", ")", ":", "root", "=", "self", ".", "_get_cubic_root", "(", ")", "dr", "=", "self", ".", "_h_max", "/", "self", ".", "_h_min", "mu", "=", "tf", ".", "maximum", "(", "root", "**", "2", ",", "(", "(", "tf", "."...
Get the min mu which minimize the surrogate. Returns: The mu_t.
[ "Get", "the", "min", "mu", "which", "minimize", "the", "surrogate", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L398-L408
21,890
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer._yellowfin
def _yellowfin(self): """YellowFin auto-tuning optimizer based on momentum SGD. Returns: YF ops (Curvature range, Grad_variance, Dist_to_opt, Single-Step, Auto-Tuning) """ # List for the returned Operations. yellowfin_ops = [] # Curvature range...
python
def _yellowfin(self): """YellowFin auto-tuning optimizer based on momentum SGD. Returns: YF ops (Curvature range, Grad_variance, Dist_to_opt, Single-Step, Auto-Tuning) """ # List for the returned Operations. yellowfin_ops = [] # Curvature range...
[ "def", "_yellowfin", "(", "self", ")", ":", "# List for the returned Operations.", "yellowfin_ops", "=", "[", "]", "# Curvature range ops.", "curv_range_ops", "=", "self", ".", "_curvature_range", "(", ")", "yellowfin_ops", "+=", "curv_range_ops", "# Estimate of gradient ...
YellowFin auto-tuning optimizer based on momentum SGD. Returns: YF ops (Curvature range, Grad_variance, Dist_to_opt, Single-Step, Auto-Tuning)
[ "YellowFin", "auto", "-", "tuning", "optimizer", "based", "on", "momentum", "SGD", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L410-L454
21,891
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer.apply_gradients
def apply_gradients(self, grads_and_vars, global_step=None, name=None): """Applying gradients and tune hyperparams with YellowFin. Args: grads_and_vars: List of (gradient, variable) pairs as returned by compute_gradients(). global_step: Optional Variable to increment by one after the ...
python
def apply_gradients(self, grads_and_vars, global_step=None, name=None): """Applying gradients and tune hyperparams with YellowFin. Args: grads_and_vars: List of (gradient, variable) pairs as returned by compute_gradients(). global_step: Optional Variable to increment by one after the ...
[ "def", "apply_gradients", "(", "self", ",", "grads_and_vars", ",", "global_step", "=", "None", ",", "name", "=", "None", ")", ":", "self", ".", "_grad", ",", "self", ".", "_vars", "=", "zip", "(", "*", "[", "(", "g", ",", "t", ")", "for", "g", ",...
Applying gradients and tune hyperparams with YellowFin. Args: grads_and_vars: List of (gradient, variable) pairs as returned by compute_gradients(). global_step: Optional Variable to increment by one after the variables have been updated. name: Optional name for the returned oper...
[ "Applying", "gradients", "and", "tune", "hyperparams", "with", "YellowFin", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L460-L519
21,892
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer.compute_gradients
def compute_gradients(self, loss, var_list, global_step=None, gate_gradients=GATE_OP, aggregation_method=None, colocate_gradients_with_ops=False, name=N...
python
def compute_gradients(self, loss, var_list, global_step=None, gate_gradients=GATE_OP, aggregation_method=None, colocate_gradients_with_ops=False, name=N...
[ "def", "compute_gradients", "(", "self", ",", "loss", ",", "var_list", ",", "global_step", "=", "None", ",", "gate_gradients", "=", "GATE_OP", ",", "aggregation_method", "=", "None", ",", "colocate_gradients_with_ops", "=", "False", ",", "name", "=", "None", "...
Compute gradients through momentum optimizer. Args: loss: A Tensor containing the value to minimize. var_list: Optional list or tuple of tf.Variable to update to minimize loss. Defaults to the list of variables collected in the graph under the key GraphKey.TRAINABLE_VARIABLES. glo...
[ "Compute", "gradients", "through", "momentum", "optimizer", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L521-L560
21,893
tensorflow/tensor2tensor
tensor2tensor/utils/yellowfin.py
YellowFinOptimizer.minimize
def minimize(self, loss, global_step=None, var_list=None, gate_gradients=GATE_OP, aggregation_method=None, colocate_gradients_with_ops=False, name=None, grad_loss=None): """Adapted from TensorFlow...
python
def minimize(self, loss, global_step=None, var_list=None, gate_gradients=GATE_OP, aggregation_method=None, colocate_gradients_with_ops=False, name=None, grad_loss=None): """Adapted from TensorFlow...
[ "def", "minimize", "(", "self", ",", "loss", ",", "global_step", "=", "None", ",", "var_list", "=", "None", ",", "gate_gradients", "=", "GATE_OP", ",", "aggregation_method", "=", "None", ",", "colocate_gradients_with_ops", "=", "False", ",", "name", "=", "No...
Adapted from TensorFlow Optimizer base class member function. Add operations to minimize `loss` by updating `var_list`. This method simply combines calls `compute_gradients()` and `apply_gradients()`. If you want to process the gradient before applying them call `tf.gradients()` and `self.apply_gradien...
[ "Adapted", "from", "TensorFlow", "Optimizer", "base", "class", "member", "function", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/yellowfin.py#L562-L622
21,894
tensorflow/tensor2tensor
tensor2tensor/models/bytenet.py
bytenet_internal
def bytenet_internal(inputs, targets, hparams): """ByteNet, main step used for training.""" with tf.variable_scope("bytenet"): # Flatten inputs and extend length by 50%. inputs = tf.expand_dims(common_layers.flatten4d3d(inputs), axis=2) extend_length = tf.to_int32(0.5 * tf.to_float(tf.shape(inputs)[1]))...
python
def bytenet_internal(inputs, targets, hparams): """ByteNet, main step used for training.""" with tf.variable_scope("bytenet"): # Flatten inputs and extend length by 50%. inputs = tf.expand_dims(common_layers.flatten4d3d(inputs), axis=2) extend_length = tf.to_int32(0.5 * tf.to_float(tf.shape(inputs)[1]))...
[ "def", "bytenet_internal", "(", "inputs", ",", "targets", ",", "hparams", ")", ":", "with", "tf", ".", "variable_scope", "(", "\"bytenet\"", ")", ":", "# Flatten inputs and extend length by 50%.", "inputs", "=", "tf", ".", "expand_dims", "(", "common_layers", ".",...
ByteNet, main step used for training.
[ "ByteNet", "main", "step", "used", "for", "training", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/bytenet.py#L50-L74
21,895
tensorflow/tensor2tensor
tensor2tensor/data_generators/snli.py
_download_and_parse_dataset
def _download_and_parse_dataset(tmp_dir, train): """Downloads and prepairs the dataset to be parsed by the data_generator.""" file_path = generator_utils.maybe_download(tmp_dir, _SNLI_ZIP, _SNLI_URL) zip_ref = zipfile.ZipFile(file_path, 'r') zip_ref.extractall(tmp_dir) zip_ref.close() file_name = 'train' i...
python
def _download_and_parse_dataset(tmp_dir, train): """Downloads and prepairs the dataset to be parsed by the data_generator.""" file_path = generator_utils.maybe_download(tmp_dir, _SNLI_ZIP, _SNLI_URL) zip_ref = zipfile.ZipFile(file_path, 'r') zip_ref.extractall(tmp_dir) zip_ref.close() file_name = 'train' i...
[ "def", "_download_and_parse_dataset", "(", "tmp_dir", ",", "train", ")", ":", "file_path", "=", "generator_utils", ".", "maybe_download", "(", "tmp_dir", ",", "_SNLI_ZIP", ",", "_SNLI_URL", ")", "zip_ref", "=", "zipfile", ".", "ZipFile", "(", "file_path", ",", ...
Downloads and prepairs the dataset to be parsed by the data_generator.
[ "Downloads", "and", "prepairs", "the", "dataset", "to", "be", "parsed", "by", "the", "data_generator", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/snli.py#L51-L60
21,896
tensorflow/tensor2tensor
tensor2tensor/data_generators/snli.py
_get_tokens_and_tags
def _get_tokens_and_tags(parse_str): """Parse str to tokens and pos tags.""" tokens = [] parse_split = parse_str.split(' ') for p in parse_split: assert p.startswith('(') or p.endswith(')') if p.endswith(')'): token = p.replace(')', '') tokens.append(token) return tokens
python
def _get_tokens_and_tags(parse_str): """Parse str to tokens and pos tags.""" tokens = [] parse_split = parse_str.split(' ') for p in parse_split: assert p.startswith('(') or p.endswith(')') if p.endswith(')'): token = p.replace(')', '') tokens.append(token) return tokens
[ "def", "_get_tokens_and_tags", "(", "parse_str", ")", ":", "tokens", "=", "[", "]", "parse_split", "=", "parse_str", ".", "split", "(", "' '", ")", "for", "p", "in", "parse_split", ":", "assert", "p", ".", "startswith", "(", "'('", ")", "or", "p", ".",...
Parse str to tokens and pos tags.
[ "Parse", "str", "to", "tokens", "and", "pos", "tags", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/snli.py#L63-L73
21,897
tensorflow/tensor2tensor
tensor2tensor/data_generators/snli.py
_parse_dataset
def _parse_dataset(file_path, tmp_dir, train): """Convert the dataset in to a simpler format. This function creates two files. One for being processed to produce a vocab and another to generate the data. Args: file_path: string, path to the file to parse. tmp_dir: string, path to the directory to outp...
python
def _parse_dataset(file_path, tmp_dir, train): """Convert the dataset in to a simpler format. This function creates two files. One for being processed to produce a vocab and another to generate the data. Args: file_path: string, path to the file to parse. tmp_dir: string, path to the directory to outp...
[ "def", "_parse_dataset", "(", "file_path", ",", "tmp_dir", ",", "train", ")", ":", "input_path", "=", "file_path", "file_name", "=", "'train'", "if", "train", "else", "'dev'", "gen_output_path", "=", "os", ".", "path", ".", "join", "(", "tmp_dir", ",", "fi...
Convert the dataset in to a simpler format. This function creates two files. One for being processed to produce a vocab and another to generate the data. Args: file_path: string, path to the file to parse. tmp_dir: string, path to the directory to output the files. train: bool, indicating if we are ...
[ "Convert", "the", "dataset", "in", "to", "a", "simpler", "format", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/snli.py#L76-L128
21,898
tensorflow/tensor2tensor
tensor2tensor/data_generators/snli.py
_get_or_generate_vocab
def _get_or_generate_vocab(tmp_dir, vocab_filename, vocab_size): """Read or create vocabulary.""" vocab_filepath = os.path.join(tmp_dir, vocab_filename) print('Vocab file written to: ' + vocab_filepath) if tf.gfile.Exists(vocab_filepath): gs = text_encoder.SubwordTextEncoder(vocab_filepath) return gs ...
python
def _get_or_generate_vocab(tmp_dir, vocab_filename, vocab_size): """Read or create vocabulary.""" vocab_filepath = os.path.join(tmp_dir, vocab_filename) print('Vocab file written to: ' + vocab_filepath) if tf.gfile.Exists(vocab_filepath): gs = text_encoder.SubwordTextEncoder(vocab_filepath) return gs ...
[ "def", "_get_or_generate_vocab", "(", "tmp_dir", ",", "vocab_filename", ",", "vocab_size", ")", ":", "vocab_filepath", "=", "os", ".", "path", ".", "join", "(", "tmp_dir", ",", "vocab_filename", ")", "print", "(", "'Vocab file written to: '", "+", "vocab_filepath"...
Read or create vocabulary.
[ "Read", "or", "create", "vocabulary", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/snli.py#L131-L146
21,899
tensorflow/tensor2tensor
tensor2tensor/data_generators/wikisum/get_references_web_single_group.py
shard
def shard(items, num_shards): """Split items into num_shards groups.""" sharded = [] num_per_shard = len(items) // num_shards start = 0 for _ in range(num_shards): sharded.append(items[start:start + num_per_shard]) start += num_per_shard remainder = len(items) % num_shards start = len(items) - re...
python
def shard(items, num_shards): """Split items into num_shards groups.""" sharded = [] num_per_shard = len(items) // num_shards start = 0 for _ in range(num_shards): sharded.append(items[start:start + num_per_shard]) start += num_per_shard remainder = len(items) % num_shards start = len(items) - re...
[ "def", "shard", "(", "items", ",", "num_shards", ")", ":", "sharded", "=", "[", "]", "num_per_shard", "=", "len", "(", "items", ")", "//", "num_shards", "start", "=", "0", "for", "_", "in", "range", "(", "num_shards", ")", ":", "sharded", ".", "appen...
Split items into num_shards groups.
[ "Split", "items", "into", "num_shards", "groups", "." ]
272500b6efe353aeb638d2745ed56e519462ca31
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/get_references_web_single_group.py#L87-L102