partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
train
downsample_residual
Downsamples 'x' by `stride` using average pooling. Args: x: input tensor of size [N, H, W, C] output_channels: Desired number of output channels. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. stride: What stride to use. Usually 1 or 2. scope: Optional variable scope. Returns: A downsa...
tensor2tensor/models/revnet.py
def downsample_residual(x, output_channels, dim='2d', stride=1, scope='h'): """Downsamples 'x' by `stride` using average pooling. Args: x: input tensor of size [N, H, W, C] output_channels: Desired number of output channels. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. stride: What stride to ...
def downsample_residual(x, output_channels, dim='2d', stride=1, scope='h'): """Downsamples 'x' by `stride` using average pooling. Args: x: input tensor of size [N, H, W, C] output_channels: Desired number of output channels. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. stride: What stride to ...
[ "Downsamples", "x", "by", "stride", "using", "average", "pooling", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L147-L175
[ "def", "downsample_residual", "(", "x", ",", "output_channels", ",", "dim", "=", "'2d'", ",", "stride", "=", "1", ",", "scope", "=", "'h'", ")", ":", "with", "tf", ".", "variable_scope", "(", "scope", ")", ":", "if", "stride", ">", "1", ":", "avg_poo...
272500b6efe353aeb638d2745ed56e519462ca31
train
init
Standard ResNet initial block used as first RevNet block. Args: images: [N, H, W, 3] tensor of input images to the model. num_channels: Output depth of convolutional layer in initial block. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. stride: stride for the convolution and pool layer. kerne...
tensor2tensor/models/revnet.py
def init(images, num_channels, dim='2d', stride=2, kernel_size=7, maxpool=True, training=True, scope='init'): """Standard ResNet initial block used as first RevNet block. Args: images: [N, H, W, 3] tensor of input images to the model. num_channels: Output depth of convolutional layer in initial bl...
def init(images, num_channels, dim='2d', stride=2, kernel_size=7, maxpool=True, training=True, scope='init'): """Standard ResNet initial block used as first RevNet block. Args: images: [N, H, W, 3] tensor of input images to the model. num_channels: Output depth of convolutional layer in initial bl...
[ "Standard", "ResNet", "initial", "block", "used", "as", "first", "RevNet", "block", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L178-L205
[ "def", "init", "(", "images", ",", "num_channels", ",", "dim", "=", "'2d'", ",", "stride", "=", "2", ",", "kernel_size", "=", "7", ",", "maxpool", "=", "True", ",", "training", "=", "True", ",", "scope", "=", "'init'", ")", ":", "conv", "=", "CONFI...
272500b6efe353aeb638d2745ed56e519462ca31
train
unit
Implements bottleneck RevNet unit from authors' RevNet architecture. Args: x1: [N, H, W, C] tensor of network activations. x2: [N, H, W, C] tensor of network activations. block_num: integer ID of block depth: First depth in bottleneck residual unit. num_layers: Number of layers in the RevNet bloc...
tensor2tensor/models/revnet.py
def unit(x1, x2, block_num, depth, num_layers, dim='2d', bottleneck=True, first_batch_norm=True, stride=1, training=True): """Implements bottleneck RevNet unit from authors' RevNet architecture. Args: x1: [N, H, W, C] tensor of network activations. x2: [N, H, W, C] tensor of network activations. ...
def unit(x1, x2, block_num, depth, num_layers, dim='2d', bottleneck=True, first_batch_norm=True, stride=1, training=True): """Implements bottleneck RevNet unit from authors' RevNet architecture. Args: x1: [N, H, W, C] tensor of network activations. x2: [N, H, W, C] tensor of network activations. ...
[ "Implements", "bottleneck", "RevNet", "unit", "from", "authors", "RevNet", "architecture", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L208-L258
[ "def", "unit", "(", "x1", ",", "x2", ",", "block_num", ",", "depth", ",", "num_layers", ",", "dim", "=", "'2d'", ",", "bottleneck", "=", "True", ",", "first_batch_norm", "=", "True", ",", "stride", "=", "1", ",", "training", "=", "True", ")", ":", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
final_block
Converts activations from last RevNet block to pre-logits. Args: x1: [NxHxWxC] tensor of network activations. x2: [NxHxWxC] tensor of network activations. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. training: True for train phase, False for eval phase. scope: Optional variable scope for th...
tensor2tensor/models/revnet.py
def final_block(x1, x2, dim='2d', training=True, scope='final_block'): """Converts activations from last RevNet block to pre-logits. Args: x1: [NxHxWxC] tensor of network activations. x2: [NxHxWxC] tensor of network activations. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. training: True for ...
def final_block(x1, x2, dim='2d', training=True, scope='final_block'): """Converts activations from last RevNet block to pre-logits. Args: x1: [NxHxWxC] tensor of network activations. x2: [NxHxWxC] tensor of network activations. dim: '2d' if 2-dimensional, '3d' if 3-dimensional. training: True for ...
[ "Converts", "activations", "from", "last", "RevNet", "block", "to", "pre", "-", "logits", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L261-L285
[ "def", "final_block", "(", "x1", ",", "x2", ",", "dim", "=", "'2d'", ",", "training", "=", "True", ",", "scope", "=", "'final_block'", ")", ":", "# Final batch norm and relu", "with", "tf", ".", "variable_scope", "(", "scope", ")", ":", "y", "=", "tf", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
revnet
Uses Tensor2Tensor memory optimized RevNet block to build a RevNet. Args: inputs: [NxHxWx3] tensor of input images to the model. hparams: HParams object that contains the following parameters, in addition to the parameters contained in the basic_params1() object in the common_hparams module: ...
tensor2tensor/models/revnet.py
def revnet(inputs, hparams, reuse=None): """Uses Tensor2Tensor memory optimized RevNet block to build a RevNet. Args: inputs: [NxHxWx3] tensor of input images to the model. hparams: HParams object that contains the following parameters, in addition to the parameters contained in the basic_params1() o...
def revnet(inputs, hparams, reuse=None): """Uses Tensor2Tensor memory optimized RevNet block to build a RevNet. Args: inputs: [NxHxWx3] tensor of input images to the model. hparams: HParams object that contains the following parameters, in addition to the parameters contained in the basic_params1() o...
[ "Uses", "Tensor2Tensor", "memory", "optimized", "RevNet", "block", "to", "build", "a", "RevNet", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L288-L335
[ "def", "revnet", "(", "inputs", ",", "hparams", ",", "reuse", "=", "None", ")", ":", "training", "=", "hparams", ".", "mode", "==", "tf", ".", "estimator", ".", "ModeKeys", ".", "TRAIN", "with", "tf", ".", "variable_scope", "(", "'RevNet'", ",", "reuse...
272500b6efe353aeb638d2745ed56e519462ca31
train
revnet_base
Default hparams for Revnet.
tensor2tensor/models/revnet.py
def revnet_base(): """Default hparams for Revnet.""" hparams = common_hparams.basic_params1() hparams.add_hparam('num_channels', [64, 128, 256, 416]) hparams.add_hparam('num_layers_per_block', [1, 1, 10, 1]) hparams.add_hparam('bottleneck', True) hparams.add_hparam('first_batch_norm', [False, True, True, Tr...
def revnet_base(): """Default hparams for Revnet.""" hparams = common_hparams.basic_params1() hparams.add_hparam('num_channels', [64, 128, 256, 416]) hparams.add_hparam('num_layers_per_block', [1, 1, 10, 1]) hparams.add_hparam('bottleneck', True) hparams.add_hparam('first_batch_norm', [False, True, True, Tr...
[ "Default", "hparams", "for", "Revnet", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L345-L378
[ "def", "revnet_base", "(", ")", ":", "hparams", "=", "common_hparams", ".", "basic_params1", "(", ")", "hparams", ".", "add_hparam", "(", "'num_channels'", ",", "[", "64", ",", "128", ",", "256", ",", "416", "]", ")", "hparams", ".", "add_hparam", "(", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
revnet_cifar_base
Tiny hparams suitable for CIFAR/etc.
tensor2tensor/models/revnet.py
def revnet_cifar_base(): """Tiny hparams suitable for CIFAR/etc.""" hparams = revnet_base() hparams.num_channels_init_block = 32 hparams.first_batch_norm = [False, True, True] hparams.init_stride = 1 hparams.init_kernel_size = 3 hparams.init_maxpool = False hparams.strides = [1, 2, 2] hparams.batch_si...
def revnet_cifar_base(): """Tiny hparams suitable for CIFAR/etc.""" hparams = revnet_base() hparams.num_channels_init_block = 32 hparams.first_batch_norm = [False, True, True] hparams.init_stride = 1 hparams.init_kernel_size = 3 hparams.init_maxpool = False hparams.strides = [1, 2, 2] hparams.batch_si...
[ "Tiny", "hparams", "suitable", "for", "CIFAR", "/", "etc", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L386-L400
[ "def", "revnet_cifar_base", "(", ")", ":", "hparams", "=", "revnet_base", "(", ")", "hparams", ".", "num_channels_init_block", "=", "32", "hparams", ".", "first_batch_norm", "=", "[", "False", ",", "True", ",", "True", "]", "hparams", ".", "init_stride", "="...
272500b6efe353aeb638d2745ed56e519462ca31
train
revnet_110_cifar
Tiny hparams suitable for CIFAR/etc.
tensor2tensor/models/revnet.py
def revnet_110_cifar(): """Tiny hparams suitable for CIFAR/etc.""" hparams = revnet_cifar_base() hparams.bottleneck = False hparams.num_channels = [16, 32, 64] hparams.num_layers_per_block = [8, 8, 8] return hparams
def revnet_110_cifar(): """Tiny hparams suitable for CIFAR/etc.""" hparams = revnet_cifar_base() hparams.bottleneck = False hparams.num_channels = [16, 32, 64] hparams.num_layers_per_block = [8, 8, 8] return hparams
[ "Tiny", "hparams", "suitable", "for", "CIFAR", "/", "etc", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L415-L421
[ "def", "revnet_110_cifar", "(", ")", ":", "hparams", "=", "revnet_cifar_base", "(", ")", "hparams", ".", "bottleneck", "=", "False", "hparams", ".", "num_channels", "=", "[", "16", ",", "32", ",", "64", "]", "hparams", ".", "num_layers_per_block", "=", "["...
272500b6efe353aeb638d2745ed56e519462ca31
train
revnet_164_cifar
Tiny hparams suitable for CIFAR/etc.
tensor2tensor/models/revnet.py
def revnet_164_cifar(): """Tiny hparams suitable for CIFAR/etc.""" hparams = revnet_cifar_base() hparams.bottleneck = True hparams.num_channels = [16, 32, 64] hparams.num_layers_per_block = [8, 8, 8] return hparams
def revnet_164_cifar(): """Tiny hparams suitable for CIFAR/etc.""" hparams = revnet_cifar_base() hparams.bottleneck = True hparams.num_channels = [16, 32, 64] hparams.num_layers_per_block = [8, 8, 8] return hparams
[ "Tiny", "hparams", "suitable", "for", "CIFAR", "/", "etc", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L425-L431
[ "def", "revnet_164_cifar", "(", ")", ":", "hparams", "=", "revnet_cifar_base", "(", ")", "hparams", ".", "bottleneck", "=", "True", "hparams", ".", "num_channels", "=", "[", "16", ",", "32", ",", "64", "]", "hparams", ".", "num_layers_per_block", "=", "[",...
272500b6efe353aeb638d2745ed56e519462ca31
train
revnet_range
Hyperparameters for tuning revnet.
tensor2tensor/models/revnet.py
def revnet_range(rhp): """Hyperparameters for tuning revnet.""" rhp.set_float('learning_rate', 0.05, 0.2, scale=rhp.LOG_SCALE) rhp.set_float('weight_decay', 1e-5, 1e-3, scale=rhp.LOG_SCALE) rhp.set_discrete('num_channels_init_block', [64, 128]) return rhp
def revnet_range(rhp): """Hyperparameters for tuning revnet.""" rhp.set_float('learning_rate', 0.05, 0.2, scale=rhp.LOG_SCALE) rhp.set_float('weight_decay', 1e-5, 1e-3, scale=rhp.LOG_SCALE) rhp.set_discrete('num_channels_init_block', [64, 128]) return rhp
[ "Hyperparameters", "for", "tuning", "revnet", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/revnet.py#L435-L440
[ "def", "revnet_range", "(", "rhp", ")", ":", "rhp", ".", "set_float", "(", "'learning_rate'", ",", "0.05", ",", "0.2", ",", "scale", "=", "rhp", ".", "LOG_SCALE", ")", "rhp", ".", "set_float", "(", "'weight_decay'", ",", "1e-5", ",", "1e-3", ",", "scal...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_basic_deterministic
Basic 2-frame conv model.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_basic_deterministic(): """Basic 2-frame conv model.""" hparams = base.next_frame_base() hparams.video_num_input_frames = 4 hparams.video_num_target_frames = 1 hparams.hidden_size = 64 hparams.batch_size = 4 hparams.num_hidden_layers = 2 hparams.optimizer = "Adafactor" hparams.learning_r...
def next_frame_basic_deterministic(): """Basic 2-frame conv model.""" hparams = base.next_frame_base() hparams.video_num_input_frames = 4 hparams.video_num_target_frames = 1 hparams.hidden_size = 64 hparams.batch_size = 4 hparams.num_hidden_layers = 2 hparams.optimizer = "Adafactor" hparams.learning_r...
[ "Basic", "2", "-", "frame", "conv", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L27-L56
[ "def", "next_frame_basic_deterministic", "(", ")", ":", "hparams", "=", "base", ".", "next_frame_base", "(", ")", "hparams", ".", "video_num_input_frames", "=", "4", "hparams", ".", "video_num_target_frames", "=", "1", "hparams", ".", "hidden_size", "=", "64", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_pixel_noise
Basic 2-frame conv model with pixel noise.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_pixel_noise(): """Basic 2-frame conv model with pixel noise.""" hparams = next_frame_basic_deterministic() hparams.add_hparam("video_modality_input_noise", 0.05) hparams.bottom["inputs"] = modalities.video_pixel_noise_bottom hparams.top["inputs"] = modalities.video_top return hparams
def next_frame_pixel_noise(): """Basic 2-frame conv model with pixel noise.""" hparams = next_frame_basic_deterministic() hparams.add_hparam("video_modality_input_noise", 0.05) hparams.bottom["inputs"] = modalities.video_pixel_noise_bottom hparams.top["inputs"] = modalities.video_top return hparams
[ "Basic", "2", "-", "frame", "conv", "model", "with", "pixel", "noise", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L60-L66
[ "def", "next_frame_pixel_noise", "(", ")", ":", "hparams", "=", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "add_hparam", "(", "\"video_modality_input_noise\"", ",", "0.05", ")", "hparams", ".", "bottom", "[", "\"inputs\"", "]", "=", "modalities", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_sampling
Basic conv model with scheduled sampling.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_sampling(): """Basic conv model with scheduled sampling.""" hparams = next_frame_basic_deterministic() hparams.scheduled_sampling_mode = "prob_inverse_exp" hparams.scheduled_sampling_max_prob = 1.0 hparams.scheduled_sampling_decay_steps = 10000 return hparams
def next_frame_sampling(): """Basic conv model with scheduled sampling.""" hparams = next_frame_basic_deterministic() hparams.scheduled_sampling_mode = "prob_inverse_exp" hparams.scheduled_sampling_max_prob = 1.0 hparams.scheduled_sampling_decay_steps = 10000 return hparams
[ "Basic", "conv", "model", "with", "scheduled", "sampling", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L79-L85
[ "def", "next_frame_sampling", "(", ")", ":", "hparams", "=", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "scheduled_sampling_mode", "=", "\"prob_inverse_exp\"", "hparams", ".", "scheduled_sampling_max_prob", "=", "1.0", "hparams", ".", "scheduled_sampling_...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_ae
Conv autoencoder.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_ae(): """Conv autoencoder.""" hparams = next_frame_basic_deterministic() hparams.bottom["inputs"] = modalities.video_bitwise_bottom hparams.top["inputs"] = modalities.video_top hparams.hidden_size = 256 hparams.batch_size = 8 hparams.num_hidden_layers = 4 hparams.num_compress_steps = 4 ...
def next_frame_ae(): """Conv autoencoder.""" hparams = next_frame_basic_deterministic() hparams.bottom["inputs"] = modalities.video_bitwise_bottom hparams.top["inputs"] = modalities.video_top hparams.hidden_size = 256 hparams.batch_size = 8 hparams.num_hidden_layers = 4 hparams.num_compress_steps = 4 ...
[ "Conv", "autoencoder", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L96-L106
[ "def", "next_frame_ae", "(", ")", ":", "hparams", "=", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "bottom", "[", "\"inputs\"", "]", "=", "modalities", ".", "video_bitwise_bottom", "hparams", ".", "top", "[", "\"inputs\"", "]", "=", "modalities",...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_ae_tiny
Conv autoencoder, tiny set for testing.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_ae_tiny(): """Conv autoencoder, tiny set for testing.""" hparams = next_frame_tiny() hparams.bottom["inputs"] = modalities.video_bitwise_bottom hparams.top["inputs"] = modalities.video_top hparams.batch_size = 8 hparams.dropout = 0.4 return hparams
def next_frame_ae_tiny(): """Conv autoencoder, tiny set for testing.""" hparams = next_frame_tiny() hparams.bottom["inputs"] = modalities.video_bitwise_bottom hparams.top["inputs"] = modalities.video_top hparams.batch_size = 8 hparams.dropout = 0.4 return hparams
[ "Conv", "autoencoder", "tiny", "set", "for", "testing", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L110-L117
[ "def", "next_frame_ae_tiny", "(", ")", ":", "hparams", "=", "next_frame_tiny", "(", ")", "hparams", ".", "bottom", "[", "\"inputs\"", "]", "=", "modalities", ".", "video_bitwise_bottom", "hparams", ".", "top", "[", "\"inputs\"", "]", "=", "modalities", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_tiny
Tiny for testing.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_tiny(): """Tiny for testing.""" hparams = next_frame_basic_deterministic() hparams.hidden_size = 32 hparams.num_hidden_layers = 1 hparams.num_compress_steps = 2 hparams.filter_double_steps = 1 return hparams
def next_frame_tiny(): """Tiny for testing.""" hparams = next_frame_basic_deterministic() hparams.hidden_size = 32 hparams.num_hidden_layers = 1 hparams.num_compress_steps = 2 hparams.filter_double_steps = 1 return hparams
[ "Tiny", "for", "testing", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L129-L136
[ "def", "next_frame_tiny", "(", ")", ":", "hparams", "=", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "hidden_size", "=", "32", "hparams", ".", "num_hidden_layers", "=", "1", "hparams", ".", "num_compress_steps", "=", "2", "hparams", ".", "filter_...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_l1
Basic conv model with L1 modality.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_l1(): """Basic conv model with L1 modality.""" hparams = next_frame_basic_deterministic() hparams.loss["targets"] = modalities.video_l1_loss hparams.top["targets"] = modalities.video_l1_top hparams.video_modality_loss_cutoff = 2.4 return hparams
def next_frame_l1(): """Basic conv model with L1 modality.""" hparams = next_frame_basic_deterministic() hparams.loss["targets"] = modalities.video_l1_loss hparams.top["targets"] = modalities.video_l1_top hparams.video_modality_loss_cutoff = 2.4 return hparams
[ "Basic", "conv", "model", "with", "L1", "modality", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L140-L146
[ "def", "next_frame_l1", "(", ")", ":", "hparams", "=", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "loss", "[", "\"targets\"", "]", "=", "modalities", ".", "video_l1_loss", "hparams", ".", "top", "[", "\"targets\"", "]", "=", "modalities", ".",...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_l2
Basic conv model with L2 modality.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_l2(): """Basic conv model with L2 modality.""" hparams = next_frame_basic_deterministic() hparams.loss["targets"] = modalities.video_l2_loss hparams.top["targets"] = modalities.video_l1_top hparams.video_modality_loss_cutoff = 2.4 return hparams
def next_frame_l2(): """Basic conv model with L2 modality.""" hparams = next_frame_basic_deterministic() hparams.loss["targets"] = modalities.video_l2_loss hparams.top["targets"] = modalities.video_l1_top hparams.video_modality_loss_cutoff = 2.4 return hparams
[ "Basic", "conv", "model", "with", "L2", "modality", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L150-L156
[ "def", "next_frame_l2", "(", ")", ":", "hparams", "=", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "loss", "[", "\"targets\"", "]", "=", "modalities", ".", "video_l2_loss", "hparams", ".", "top", "[", "\"targets\"", "]", "=", "modalities", ".",...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_base_range
Basic tuning grid.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_base_range(rhp): """Basic tuning grid.""" rhp.set_float("dropout", 0.2, 0.6) rhp.set_discrete("hidden_size", [64, 128, 256]) rhp.set_int("num_compress_steps", 5, 8) rhp.set_discrete("batch_size", [4, 8, 16, 32]) rhp.set_int("num_hidden_layers", 1, 3) rhp.set_int("filter_double_steps", 1, 6)...
def next_frame_base_range(rhp): """Basic tuning grid.""" rhp.set_float("dropout", 0.2, 0.6) rhp.set_discrete("hidden_size", [64, 128, 256]) rhp.set_int("num_compress_steps", 5, 8) rhp.set_discrete("batch_size", [4, 8, 16, 32]) rhp.set_int("num_hidden_layers", 1, 3) rhp.set_int("filter_double_steps", 1, 6)...
[ "Basic", "tuning", "grid", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L160-L170
[ "def", "next_frame_base_range", "(", "rhp", ")", ":", "rhp", ".", "set_float", "(", "\"dropout\"", ",", "0.2", ",", "0.6", ")", "rhp", ".", "set_discrete", "(", "\"hidden_size\"", ",", "[", "64", ",", "128", ",", "256", "]", ")", "rhp", ".", "set_int",...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_ae_range
Autoencoder world model tuning grid.
tensor2tensor/models/video/basic_deterministic_params.py
def next_frame_ae_range(rhp): """Autoencoder world model tuning grid.""" rhp.set_float("dropout", 0.3, 0.5) rhp.set_int("num_compress_steps", 1, 3) rhp.set_int("num_hidden_layers", 2, 6) rhp.set_float("learning_rate_constant", 1., 2.) rhp.set_float("initializer_gain", 0.8, 1.5) rhp.set_int("filter_double_...
def next_frame_ae_range(rhp): """Autoencoder world model tuning grid.""" rhp.set_float("dropout", 0.3, 0.5) rhp.set_int("num_compress_steps", 1, 3) rhp.set_int("num_hidden_layers", 2, 6) rhp.set_float("learning_rate_constant", 1., 2.) rhp.set_float("initializer_gain", 0.8, 1.5) rhp.set_int("filter_double_...
[ "Autoencoder", "world", "model", "tuning", "grid", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_deterministic_params.py#L194-L201
[ "def", "next_frame_ae_range", "(", "rhp", ")", ":", "rhp", ".", "set_float", "(", "\"dropout\"", ",", "0.3", ",", "0.5", ")", "rhp", ".", "set_int", "(", "\"num_compress_steps\"", ",", "1", ",", "3", ")", "rhp", ".", "set_int", "(", "\"num_hidden_layers\""...
272500b6efe353aeb638d2745ed56e519462ca31
train
mqp_lm1b_base
Series of architectures for language modeling.
tensor2tensor/models/research/multiquery_paper.py
def mqp_lm1b_base(): """Series of architectures for language modeling.""" hparams = mtf_transformer2.mtf_unitransformer_base() hparams.d_model = 1024 hparams.max_length = 256 hparams.batch_size = 256 # Parameters for my_layer_stack() hparams.num_hidden_layers = 6 hparams.d_ff = 8192 hparams.d_kv = 128...
def mqp_lm1b_base(): """Series of architectures for language modeling.""" hparams = mtf_transformer2.mtf_unitransformer_base() hparams.d_model = 1024 hparams.max_length = 256 hparams.batch_size = 256 # Parameters for my_layer_stack() hparams.num_hidden_layers = 6 hparams.d_ff = 8192 hparams.d_kv = 128...
[ "Series", "of", "architectures", "for", "language", "modeling", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/multiquery_paper.py#L154-L168
[ "def", "mqp_lm1b_base", "(", ")", ":", "hparams", "=", "mtf_transformer2", ".", "mtf_unitransformer_base", "(", ")", "hparams", ".", "d_model", "=", "1024", "hparams", ".", "max_length", "=", "256", "hparams", ".", "batch_size", "=", "256", "# Parameters for my_...
272500b6efe353aeb638d2745ed56e519462ca31
train
initialize_env_specs
Initializes env_specs using the appropriate env.
tensor2tensor/rl/trainer_model_free.py
def initialize_env_specs(hparams, env_problem_name): """Initializes env_specs using the appropriate env.""" if env_problem_name: env = registry.env_problem(env_problem_name, batch_size=hparams.batch_size) else: env = rl_utils.setup_env(hparams, hparams.batch_size, hparams.eval...
def initialize_env_specs(hparams, env_problem_name): """Initializes env_specs using the appropriate env.""" if env_problem_name: env = registry.env_problem(env_problem_name, batch_size=hparams.batch_size) else: env = rl_utils.setup_env(hparams, hparams.batch_size, hparams.eval...
[ "Initializes", "env_specs", "using", "the", "appropriate", "env", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_free.py#L68-L79
[ "def", "initialize_env_specs", "(", "hparams", ",", "env_problem_name", ")", ":", "if", "env_problem_name", ":", "env", "=", "registry", ".", "env_problem", "(", "env_problem_name", ",", "batch_size", "=", "hparams", ".", "batch_size", ")", "else", ":", "env", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
train
Train.
tensor2tensor/rl/trainer_model_free.py
def train(hparams, output_dir, env_problem_name, report_fn=None): """Train.""" env_fn = initialize_env_specs(hparams, env_problem_name) tf.logging.vlog(1, "HParams in trainer_model_free.train : %s", misc_utils.pprint_hparams(hparams)) tf.logging.vlog(1, "Using hparams.base_algo: %s", hparams....
def train(hparams, output_dir, env_problem_name, report_fn=None): """Train.""" env_fn = initialize_env_specs(hparams, env_problem_name) tf.logging.vlog(1, "HParams in trainer_model_free.train : %s", misc_utils.pprint_hparams(hparams)) tf.logging.vlog(1, "Using hparams.base_algo: %s", hparams....
[ "Train", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_free.py#L85-L153
[ "def", "train", "(", "hparams", ",", "output_dir", ",", "env_problem_name", ",", "report_fn", "=", "None", ")", ":", "env_fn", "=", "initialize_env_specs", "(", "hparams", ",", "env_problem_name", ")", "tf", ".", "logging", ".", "vlog", "(", "1", ",", "\"H...
272500b6efe353aeb638d2745ed56e519462ca31
train
learning_rate_factor
Compute the designated learning rate factor from hparams.
tensor2tensor/utils/learning_rate.py
def learning_rate_factor(name, step_num, hparams): """Compute the designated learning rate factor from hparams.""" if name == "constant": tf.logging.info("Base learning rate: %f", hparams.learning_rate_constant) return hparams.learning_rate_constant elif name == "linear_warmup": return tf.minimum(1.0,...
def learning_rate_factor(name, step_num, hparams): """Compute the designated learning rate factor from hparams.""" if name == "constant": tf.logging.info("Base learning rate: %f", hparams.learning_rate_constant) return hparams.learning_rate_constant elif name == "linear_warmup": return tf.minimum(1.0,...
[ "Compute", "the", "designated", "learning", "rate", "factor", "from", "hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L26-L69
[ "def", "learning_rate_factor", "(", "name", ",", "step_num", ",", "hparams", ")", ":", "if", "name", "==", "\"constant\"", ":", "tf", ".", "logging", ".", "info", "(", "\"Base learning rate: %f\"", ",", "hparams", ".", "learning_rate_constant", ")", "return", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
learning_rate_schedule
Learning rate schedule based on hparams.
tensor2tensor/utils/learning_rate.py
def learning_rate_schedule(hparams): """Learning rate schedule based on hparams.""" mlperf_log.transformer_print(key=mlperf_log.OPT_LR, deferred=True) mlperf_log.transformer_print( key=mlperf_log.OPT_LR_WARMUP_STEPS, value=hparams.learning_rate_warmup_steps) step_num = _global_step(hparams) schedu...
def learning_rate_schedule(hparams): """Learning rate schedule based on hparams.""" mlperf_log.transformer_print(key=mlperf_log.OPT_LR, deferred=True) mlperf_log.transformer_print( key=mlperf_log.OPT_LR_WARMUP_STEPS, value=hparams.learning_rate_warmup_steps) step_num = _global_step(hparams) schedu...
[ "Learning", "rate", "schedule", "based", "on", "hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L72-L85
[ "def", "learning_rate_schedule", "(", "hparams", ")", ":", "mlperf_log", ".", "transformer_print", "(", "key", "=", "mlperf_log", ".", "OPT_LR", ",", "deferred", "=", "True", ")", "mlperf_log", ".", "transformer_print", "(", "key", "=", "mlperf_log", ".", "OPT...
272500b6efe353aeb638d2745ed56e519462ca31
train
legacy_learning_rate_schedule
Backwards-compatible learning-rate schedule.
tensor2tensor/utils/learning_rate.py
def legacy_learning_rate_schedule(hparams): """Backwards-compatible learning-rate schedule.""" step_num = _global_step(hparams) warmup_steps = tf.to_float(hparams.learning_rate_warmup_steps) if hparams.learning_rate_decay_scheme == "noam": ret = 5000.0 * hparams.hidden_size**-0.5 * tf.minimum( (step...
def legacy_learning_rate_schedule(hparams): """Backwards-compatible learning-rate schedule.""" step_num = _global_step(hparams) warmup_steps = tf.to_float(hparams.learning_rate_warmup_steps) if hparams.learning_rate_decay_scheme == "noam": ret = 5000.0 * hparams.hidden_size**-0.5 * tf.minimum( (step...
[ "Backwards", "-", "compatible", "learning", "-", "rate", "schedule", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L88-L102
[ "def", "legacy_learning_rate_schedule", "(", "hparams", ")", ":", "step_num", "=", "_global_step", "(", "hparams", ")", "warmup_steps", "=", "tf", ".", "to_float", "(", "hparams", ".", "learning_rate_warmup_steps", ")", "if", "hparams", ".", "learning_rate_decay_sch...
272500b6efe353aeb638d2745ed56e519462ca31
train
_global_step
Adjust global step if a multi-step optimizer is used.
tensor2tensor/utils/learning_rate.py
def _global_step(hparams): """Adjust global step if a multi-step optimizer is used.""" step = tf.to_float(tf.train.get_or_create_global_step()) multiplier = hparams.optimizer_multistep_accumulate_steps if not multiplier: return step tf.logging.info("Dividing global step by %d for multi-step optimizer." ...
def _global_step(hparams): """Adjust global step if a multi-step optimizer is used.""" step = tf.to_float(tf.train.get_or_create_global_step()) multiplier = hparams.optimizer_multistep_accumulate_steps if not multiplier: return step tf.logging.info("Dividing global step by %d for multi-step optimizer." ...
[ "Adjust", "global", "step", "if", "a", "multi", "-", "step", "optimizer", "is", "used", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L105-L114
[ "def", "_global_step", "(", "hparams", ")", ":", "step", "=", "tf", ".", "to_float", "(", "tf", ".", "train", ".", "get_or_create_global_step", "(", ")", ")", "multiplier", "=", "hparams", ".", "optimizer_multistep_accumulate_steps", "if", "not", "multiplier", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_piecewise_learning_rate
Scale learning rate according to the given schedule. Multipliers are not cumulative. Args: step: global step boundaries: List of steps to transition on. values: Multiplier to apply at each boundary transition. Returns: Scaled value for the learning rate.
tensor2tensor/utils/learning_rate.py
def _piecewise_learning_rate(step, boundaries, values): """Scale learning rate according to the given schedule. Multipliers are not cumulative. Args: step: global step boundaries: List of steps to transition on. values: Multiplier to apply at each boundary transition. Returns: Scaled value fo...
def _piecewise_learning_rate(step, boundaries, values): """Scale learning rate according to the given schedule. Multipliers are not cumulative. Args: step: global step boundaries: List of steps to transition on. values: Multiplier to apply at each boundary transition. Returns: Scaled value fo...
[ "Scale", "learning", "rate", "according", "to", "the", "given", "schedule", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L122-L138
[ "def", "_piecewise_learning_rate", "(", "step", ",", "boundaries", ",", "values", ")", ":", "values", "=", "[", "1.0", "]", "+", "values", "boundaries", "=", "[", "float", "(", "x", ")", "for", "x", "in", "boundaries", "]", "return", "tf", ".", "train"...
272500b6efe353aeb638d2745ed56e519462ca31
train
_learning_rate_decay
Learning rate decay multiplier.
tensor2tensor/utils/learning_rate.py
def _learning_rate_decay(hparams, warmup_steps=0): """Learning rate decay multiplier.""" scheme = hparams.learning_rate_decay_scheme warmup_steps = tf.to_float(warmup_steps) global_step = _global_step(hparams) if not scheme or scheme == "none": return tf.constant(1.) tf.logging.info("Applying learning...
def _learning_rate_decay(hparams, warmup_steps=0): """Learning rate decay multiplier.""" scheme = hparams.learning_rate_decay_scheme warmup_steps = tf.to_float(warmup_steps) global_step = _global_step(hparams) if not scheme or scheme == "none": return tf.constant(1.) tf.logging.info("Applying learning...
[ "Learning", "rate", "decay", "multiplier", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L141-L183
[ "def", "_learning_rate_decay", "(", "hparams", ",", "warmup_steps", "=", "0", ")", ":", "scheme", "=", "hparams", ".", "learning_rate_decay_scheme", "warmup_steps", "=", "tf", ".", "to_float", "(", "warmup_steps", ")", "global_step", "=", "_global_step", "(", "h...
272500b6efe353aeb638d2745ed56e519462ca31
train
_learning_rate_warmup
Learning rate warmup multiplier.
tensor2tensor/utils/learning_rate.py
def _learning_rate_warmup(warmup_steps, warmup_schedule="exp", hparams=None): """Learning rate warmup multiplier.""" if not warmup_steps: return tf.constant(1.) tf.logging.info("Applying %s learning rate warmup for %d steps", warmup_schedule, warmup_steps) warmup_steps = tf.to_float(warm...
def _learning_rate_warmup(warmup_steps, warmup_schedule="exp", hparams=None): """Learning rate warmup multiplier.""" if not warmup_steps: return tf.constant(1.) tf.logging.info("Applying %s learning rate warmup for %d steps", warmup_schedule, warmup_steps) warmup_steps = tf.to_float(warm...
[ "Learning", "rate", "warmup", "multiplier", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/learning_rate.py#L186-L202
[ "def", "_learning_rate_warmup", "(", "warmup_steps", ",", "warmup_schedule", "=", "\"exp\"", ",", "hparams", "=", "None", ")", ":", "if", "not", "warmup_steps", ":", "return", "tf", ".", "constant", "(", "1.", ")", "tf", ".", "logging", ".", "info", "(", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
is_in_expr
Returns True if `find` is a subtree of `expr`.
tensor2tensor/data_generators/algorithmic_math.py
def is_in_expr(expr, find): """Returns True if `find` is a subtree of `expr`.""" return expr == find or (isinstance(expr, ExprNode) and expr.is_in(find))
def is_in_expr(expr, find): """Returns True if `find` is a subtree of `expr`.""" return expr == find or (isinstance(expr, ExprNode) and expr.is_in(find))
[ "Returns", "True", "if", "find", "is", "a", "subtree", "of", "expr", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L90-L92
[ "def", "is_in_expr", "(", "expr", ",", "find", ")", ":", "return", "expr", "==", "find", "or", "(", "isinstance", "(", "expr", ",", "ExprNode", ")", "and", "expr", ".", "is_in", "(", "find", ")", ")" ]
272500b6efe353aeb638d2745ed56e519462ca31
train
random_expr_with_required_var
Generate a random expression tree with a required variable. The required variable appears exactly once in the expression. Args: depth: At least one leaf will be this many levels down from the top. required_var: A char. This char is guaranteed to be placed exactly once at a leaf somewhere in the tr...
tensor2tensor/data_generators/algorithmic_math.py
def random_expr_with_required_var(depth, required_var, optional_list, ops): """Generate a random expression tree with a required variable. The required variable appears exactly once in the expression. Args: depth: At least one leaf will be this many levels down from the top. required_var: A char. This c...
def random_expr_with_required_var(depth, required_var, optional_list, ops): """Generate a random expression tree with a required variable. The required variable appears exactly once in the expression. Args: depth: At least one leaf will be this many levels down from the top. required_var: A char. This c...
[ "Generate", "a", "random", "expression", "tree", "with", "a", "required", "variable", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L95-L129
[ "def", "random_expr_with_required_var", "(", "depth", ",", "required_var", ",", "optional_list", ",", "ops", ")", ":", "if", "not", "depth", ":", "if", "required_var", ":", "return", "required_var", "return", "str", "(", "optional_list", "[", "random", ".", "r...
272500b6efe353aeb638d2745ed56e519462ca31
train
random_expr
Generate a random expression tree. Args: depth: At least one leaf will be this many levels down from the top. vlist: A list of chars. These chars are randomly selected as leaf values. ops: A list of ExprOp instances. Returns: An ExprNode instance which is the root of the generated expression tree.
tensor2tensor/data_generators/algorithmic_math.py
def random_expr(depth, vlist, ops): """Generate a random expression tree. Args: depth: At least one leaf will be this many levels down from the top. vlist: A list of chars. These chars are randomly selected as leaf values. ops: A list of ExprOp instances. Returns: An ExprNode instance which is t...
def random_expr(depth, vlist, ops): """Generate a random expression tree. Args: depth: At least one leaf will be this many levels down from the top. vlist: A list of chars. These chars are randomly selected as leaf values. ops: A list of ExprOp instances. Returns: An ExprNode instance which is t...
[ "Generate", "a", "random", "expression", "tree", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L132-L155
[ "def", "random_expr", "(", "depth", ",", "vlist", ",", "ops", ")", ":", "if", "not", "depth", ":", "return", "str", "(", "vlist", "[", "random", ".", "randrange", "(", "len", "(", "vlist", ")", ")", "]", ")", "max_depth_side", "=", "random", ".", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
algebra_inverse_solve
Solves for the value of the given var in an expression. Args: left: The root of the ExprNode tree on the left side of the equals sign. right: The root of the ExprNode tree on the right side of the equals sign. var: A char. The variable to solve for. solve_ops: A dictionary with the following properti...
tensor2tensor/data_generators/algorithmic_math.py
def algebra_inverse_solve(left, right, var, solve_ops): """Solves for the value of the given var in an expression. Args: left: The root of the ExprNode tree on the left side of the equals sign. right: The root of the ExprNode tree on the right side of the equals sign. var: A char. The variable to solve...
def algebra_inverse_solve(left, right, var, solve_ops): """Solves for the value of the given var in an expression. Args: left: The root of the ExprNode tree on the left side of the equals sign. right: The root of the ExprNode tree on the right side of the equals sign. var: A char. The variable to solve...
[ "Solves", "for", "the", "value", "of", "the", "given", "var", "in", "an", "expression", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L158-L211
[ "def", "algebra_inverse_solve", "(", "left", ",", "right", ",", "var", ",", "solve_ops", ")", ":", "is_in_left", "=", "is_in_expr", "(", "left", ",", "var", ")", "is_in_right", "=", "is_in_expr", "(", "right", ",", "var", ")", "if", "is_in_left", "==", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
format_sympy_expr
Convert sympy expression into a string which can be encoded. Args: sympy_expr: Any sympy expression tree or string. functions: Defines special functions. A dict mapping human readable string names, like "log", "exp", "sin", "cos", etc., to single chars. Each function gets a unique token, like...
tensor2tensor/data_generators/algorithmic_math.py
def format_sympy_expr(sympy_expr, functions=None): """Convert sympy expression into a string which can be encoded. Args: sympy_expr: Any sympy expression tree or string. functions: Defines special functions. A dict mapping human readable string names, like "log", "exp", "sin", "cos", etc., to singl...
def format_sympy_expr(sympy_expr, functions=None): """Convert sympy expression into a string which can be encoded. Args: sympy_expr: Any sympy expression tree or string. functions: Defines special functions. A dict mapping human readable string names, like "log", "exp", "sin", "cos", etc., to singl...
[ "Convert", "sympy", "expression", "into", "a", "string", "which", "can", "be", "encoded", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L214-L233
[ "def", "format_sympy_expr", "(", "sympy_expr", ",", "functions", "=", "None", ")", ":", "if", "functions", "is", "None", ":", "functions", "=", "{", "}", "str_expr", "=", "str", "(", "sympy_expr", ")", "result", "=", "str_expr", ".", "replace", "(", "\" ...
272500b6efe353aeb638d2745ed56e519462ca31
train
generate_algebra_inverse_sample
Randomly generate an algebra inverse dataset sample. Given an input equation and variable, produce the expression equal to the variable. Args: vlist: Variable list. List of chars that can be used in the expression. ops: List of ExprOp instances. The allowed operators for the expression. solve_ops: S...
tensor2tensor/data_generators/algorithmic_math.py
def generate_algebra_inverse_sample(vlist, ops, solve_ops, min_depth, max_depth): """Randomly generate an algebra inverse dataset sample. Given an input equation and variable, produce the expression equal to the variable. Args: vlist: Variable list. List of chars that c...
def generate_algebra_inverse_sample(vlist, ops, solve_ops, min_depth, max_depth): """Randomly generate an algebra inverse dataset sample. Given an input equation and variable, produce the expression equal to the variable. Args: vlist: Variable list. List of chars that c...
[ "Randomly", "generate", "an", "algebra", "inverse", "dataset", "sample", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L236-L274
[ "def", "generate_algebra_inverse_sample", "(", "vlist", ",", "ops", ",", "solve_ops", ",", "min_depth", ",", "max_depth", ")", ":", "side", "=", "random", ".", "randrange", "(", "2", ")", "left_depth", "=", "random", ".", "randrange", "(", "min_depth", "if",...
272500b6efe353aeb638d2745ed56e519462ca31
train
generate_algebra_simplify_sample
Randomly generate an algebra simplify dataset sample. Given an input expression, produce the simplified expression. Args: vlist: Variable list. List of chars that can be used in the expression. ops: List of ExprOp instances. The allowed operators for the expression. min_depth: Expression trees will no...
tensor2tensor/data_generators/algorithmic_math.py
def generate_algebra_simplify_sample(vlist, ops, min_depth, max_depth): """Randomly generate an algebra simplify dataset sample. Given an input expression, produce the simplified expression. Args: vlist: Variable list. List of chars that can be used in the expression. ops: List of ExprOp instances. The ...
def generate_algebra_simplify_sample(vlist, ops, min_depth, max_depth): """Randomly generate an algebra simplify dataset sample. Given an input expression, produce the simplified expression. Args: vlist: Variable list. List of chars that can be used in the expression. ops: List of ExprOp instances. The ...
[ "Randomly", "generate", "an", "algebra", "simplify", "dataset", "sample", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L277-L299
[ "def", "generate_algebra_simplify_sample", "(", "vlist", ",", "ops", ",", "min_depth", ",", "max_depth", ")", ":", "depth", "=", "random", ".", "randrange", "(", "min_depth", ",", "max_depth", "+", "1", ")", "expr", "=", "random_expr", "(", "depth", ",", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
generate_calculus_integrate_sample
Randomly generate a symbolic integral dataset sample. Given an input expression, produce the indefinite integral. Args: vlist: Variable list. List of chars that can be used in the expression. ops: List of ExprOp instances. The allowed operators for the expression. min_depth: Expression trees will not ...
tensor2tensor/data_generators/algorithmic_math.py
def generate_calculus_integrate_sample(vlist, ops, min_depth, max_depth, functions): """Randomly generate a symbolic integral dataset sample. Given an input expression, produce the indefinite integral. Args: vlist: Variable list. List of chars that can be used in the e...
def generate_calculus_integrate_sample(vlist, ops, min_depth, max_depth, functions): """Randomly generate a symbolic integral dataset sample. Given an input expression, produce the indefinite integral. Args: vlist: Variable list. List of chars that can be used in the e...
[ "Randomly", "generate", "a", "symbolic", "integral", "dataset", "sample", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L302-L335
[ "def", "generate_calculus_integrate_sample", "(", "vlist", ",", "ops", ",", "min_depth", ",", "max_depth", ",", "functions", ")", ":", "var_index", "=", "random", ".", "randrange", "(", "len", "(", "vlist", ")", ")", "var", "=", "vlist", "[", "var_index", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
math_dataset_init
Initializes required objects to generate symbolic math datasets. Produces token set, ExprOp instances, solve_op dictionary, encoders, and decoders needed to generate the algebra inverse dataset. Args: alphabet_size: How many possible variables there are. Max 52. digits: How many numerical digits to enco...
tensor2tensor/data_generators/algorithmic_math.py
def math_dataset_init(alphabet_size=26, digits=None, functions=None): """Initializes required objects to generate symbolic math datasets. Produces token set, ExprOp instances, solve_op dictionary, encoders, and decoders needed to generate the algebra inverse dataset. Args: alphabet_size: How many possible...
def math_dataset_init(alphabet_size=26, digits=None, functions=None): """Initializes required objects to generate symbolic math datasets. Produces token set, ExprOp instances, solve_op dictionary, encoders, and decoders needed to generate the algebra inverse dataset. Args: alphabet_size: How many possible...
[ "Initializes", "required", "objects", "to", "generate", "symbolic", "math", "datasets", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L358-L436
[ "def", "math_dataset_init", "(", "alphabet_size", "=", "26", ",", "digits", "=", "None", ",", "functions", "=", "None", ")", ":", "ops_list", "=", "[", "\"+\"", ",", "\"-\"", ",", "\"*\"", ",", "\"/\"", "]", "ops", "=", "{", "\"+\"", ":", "ExprOp", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
algebra_inverse
Generate the algebra inverse dataset. Each sample is a symbolic math equation involving unknown variables. The task is to solve for the given variable. The target is the resulting expression. Args: alphabet_size: How many possible variables there are. Max 52. min_depth: Minimum depth of the expression...
tensor2tensor/data_generators/algorithmic_math.py
def algebra_inverse(alphabet_size=26, min_depth=0, max_depth=2, nbr_cases=10000): """Generate the algebra inverse dataset. Each sample is a symbolic math equation involving unknown variables. The task is to solve for the given variable. The target is the resulting expression. Args: a...
def algebra_inverse(alphabet_size=26, min_depth=0, max_depth=2, nbr_cases=10000): """Generate the algebra inverse dataset. Each sample is a symbolic math equation involving unknown variables. The task is to solve for the given variable. The target is the resulting expression. Args: a...
[ "Generate", "the", "algebra", "inverse", "dataset", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L439-L477
[ "def", "algebra_inverse", "(", "alphabet_size", "=", "26", ",", "min_depth", "=", "0", ",", "max_depth", "=", "2", ",", "nbr_cases", "=", "10000", ")", ":", "if", "max_depth", "<", "min_depth", ":", "raise", "ValueError", "(", "\"max_depth must be greater than...
272500b6efe353aeb638d2745ed56e519462ca31
train
algebra_simplify
Generate the algebra simplify dataset. Each sample is a symbolic math expression involving unknown variables. The task is to simplify the expression. The target is the resulting expression. Args: alphabet_size: How many possible variables there are. Max 52. min_depth: Minimum depth of the expression tre...
tensor2tensor/data_generators/algorithmic_math.py
def algebra_simplify(alphabet_size=26, min_depth=0, max_depth=2, nbr_cases=10000): """Generate the algebra simplify dataset. Each sample is a symbolic math expression involving unknown variables. The task is to simplify the expression. The target is ...
def algebra_simplify(alphabet_size=26, min_depth=0, max_depth=2, nbr_cases=10000): """Generate the algebra simplify dataset. Each sample is a symbolic math expression involving unknown variables. The task is to simplify the expression. The target is ...
[ "Generate", "the", "algebra", "simplify", "dataset", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L480-L517
[ "def", "algebra_simplify", "(", "alphabet_size", "=", "26", ",", "min_depth", "=", "0", ",", "max_depth", "=", "2", ",", "nbr_cases", "=", "10000", ")", ":", "if", "max_depth", "<", "min_depth", ":", "raise", "ValueError", "(", "\"max_depth must be greater tha...
272500b6efe353aeb638d2745ed56e519462ca31
train
calculus_integrate
Generate the calculus integrate dataset. Each sample is a symbolic math expression involving unknown variables. The task is to take the indefinite integral of the expression. The target is the resulting expression. Args: alphabet_size: How many possible variables there are. Max 26. min_depth: Minimum ...
tensor2tensor/data_generators/algorithmic_math.py
def calculus_integrate(alphabet_size=26, min_depth=0, max_depth=2, nbr_cases=10000): """Generate the calculus integrate dataset. Each sample is a symbolic math expression involving unknown variables. The task is to take the indefinite integral ...
def calculus_integrate(alphabet_size=26, min_depth=0, max_depth=2, nbr_cases=10000): """Generate the calculus integrate dataset. Each sample is a symbolic math expression involving unknown variables. The task is to take the indefinite integral ...
[ "Generate", "the", "calculus", "integrate", "dataset", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L520-L573
[ "def", "calculus_integrate", "(", "alphabet_size", "=", "26", ",", "min_depth", "=", "0", ",", "max_depth", "=", "2", ",", "nbr_cases", "=", "10000", ")", ":", "if", "max_depth", "<", "min_depth", ":", "raise", "ValueError", "(", "\"max_depth must be greater t...
272500b6efe353aeb638d2745ed56e519462ca31
train
ExprNode.is_in
Returns True if `expr` is a subtree.
tensor2tensor/data_generators/algorithmic_math.py
def is_in(self, expr): """Returns True if `expr` is a subtree.""" if expr == self: return True is_in_left = is_in_expr(self.left, expr) is_in_right = is_in_expr(self.right, expr) return is_in_left or is_in_right
def is_in(self, expr): """Returns True if `expr` is a subtree.""" if expr == self: return True is_in_left = is_in_expr(self.left, expr) is_in_right = is_in_expr(self.right, expr) return is_in_left or is_in_right
[ "Returns", "True", "if", "expr", "is", "a", "subtree", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math.py#L81-L87
[ "def", "is_in", "(", "self", ",", "expr", ")", ":", "if", "expr", "==", "self", ":", "return", "True", "is_in_left", "=", "is_in_expr", "(", "self", ".", "left", ",", "expr", ")", "is_in_right", "=", "is_in_expr", "(", "self", ".", "right", ",", "exp...
272500b6efe353aeb638d2745ed56e519462ca31
train
preprocess_example_common
Preprocessing steps common to all models.
tensor2tensor/data_generators/problem.py
def preprocess_example_common(example, mode, hparams): """Preprocessing steps common to all models.""" if "inputs" in example and hparams.max_input_seq_length > 0: example["inputs"] = example["inputs"][:hparams.max_input_seq_length] if hparams.prepend_mode != "none": if mode == tf.estimator.ModeKeys.PREDI...
def preprocess_example_common(example, mode, hparams): """Preprocessing steps common to all models.""" if "inputs" in example and hparams.max_input_seq_length > 0: example["inputs"] = example["inputs"][:hparams.max_input_seq_length] if hparams.prepend_mode != "none": if mode == tf.estimator.ModeKeys.PREDI...
[ "Preprocessing", "steps", "common", "to", "all", "models", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L142-L162
[ "def", "preprocess_example_common", "(", "example", ",", "mode", ",", "hparams", ")", ":", "if", "\"inputs\"", "in", "example", "and", "hparams", ".", "max_input_seq_length", ">", "0", ":", "example", "[", "\"inputs\"", "]", "=", "example", "[", "\"inputs\"", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_copy_problem_hparams
Use input modality, vocab, and space id for target.
tensor2tensor/data_generators/problem.py
def _copy_problem_hparams(p_hparams): """Use input modality, vocab, and space id for target.""" p = p_hparams # Duplicate input modality. p.modality["targets"] = p.modality["inputs"] # Duplicate input vocab size. p.vocab_size["targets"] = p.vocab_size["inputs"] # Duplicate input vocabulary. p.vocabulary...
def _copy_problem_hparams(p_hparams): """Use input modality, vocab, and space id for target.""" p = p_hparams # Duplicate input modality. p.modality["targets"] = p.modality["inputs"] # Duplicate input vocab size. p.vocab_size["targets"] = p.vocab_size["inputs"] # Duplicate input vocabulary. p.vocabulary...
[ "Use", "input", "modality", "vocab", "and", "space", "id", "for", "target", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L947-L959
[ "def", "_copy_problem_hparams", "(", "p_hparams", ")", ":", "p", "=", "p_hparams", "# Duplicate input modality.", "p", ".", "modality", "[", "\"targets\"", "]", "=", "p", ".", "modality", "[", "\"inputs\"", "]", "# Duplicate input vocab size.", "p", ".", "vocab_si...
272500b6efe353aeb638d2745ed56e519462ca31
train
_reverse_problem_hparams
Swap input/output modalities, vocab, and space ids.
tensor2tensor/data_generators/problem.py
def _reverse_problem_hparams(p_hparams): """Swap input/output modalities, vocab, and space ids.""" p = p_hparams # Swap modalities. # TODO(trandustin): Note this assumes target modalities have feature name # 'target', and each intended feature to swap has feature name 'input'. # In the future, remove need ...
def _reverse_problem_hparams(p_hparams): """Swap input/output modalities, vocab, and space ids.""" p = p_hparams # Swap modalities. # TODO(trandustin): Note this assumes target modalities have feature name # 'target', and each intended feature to swap has feature name 'input'. # In the future, remove need ...
[ "Swap", "input", "/", "output", "modalities", "vocab", "and", "space", "ids", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L962-L1014
[ "def", "_reverse_problem_hparams", "(", "p_hparams", ")", ":", "p", "=", "p_hparams", "# Swap modalities.", "# TODO(trandustin): Note this assumes target modalities have feature name", "# 'target', and each intended feature to swap has feature name 'input'.", "# In the future, remove need fo...
272500b6efe353aeb638d2745ed56e519462ca31
train
_default_hparams
A set of basic model hyperparameters.
tensor2tensor/data_generators/problem.py
def _default_hparams(): """A set of basic model hyperparameters.""" return hparam.HParams( # Use this parameter to get comparable perplexity numbers with different # tokenizations. This value should be set to the ratio of the number of # tokens in the test set according to the tokenization used t...
def _default_hparams(): """A set of basic model hyperparameters.""" return hparam.HParams( # Use this parameter to get comparable perplexity numbers with different # tokenizations. This value should be set to the ratio of the number of # tokens in the test set according to the tokenization used t...
[ "A", "set", "of", "basic", "model", "hyperparameters", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L1017-L1050
[ "def", "_default_hparams", "(", ")", ":", "return", "hparam", ".", "HParams", "(", "# Use this parameter to get comparable perplexity numbers with different", "# tokenizations. This value should be set to the ratio of the number of", "# tokens in the test set according to the tokenization u...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.tpu_batch_size_per_shard
Batch size in examples per TPU core. Args: model_hparams: model hyperparameters Returns: an integer
tensor2tensor/data_generators/problem.py
def tpu_batch_size_per_shard(self, model_hparams): """Batch size in examples per TPU core. Args: model_hparams: model hyperparameters Returns: an integer """ if self.batch_size_means_tokens and not model_hparams.use_fixed_batch_size: return model_hparams.batch_size // self.max_len...
def tpu_batch_size_per_shard(self, model_hparams): """Batch size in examples per TPU core. Args: model_hparams: model hyperparameters Returns: an integer """ if self.batch_size_means_tokens and not model_hparams.use_fixed_batch_size: return model_hparams.batch_size // self.max_len...
[ "Batch", "size", "in", "examples", "per", "TPU", "core", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L272-L283
[ "def", "tpu_batch_size_per_shard", "(", "self", ",", "model_hparams", ")", ":", "if", "self", ".", "batch_size_means_tokens", "and", "not", "model_hparams", ".", "use_fixed_batch_size", ":", "return", "model_hparams", ".", "batch_size", "//", "self", ".", "max_lengt...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.preprocess
Runtime preprocessing on the whole dataset. Return a tf.data.Datset -- the preprocessed version of the given one. By default this function calls preprocess_example. Args: dataset: the Dataset of already decoded but not yet preprocessed features. mode: tf.estimator.ModeKeys hparams: HPara...
tensor2tensor/data_generators/problem.py
def preprocess(self, dataset, mode, hparams, interleave=True): """Runtime preprocessing on the whole dataset. Return a tf.data.Datset -- the preprocessed version of the given one. By default this function calls preprocess_example. Args: dataset: the Dataset of already decoded but not yet preproc...
def preprocess(self, dataset, mode, hparams, interleave=True): """Runtime preprocessing on the whole dataset. Return a tf.data.Datset -- the preprocessed version of the given one. By default this function calls preprocess_example. Args: dataset: the Dataset of already decoded but not yet preproc...
[ "Runtime", "preprocessing", "on", "the", "whole", "dataset", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L395-L425
[ "def", "preprocess", "(", "self", ",", "dataset", ",", "mode", ",", "hparams", ",", "interleave", "=", "True", ")", ":", "def", "_preprocess", "(", "example", ")", ":", "examples", "=", "self", ".", "preprocess_example", "(", "example", ",", "mode", ",",...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.filepattern
Get filepattern for data files for mode. Matches mode to a suffix. * DatasetSplit.TRAIN: train * DatasetSplit.EVAL: dev * DatasetSplit.TEST: test * tf.estimator.ModeKeys.PREDICT: dev Args: data_dir: str, data directory. mode: DatasetSplit shard: int, if provided, will only re...
tensor2tensor/data_generators/problem.py
def filepattern(self, data_dir, mode, shard=None): """Get filepattern for data files for mode. Matches mode to a suffix. * DatasetSplit.TRAIN: train * DatasetSplit.EVAL: dev * DatasetSplit.TEST: test * tf.estimator.ModeKeys.PREDICT: dev Args: data_dir: str, data directory. mode...
def filepattern(self, data_dir, mode, shard=None): """Get filepattern for data files for mode. Matches mode to a suffix. * DatasetSplit.TRAIN: train * DatasetSplit.EVAL: dev * DatasetSplit.TEST: test * tf.estimator.ModeKeys.PREDICT: dev Args: data_dir: str, data directory. mode...
[ "Get", "filepattern", "for", "data", "files", "for", "mode", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L458-L485
[ "def", "filepattern", "(", "self", ",", "data_dir", ",", "mode", ",", "shard", "=", "None", ")", ":", "path", "=", "os", ".", "path", ".", "join", "(", "data_dir", ",", "self", ".", "dataset_filename", "(", ")", ")", "shard_str", "=", "\"-%05d\"", "%...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.get_hparams
Returns problem_hparams.
tensor2tensor/data_generators/problem.py
def get_hparams(self, model_hparams=None): """Returns problem_hparams.""" if self._hparams is not None: return self._hparams if model_hparams is None: model_hparams = default_model_hparams() if self._encoders is None: data_dir = (model_hparams and hasattr(model_hparams, "data_dir") a...
def get_hparams(self, model_hparams=None): """Returns problem_hparams.""" if self._hparams is not None: return self._hparams if model_hparams is None: model_hparams = default_model_hparams() if self._encoders is None: data_dir = (model_hparams and hasattr(model_hparams, "data_dir") a...
[ "Returns", "problem_hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L513-L542
[ "def", "get_hparams", "(", "self", ",", "model_hparams", "=", "None", ")", ":", "if", "self", ".", "_hparams", "is", "not", "None", ":", "return", "self", ".", "_hparams", "if", "model_hparams", "is", "None", ":", "model_hparams", "=", "default_model_hparams...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.maybe_reverse_features
Reverse features between inputs and targets if the problem is '_rev'.
tensor2tensor/data_generators/problem.py
def maybe_reverse_features(self, feature_map): """Reverse features between inputs and targets if the problem is '_rev'.""" if not self._was_reversed: return inputs = feature_map.pop("inputs", None) targets = feature_map.pop("targets", None) inputs_seg = feature_map.pop("inputs_segmentation", N...
def maybe_reverse_features(self, feature_map): """Reverse features between inputs and targets if the problem is '_rev'.""" if not self._was_reversed: return inputs = feature_map.pop("inputs", None) targets = feature_map.pop("targets", None) inputs_seg = feature_map.pop("inputs_segmentation", N...
[ "Reverse", "features", "between", "inputs", "and", "targets", "if", "the", "problem", "is", "_rev", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L544-L565
[ "def", "maybe_reverse_features", "(", "self", ",", "feature_map", ")", ":", "if", "not", "self", ".", "_was_reversed", ":", "return", "inputs", "=", "feature_map", ".", "pop", "(", "\"inputs\"", ",", "None", ")", "targets", "=", "feature_map", ".", "pop", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.dataset
Build a Dataset for this problem. Args: mode: tf.estimator.ModeKeys; determines which files to read from. data_dir: directory that contains data files. num_threads: int, number of threads to use for decode and preprocess Dataset.map calls. output_buffer_size: int, how many elements ...
tensor2tensor/data_generators/problem.py
def dataset(self, mode, data_dir=None, num_threads=None, output_buffer_size=None, shuffle_files=None, hparams=None, preprocess=True, dataset_split=None, shard=None, partition_id=0,...
def dataset(self, mode, data_dir=None, num_threads=None, output_buffer_size=None, shuffle_files=None, hparams=None, preprocess=True, dataset_split=None, shard=None, partition_id=0,...
[ "Build", "a", "Dataset", "for", "this", "problem", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L583-L698
[ "def", "dataset", "(", "self", ",", "mode", ",", "data_dir", "=", "None", ",", "num_threads", "=", "None", ",", "output_buffer_size", "=", "None", ",", "shuffle_files", "=", "None", ",", "hparams", "=", "None", ",", "preprocess", "=", "True", ",", "datas...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.decode_example
Return a dict of Tensors from a serialized tensorflow.Example.
tensor2tensor/data_generators/problem.py
def decode_example(self, serialized_example): """Return a dict of Tensors from a serialized tensorflow.Example.""" data_fields, data_items_to_decoders = self.example_reading_spec() # Necessary to rejoin examples in the correct order with the Cloud ML Engine # batch prediction API. data_fields["batch...
def decode_example(self, serialized_example): """Return a dict of Tensors from a serialized tensorflow.Example.""" data_fields, data_items_to_decoders = self.example_reading_spec() # Necessary to rejoin examples in the correct order with the Cloud ML Engine # batch prediction API. data_fields["batch...
[ "Return", "a", "dict", "of", "Tensors", "from", "a", "serialized", "tensorflow", ".", "Example", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L700-L717
[ "def", "decode_example", "(", "self", ",", "serialized_example", ")", ":", "data_fields", ",", "data_items_to_decoders", "=", "self", ".", "example_reading_spec", "(", ")", "# Necessary to rejoin examples in the correct order with the Cloud ML Engine", "# batch prediction API.", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.feature_info
Retrieve dict<feature name, FeatureInfo>. Must first call Problem.get_hparams or Problem.dataset to have the problem's internal hparams already constructed. Returns: dict<feature name, FeatureInfo>
tensor2tensor/data_generators/problem.py
def feature_info(self): """Retrieve dict<feature name, FeatureInfo>. Must first call Problem.get_hparams or Problem.dataset to have the problem's internal hparams already constructed. Returns: dict<feature name, FeatureInfo> """ if self._feature_info is not None: return self._featu...
def feature_info(self): """Retrieve dict<feature name, FeatureInfo>. Must first call Problem.get_hparams or Problem.dataset to have the problem's internal hparams already constructed. Returns: dict<feature name, FeatureInfo> """ if self._feature_info is not None: return self._featu...
[ "Retrieve", "dict<feature", "name", "FeatureInfo", ">", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L735-L769
[ "def", "feature_info", "(", "self", ")", ":", "if", "self", ".", "_feature_info", "is", "not", "None", ":", "return", "self", ".", "_feature_info", "assert", "self", ".", "_hparams", "is", "not", "None", "hp", "=", "self", ".", "get_hparams", "(", ")", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.make_estimator_input_fn
Return input_fn wrapped for Estimator.
tensor2tensor/data_generators/problem.py
def make_estimator_input_fn(self, mode, hparams, data_dir=None, force_repeat=False, prevent_repeat=False, dataset_kwargs=None): """Retur...
def make_estimator_input_fn(self, mode, hparams, data_dir=None, force_repeat=False, prevent_repeat=False, dataset_kwargs=None): """Retur...
[ "Return", "input_fn", "wrapped", "for", "Estimator", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L771-L791
[ "def", "make_estimator_input_fn", "(", "self", ",", "mode", ",", "hparams", ",", "data_dir", "=", "None", ",", "force_repeat", "=", "False", ",", "prevent_repeat", "=", "False", ",", "dataset_kwargs", "=", "None", ")", ":", "def", "estimator_input_fn", "(", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem._dataset_partition
Which part of the training data to read. If there are multiple parallel calls to input_fn (multiple TPU hosts), then we want each one to read from a separate partition of the training data. Args: mode: tf.estimator.ModeKeys config: RunConfig params: A dict that contains parameters. ...
tensor2tensor/data_generators/problem.py
def _dataset_partition(self, mode, config, params): """Which part of the training data to read. If there are multiple parallel calls to input_fn (multiple TPU hosts), then we want each one to read from a separate partition of the training data. Args: mode: tf.estimator.ModeKeys config:...
def _dataset_partition(self, mode, config, params): """Which part of the training data to read. If there are multiple parallel calls to input_fn (multiple TPU hosts), then we want each one to read from a separate partition of the training data. Args: mode: tf.estimator.ModeKeys config:...
[ "Which", "part", "of", "the", "training", "data", "to", "read", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L793-L828
[ "def", "_dataset_partition", "(", "self", ",", "mode", ",", "config", ",", "params", ")", ":", "if", "mode", "!=", "tf", ".", "estimator", ".", "ModeKeys", ".", "TRAIN", "or", "not", "hasattr", "(", "config", ",", "\"tpu_config\"", ")", ":", "# Reset in ...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.input_fn
Builds input pipeline for problem. Args: mode: tf.estimator.ModeKeys hparams: HParams, model hparams data_dir: str, data directory; if None, will use hparams.data_dir params: dict, may include "batch_size" config: RunConfig; should have the data_parallelism attribute if not using ...
tensor2tensor/data_generators/problem.py
def input_fn(self, mode, hparams, data_dir=None, params=None, config=None, force_repeat=False, prevent_repeat=False, dataset_kwargs=None): """Builds input pipeline for problem. Args: mo...
def input_fn(self, mode, hparams, data_dir=None, params=None, config=None, force_repeat=False, prevent_repeat=False, dataset_kwargs=None): """Builds input pipeline for problem. Args: mo...
[ "Builds", "input", "pipeline", "for", "problem", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L830-L886
[ "def", "input_fn", "(", "self", ",", "mode", ",", "hparams", ",", "data_dir", "=", "None", ",", "params", "=", "None", ",", "config", "=", "None", ",", "force_repeat", "=", "False", ",", "prevent_repeat", "=", "False", ",", "dataset_kwargs", "=", "None",...
272500b6efe353aeb638d2745ed56e519462ca31
train
Problem.serving_input_fn
Input fn for serving export, starting from serialized example.
tensor2tensor/data_generators/problem.py
def serving_input_fn(self, hparams, decode_hparams=None, use_tpu=False): """Input fn for serving export, starting from serialized example.""" mode = tf.estimator.ModeKeys.PREDICT serialized_example = tf.placeholder( dtype=tf.string, shape=[None], name="serialized_example") dataset = tf.data.Data...
def serving_input_fn(self, hparams, decode_hparams=None, use_tpu=False): """Input fn for serving export, starting from serialized example.""" mode = tf.estimator.ModeKeys.PREDICT serialized_example = tf.placeholder( dtype=tf.string, shape=[None], name="serialized_example") dataset = tf.data.Data...
[ "Input", "fn", "for", "serving", "export", "starting", "from", "serialized", "example", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/problem.py#L899-L930
[ "def", "serving_input_fn", "(", "self", ",", "hparams", ",", "decode_hparams", "=", "None", ",", "use_tpu", "=", "False", ")", ":", "mode", "=", "tf", ".", "estimator", ".", "ModeKeys", ".", "PREDICT", "serialized_example", "=", "tf", ".", "placeholder", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
_get_hparams_path
Get hyper-parameters file path.
tensor2tensor/serving/export.py
def _get_hparams_path(): """Get hyper-parameters file path.""" hparams_path = None if FLAGS.output_dir: hparams_path = os.path.join(FLAGS.output_dir, "hparams.json") else: tf.logging.warning( "--output_dir not specified. Hyper-parameters will be infered from" "--hparams_set and --hparams...
def _get_hparams_path(): """Get hyper-parameters file path.""" hparams_path = None if FLAGS.output_dir: hparams_path = os.path.join(FLAGS.output_dir, "hparams.json") else: tf.logging.warning( "--output_dir not specified. Hyper-parameters will be infered from" "--hparams_set and --hparams...
[ "Get", "hyper", "-", "parameters", "file", "path", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/serving/export.py#L47-L57
[ "def", "_get_hparams_path", "(", ")", ":", "hparams_path", "=", "None", "if", "FLAGS", ".", "output_dir", ":", "hparams_path", "=", "os", ".", "path", ".", "join", "(", "FLAGS", ".", "output_dir", ",", "\"hparams.json\"", ")", "else", ":", "tf", ".", "lo...
272500b6efe353aeb638d2745ed56e519462ca31
train
export_module_spec_with_checkpoint
Exports given checkpoint as tfhub module with given spec.
tensor2tensor/serving/export.py
def export_module_spec_with_checkpoint(module_spec, checkpoint_path, export_path, scope_prefix=""): """Exports given checkpoint as tfhub module with given spec.""" # The main requirement is that it ...
def export_module_spec_with_checkpoint(module_spec, checkpoint_path, export_path, scope_prefix=""): """Exports given checkpoint as tfhub module with given spec.""" # The main requirement is that it ...
[ "Exports", "given", "checkpoint", "as", "tfhub", "module", "with", "given", "spec", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/serving/export.py#L80-L100
[ "def", "export_module_spec_with_checkpoint", "(", "module_spec", ",", "checkpoint_path", ",", "export_path", ",", "scope_prefix", "=", "\"\"", ")", ":", "# The main requirement is that it is possible to know how to map from", "# module variable name to checkpoint variable name.", "# ...
272500b6efe353aeb638d2745ed56e519462ca31
train
export_as_tfhub_module
Exports the last checkpoint from the directory as tfhub module. It creates the Module spec and signature (based on T2T problem information), which is later used to create and export the hub module. Module will be saved inside the ckpt_dir. Args: model_name: name of the model to be exported. hparams: T...
tensor2tensor/serving/export.py
def export_as_tfhub_module(model_name, hparams, decode_hparams, problem, checkpoint_path, export_dir): """Exports the last checkpoint from the directory as tfhub module. It creates...
def export_as_tfhub_module(model_name, hparams, decode_hparams, problem, checkpoint_path, export_dir): """Exports the last checkpoint from the directory as tfhub module. It creates...
[ "Exports", "the", "last", "checkpoint", "from", "the", "directory", "as", "tfhub", "module", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/serving/export.py#L103-L154
[ "def", "export_as_tfhub_module", "(", "model_name", ",", "hparams", ",", "decode_hparams", ",", "problem", ",", "checkpoint_path", ",", "export_dir", ")", ":", "def", "hub_module_fn", "(", ")", ":", "\"\"\"Creates the TF graph for the hub module.\"\"\"", "model_fn", "="...
272500b6efe353aeb638d2745ed56e519462ca31
train
build_model
Build the graph required to fetch the attention weights. Args: hparams_set: HParams set to build the model with. model_name: Name of model. data_dir: Path to directory containing training data. problem_name: Name of problem. beam_size: (Optional) Number of beams to use when decoding a translation...
tensor2tensor/visualization/visualization.py
def build_model(hparams_set, model_name, data_dir, problem_name, beam_size=1): """Build the graph required to fetch the attention weights. Args: hparams_set: HParams set to build the model with. model_name: Name of model. data_dir: Path to directory containing training data. problem_name: Name of p...
def build_model(hparams_set, model_name, data_dir, problem_name, beam_size=1): """Build the graph required to fetch the attention weights. Args: hparams_set: HParams set to build the model with. model_name: Name of model. data_dir: Path to directory containing training data. problem_name: Name of p...
[ "Build", "the", "graph", "required", "to", "fetch", "the", "attention", "weights", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/visualization/visualization.py#L113-L156
[ "def", "build_model", "(", "hparams_set", ",", "model_name", ",", "data_dir", ",", "problem_name", ",", "beam_size", "=", "1", ")", ":", "hparams", "=", "trainer_lib", ".", "create_hparams", "(", "hparams_set", ",", "data_dir", "=", "data_dir", ",", "problem_n...
272500b6efe353aeb638d2745ed56e519462ca31
train
get_att_mats
Get's the tensors representing the attentions from a build model. The attentions are stored in a dict on the Transformer object while building the graph. Args: translate_model: Transformer object to fetch the attention weights from. Returns: Tuple of attention matrices; ( enc_atts: Encoder self a...
tensor2tensor/visualization/visualization.py
def get_att_mats(translate_model): """Get's the tensors representing the attentions from a build model. The attentions are stored in a dict on the Transformer object while building the graph. Args: translate_model: Transformer object to fetch the attention weights from. Returns: Tuple of attention ma...
def get_att_mats(translate_model): """Get's the tensors representing the attentions from a build model. The attentions are stored in a dict on the Transformer object while building the graph. Args: translate_model: Transformer object to fetch the attention weights from. Returns: Tuple of attention ma...
[ "Get", "s", "the", "tensors", "representing", "the", "attentions", "from", "a", "build", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/visualization/visualization.py#L159-L205
[ "def", "get_att_mats", "(", "translate_model", ")", ":", "enc_atts", "=", "[", "]", "dec_atts", "=", "[", "]", "encdec_atts", "=", "[", "]", "prefix", "=", "\"transformer/body/\"", "postfix_self_attention", "=", "\"/multihead_attention/dot_product_attention\"", "if", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
AttentionVisualizer.encode
Input str to features dict, ready for inference.
tensor2tensor/visualization/visualization.py
def encode(self, input_str): """Input str to features dict, ready for inference.""" inputs = self.encoders["inputs"].encode(input_str) + [EOS_ID] batch_inputs = np.reshape(inputs, [1, -1, 1, 1]) # Make it 3D. return batch_inputs
def encode(self, input_str): """Input str to features dict, ready for inference.""" inputs = self.encoders["inputs"].encode(input_str) + [EOS_ID] batch_inputs = np.reshape(inputs, [1, -1, 1, 1]) # Make it 3D. return batch_inputs
[ "Input", "str", "to", "features", "dict", "ready", "for", "inference", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/visualization/visualization.py#L52-L56
[ "def", "encode", "(", "self", ",", "input_str", ")", ":", "inputs", "=", "self", ".", "encoders", "[", "\"inputs\"", "]", ".", "encode", "(", "input_str", ")", "+", "[", "EOS_ID", "]", "batch_inputs", "=", "np", ".", "reshape", "(", "inputs", ",", "[...
272500b6efe353aeb638d2745ed56e519462ca31
train
AttentionVisualizer.decode
List of ints to str.
tensor2tensor/visualization/visualization.py
def decode(self, integers): """List of ints to str.""" integers = list(np.squeeze(integers)) return self.encoders["inputs"].decode(integers)
def decode(self, integers): """List of ints to str.""" integers = list(np.squeeze(integers)) return self.encoders["inputs"].decode(integers)
[ "List", "of", "ints", "to", "str", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/visualization/visualization.py#L58-L61
[ "def", "decode", "(", "self", ",", "integers", ")", ":", "integers", "=", "list", "(", "np", ".", "squeeze", "(", "integers", ")", ")", "return", "self", ".", "encoders", "[", "\"inputs\"", "]", ".", "decode", "(", "integers", ")" ]
272500b6efe353aeb638d2745ed56e519462ca31
train
AttentionVisualizer.decode_list
List of ints to list of str.
tensor2tensor/visualization/visualization.py
def decode_list(self, integers): """List of ints to list of str.""" integers = list(np.squeeze(integers)) return self.encoders["inputs"].decode_list(integers)
def decode_list(self, integers): """List of ints to list of str.""" integers = list(np.squeeze(integers)) return self.encoders["inputs"].decode_list(integers)
[ "List", "of", "ints", "to", "list", "of", "str", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/visualization/visualization.py#L63-L66
[ "def", "decode_list", "(", "self", ",", "integers", ")", ":", "integers", "=", "list", "(", "np", ".", "squeeze", "(", "integers", ")", ")", "return", "self", ".", "encoders", "[", "\"inputs\"", "]", ".", "decode_list", "(", "integers", ")" ]
272500b6efe353aeb638d2745ed56e519462ca31
train
AttentionVisualizer.get_vis_data_from_string
Constructs the data needed for visualizing attentions. Args: sess: A tf.Session object. input_string: The input sentence to be translated and visualized. Returns: Tuple of ( output_string: The translated sentence. input_list: Tokenized input sentence. output_lis...
tensor2tensor/visualization/visualization.py
def get_vis_data_from_string(self, sess, input_string): """Constructs the data needed for visualizing attentions. Args: sess: A tf.Session object. input_string: The input sentence to be translated and visualized. Returns: Tuple of ( output_string: The translated sentence. ...
def get_vis_data_from_string(self, sess, input_string): """Constructs the data needed for visualizing attentions. Args: sess: A tf.Session object. input_string: The input sentence to be translated and visualized. Returns: Tuple of ( output_string: The translated sentence. ...
[ "Constructs", "the", "data", "needed", "for", "visualizing", "attentions", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/visualization/visualization.py#L68-L110
[ "def", "get_vis_data_from_string", "(", "self", ",", "sess", ",", "input_string", ")", ":", "encoded_inputs", "=", "self", ".", "encode", "(", "input_string", ")", "# Run inference graph to get the translation.", "out", "=", "sess", ".", "run", "(", "self", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
glow_hparams
Glow Hparams.
tensor2tensor/models/research/glow.py
def glow_hparams(): """Glow Hparams.""" hparams = common_hparams.basic_params1() hparams.clip_grad_norm = None hparams.weight_decay = 0.0 hparams.learning_rate_constant = 3e-4 hparams.batch_size = 32 # can be prev_level, prev_step or normal. # see: glow_ops.merge_level_and_latent_dist hparams.add_hpar...
def glow_hparams(): """Glow Hparams.""" hparams = common_hparams.basic_params1() hparams.clip_grad_norm = None hparams.weight_decay = 0.0 hparams.learning_rate_constant = 3e-4 hparams.batch_size = 32 # can be prev_level, prev_step or normal. # see: glow_ops.merge_level_and_latent_dist hparams.add_hpar...
[ "Glow", "Hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/glow.py#L39-L65
[ "def", "glow_hparams", "(", ")", ":", "hparams", "=", "common_hparams", ".", "basic_params1", "(", ")", "hparams", ".", "clip_grad_norm", "=", "None", "hparams", ".", "weight_decay", "=", "0.0", "hparams", ".", "learning_rate_constant", "=", "3e-4", "hparams", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
shift_and_pad
Shifts and pads with zero along an axis. Example: shift_and_pad([1, 2, 3, 4], 2) --> [0, 0, 1, 2] shift_and_pad([1, 2, 3, 4], -2) --> [3, 4, 0, 0] Args: tensor: Tensor; to be shifted and padded. shift: int; number of positions to shift by. axis: int; along which axis to shift and pad. Retu...
tensor2tensor/models/research/transformer_aux.py
def shift_and_pad(tensor, shift, axis=0): """Shifts and pads with zero along an axis. Example: shift_and_pad([1, 2, 3, 4], 2) --> [0, 0, 1, 2] shift_and_pad([1, 2, 3, 4], -2) --> [3, 4, 0, 0] Args: tensor: Tensor; to be shifted and padded. shift: int; number of positions to shift by. axis: ...
def shift_and_pad(tensor, shift, axis=0): """Shifts and pads with zero along an axis. Example: shift_and_pad([1, 2, 3, 4], 2) --> [0, 0, 1, 2] shift_and_pad([1, 2, 3, 4], -2) --> [3, 4, 0, 0] Args: tensor: Tensor; to be shifted and padded. shift: int; number of positions to shift by. axis: ...
[ "Shifts", "and", "pads", "with", "zero", "along", "an", "axis", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/transformer_aux.py#L29-L64
[ "def", "shift_and_pad", "(", "tensor", ",", "shift", ",", "axis", "=", "0", ")", ":", "shape", "=", "tensor", ".", "shape", "rank", "=", "len", "(", "shape", ")", "assert", "0", "<=", "abs", "(", "axis", ")", "<", "rank", "length", "=", "int", "(...
272500b6efe353aeb638d2745ed56e519462ca31
train
transformer_aux_base
Set of hyperparameters.
tensor2tensor/models/research/transformer_aux.py
def transformer_aux_base(): """Set of hyperparameters.""" hparams = transformer.transformer_base() hparams.shared_embedding_and_softmax_weights = False hparams.add_hparam("shift_values", "1,2,3,4") return hparams
def transformer_aux_base(): """Set of hyperparameters.""" hparams = transformer.transformer_base() hparams.shared_embedding_and_softmax_weights = False hparams.add_hparam("shift_values", "1,2,3,4") return hparams
[ "Set", "of", "hyperparameters", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/transformer_aux.py#L161-L166
[ "def", "transformer_aux_base", "(", ")", ":", "hparams", "=", "transformer", ".", "transformer_base", "(", ")", "hparams", ".", "shared_embedding_and_softmax_weights", "=", "False", "hparams", ".", "add_hparam", "(", "\"shift_values\"", ",", "\"1,2,3,4\"", ")", "ret...
272500b6efe353aeb638d2745ed56e519462ca31
train
transformer_aux_tiny
Set of hyperparameters.
tensor2tensor/models/research/transformer_aux.py
def transformer_aux_tiny(): """Set of hyperparameters.""" hparams = transformer.transformer_tiny() hparams.shared_embedding_and_softmax_weights = False hparams.add_hparam("shift_values", "1,2") return hparams
def transformer_aux_tiny(): """Set of hyperparameters.""" hparams = transformer.transformer_tiny() hparams.shared_embedding_and_softmax_weights = False hparams.add_hparam("shift_values", "1,2") return hparams
[ "Set", "of", "hyperparameters", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/transformer_aux.py#L170-L175
[ "def", "transformer_aux_tiny", "(", ")", ":", "hparams", "=", "transformer", ".", "transformer_tiny", "(", ")", "hparams", ".", "shared_embedding_and_softmax_weights", "=", "False", "hparams", ".", "add_hparam", "(", "\"shift_values\"", ",", "\"1,2\"", ")", "return"...
272500b6efe353aeb638d2745ed56e519462ca31
train
pixels_from_softmax
Given frame_logits from a per-pixel softmax, generate colors.
tensor2tensor/models/video/base.py
def pixels_from_softmax(frame_logits, pure_sampling=False, temperature=1.0, gumbel_noise_factor=0.2): """Given frame_logits from a per-pixel softmax, generate colors.""" # If we're purely sampling, just sample each pixel. if pure_sampling or temperature == 0.0: return common_layers.sam...
def pixels_from_softmax(frame_logits, pure_sampling=False, temperature=1.0, gumbel_noise_factor=0.2): """Given frame_logits from a per-pixel softmax, generate colors.""" # If we're purely sampling, just sample each pixel. if pure_sampling or temperature == 0.0: return common_layers.sam...
[ "Given", "frame_logits", "from", "a", "per", "-", "pixel", "softmax", "generate", "colors", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/base.py#L40-L59
[ "def", "pixels_from_softmax", "(", "frame_logits", ",", "pure_sampling", "=", "False", ",", "temperature", "=", "1.0", ",", "gumbel_noise_factor", "=", "0.2", ")", ":", "# If we're purely sampling, just sample each pixel.", "if", "pure_sampling", "or", "temperature", "=...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_base
Common HParams for next_frame models.
tensor2tensor/models/video/base.py
def next_frame_base(): """Common HParams for next_frame models.""" hparams = common_hparams.basic_params1() # Loss cutoff. hparams.add_hparam("video_modality_loss_cutoff", 0.01) # Additional resizing the frames before feeding them to model. hparams.add_hparam("preprocess_resize_frames", None) # How many d...
def next_frame_base(): """Common HParams for next_frame models.""" hparams = common_hparams.basic_params1() # Loss cutoff. hparams.add_hparam("video_modality_loss_cutoff", 0.01) # Additional resizing the frames before feeding them to model. hparams.add_hparam("preprocess_resize_frames", None) # How many d...
[ "Common", "HParams", "for", "next_frame", "models", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/base.py#L679-L704
[ "def", "next_frame_base", "(", ")", ":", "hparams", "=", "common_hparams", ".", "basic_params1", "(", ")", "# Loss cutoff.", "hparams", ".", "add_hparam", "(", "\"video_modality_loss_cutoff\"", ",", "0.01", ")", "# Additional resizing the frames before feeding them to model...
272500b6efe353aeb638d2745ed56e519462ca31
train
remove_time_limit_wrapper
Removes top level TimeLimit Wrapper. Removes TimeLimit Wrapper from top level if exists, throws error if any other TimeLimit Wrapper is present in stack. Args: env: environment Returns: the env with removed time limit wrapper.
tensor2tensor/rl/gym_utils.py
def remove_time_limit_wrapper(env): """Removes top level TimeLimit Wrapper. Removes TimeLimit Wrapper from top level if exists, throws error if any other TimeLimit Wrapper is present in stack. Args: env: environment Returns: the env with removed time limit wrapper. """ if isinstance(env, gym.wr...
def remove_time_limit_wrapper(env): """Removes top level TimeLimit Wrapper. Removes TimeLimit Wrapper from top level if exists, throws error if any other TimeLimit Wrapper is present in stack. Args: env: environment Returns: the env with removed time limit wrapper. """ if isinstance(env, gym.wr...
[ "Removes", "top", "level", "TimeLimit", "Wrapper", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/gym_utils.py#L129-L148
[ "def", "remove_time_limit_wrapper", "(", "env", ")", ":", "if", "isinstance", "(", "env", ",", "gym", ".", "wrappers", ".", "TimeLimit", ")", ":", "env", "=", "env", ".", "env", "env_", "=", "env", "while", "isinstance", "(", "env_", ",", "gym", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
gym_env_wrapper
Wraps a gym environment. see make_gym_env for details.
tensor2tensor/rl/gym_utils.py
def gym_env_wrapper(env, rl_env_max_episode_steps, maxskip_env, rendered_env, rendered_env_resize_to, sticky_actions): """Wraps a gym environment. see make_gym_env for details.""" # rl_env_max_episode_steps is None or int. assert ((not rl_env_max_episode_steps) or isinstance(rl_env_m...
def gym_env_wrapper(env, rl_env_max_episode_steps, maxskip_env, rendered_env, rendered_env_resize_to, sticky_actions): """Wraps a gym environment. see make_gym_env for details.""" # rl_env_max_episode_steps is None or int. assert ((not rl_env_max_episode_steps) or isinstance(rl_env_m...
[ "Wraps", "a", "gym", "environment", ".", "see", "make_gym_env", "for", "details", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/gym_utils.py#L151-L176
[ "def", "gym_env_wrapper", "(", "env", ",", "rl_env_max_episode_steps", ",", "maxskip_env", ",", "rendered_env", ",", "rendered_env_resize_to", ",", "sticky_actions", ")", ":", "# rl_env_max_episode_steps is None or int.", "assert", "(", "(", "not", "rl_env_max_episode_steps...
272500b6efe353aeb638d2745ed56e519462ca31
train
make_gym_env
Create a gym env optionally with a time limit and maxskip wrapper. NOTE: The returned env may already be wrapped with TimeLimit! Args: name: `str` - base name of the gym env to make. rl_env_max_episode_steps: `int` or None - Using any value < 0 returns the env as-in, otherwise we impose the requeste...
tensor2tensor/rl/gym_utils.py
def make_gym_env(name, rl_env_max_episode_steps=-1, maxskip_env=False, rendered_env=False, rendered_env_resize_to=None, sticky_actions=False): """Create a gym env optionally with a time limit and maxskip wrapper. NOTE: The returne...
def make_gym_env(name, rl_env_max_episode_steps=-1, maxskip_env=False, rendered_env=False, rendered_env_resize_to=None, sticky_actions=False): """Create a gym env optionally with a time limit and maxskip wrapper. NOTE: The returne...
[ "Create", "a", "gym", "env", "optionally", "with", "a", "time", "limit", "and", "maxskip", "wrapper", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/gym_utils.py#L179-L206
[ "def", "make_gym_env", "(", "name", ",", "rl_env_max_episode_steps", "=", "-", "1", ",", "maxskip_env", "=", "False", ",", "rendered_env", "=", "False", ",", "rendered_env_resize_to", "=", "None", ",", "sticky_actions", "=", "False", ")", ":", "env", "=", "g...
272500b6efe353aeb638d2745ed56e519462ca31
train
register_gym_env
Registers the class in Gym and returns the registered name and the env.
tensor2tensor/rl/gym_utils.py
def register_gym_env(class_entry_point, version="v0", kwargs=None): """Registers the class in Gym and returns the registered name and the env.""" split_on_colon = class_entry_point.split(":") assert len(split_on_colon) == 2 class_name = split_on_colon[1] # We have to add the version to conform to gym's API....
def register_gym_env(class_entry_point, version="v0", kwargs=None): """Registers the class in Gym and returns the registered name and the env.""" split_on_colon = class_entry_point.split(":") assert len(split_on_colon) == 2 class_name = split_on_colon[1] # We have to add the version to conform to gym's API....
[ "Registers", "the", "class", "in", "Gym", "and", "returns", "the", "registered", "name", "and", "the", "env", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/gym_utils.py#L209-L223
[ "def", "register_gym_env", "(", "class_entry_point", ",", "version", "=", "\"v0\"", ",", "kwargs", "=", "None", ")", ":", "split_on_colon", "=", "class_entry_point", ".", "split", "(", "\":\"", ")", "assert", "len", "(", "split_on_colon", ")", "==", "2", "cl...
272500b6efe353aeb638d2745ed56e519462ca31
train
MaxAndSkipEnv.step
Repeat action, sum reward, and max over last observations.
tensor2tensor/rl/gym_utils.py
def step(self, action): """Repeat action, sum reward, and max over last observations.""" total_reward = 0.0 done = None for i in range(self._skip): obs, reward, done, info = self.env.step(action) if i == self._skip - 2: self._obs_buffer[0] = obs if i == self._skip - 1: ...
def step(self, action): """Repeat action, sum reward, and max over last observations.""" total_reward = 0.0 done = None for i in range(self._skip): obs, reward, done, info = self.env.step(action) if i == self._skip - 2: self._obs_buffer[0] = obs if i == self._skip - 1: ...
[ "Repeat", "action", "sum", "reward", "and", "max", "over", "last", "observations", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/gym_utils.py#L62-L77
[ "def", "step", "(", "self", ",", "action", ")", ":", "total_reward", "=", "0.0", "done", "=", "None", "for", "i", "in", "range", "(", "self", ".", "_skip", ")", ":", "obs", ",", "reward", ",", "done", ",", "info", "=", "self", ".", "env", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_handle_errors
Log out and possibly reraise errors during import.
tensor2tensor/data_generators/all_problems.py
def _handle_errors(errors): """Log out and possibly reraise errors during import.""" if not errors: return log_all = True # pylint: disable=unused-variable err_msg = "T2T: skipped importing {num_missing} data_generators modules." print(err_msg.format(num_missing=len(errors))) for module, err in errors:...
def _handle_errors(errors): """Log out and possibly reraise errors during import.""" if not errors: return log_all = True # pylint: disable=unused-variable err_msg = "T2T: skipped importing {num_missing} data_generators modules." print(err_msg.format(num_missing=len(errors))) for module, err in errors:...
[ "Log", "out", "and", "possibly", "reraise", "errors", "during", "import", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/all_problems.py#L113-L126
[ "def", "_handle_errors", "(", "errors", ")", ":", "if", "not", "errors", ":", "return", "log_all", "=", "True", "# pylint: disable=unused-variable", "err_msg", "=", "\"T2T: skipped importing {num_missing} data_generators modules.\"", "print", "(", "err_msg", ".", "format"...
272500b6efe353aeb638d2745ed56e519462ca31
train
create_hparams
Create HParams with data_dir and problem hparams, if kwargs provided.
tensor2tensor/utils/hparams_lib.py
def create_hparams(hparams_set, hparams_overrides_str="", data_dir=None, problem_name=None, hparams_path=None): """Create HParams with data_dir and problem hparams, if kwargs provided.""" hparams = registry.hparams(hparams_set) if hparams...
def create_hparams(hparams_set, hparams_overrides_str="", data_dir=None, problem_name=None, hparams_path=None): """Create HParams with data_dir and problem hparams, if kwargs provided.""" hparams = registry.hparams(hparams_set) if hparams...
[ "Create", "HParams", "with", "data_dir", "and", "problem", "hparams", "if", "kwargs", "provided", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/hparams_lib.py#L42-L59
[ "def", "create_hparams", "(", "hparams_set", ",", "hparams_overrides_str", "=", "\"\"", ",", "data_dir", "=", "None", ",", "problem_name", "=", "None", ",", "hparams_path", "=", "None", ")", ":", "hparams", "=", "registry", ".", "hparams", "(", "hparams_set", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
create_hparams_from_json
Loading hparams from json; can also start from hparams if specified.
tensor2tensor/utils/hparams_lib.py
def create_hparams_from_json(json_path, hparams=None): """Loading hparams from json; can also start from hparams if specified.""" tf.logging.info("Loading hparams from existing json %s" % json_path) with tf.gfile.Open(json_path, "r") as f: hparams_values = json.load(f) # Prevent certain keys from overwrit...
def create_hparams_from_json(json_path, hparams=None): """Loading hparams from json; can also start from hparams if specified.""" tf.logging.info("Loading hparams from existing json %s" % json_path) with tf.gfile.Open(json_path, "r") as f: hparams_values = json.load(f) # Prevent certain keys from overwrit...
[ "Loading", "hparams", "from", "json", ";", "can", "also", "start", "from", "hparams", "if", "specified", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/hparams_lib.py#L62-L90
[ "def", "create_hparams_from_json", "(", "json_path", ",", "hparams", "=", "None", ")", ":", "tf", ".", "logging", ".", "info", "(", "\"Loading hparams from existing json %s\"", "%", "json_path", ")", "with", "tf", ".", "gfile", ".", "Open", "(", "json_path", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
add_problem_hparams
Add problem hparams for the problems.
tensor2tensor/utils/hparams_lib.py
def add_problem_hparams(hparams, problem_name_or_instance): """Add problem hparams for the problems.""" if isinstance(problem_name_or_instance, problem_lib.Problem): problem = problem_name_or_instance else: problem = registry.problem(problem_name_or_instance) p_hparams = problem.get_hparams(hparams) h...
def add_problem_hparams(hparams, problem_name_or_instance): """Add problem hparams for the problems.""" if isinstance(problem_name_or_instance, problem_lib.Problem): problem = problem_name_or_instance else: problem = registry.problem(problem_name_or_instance) p_hparams = problem.get_hparams(hparams) h...
[ "Add", "problem", "hparams", "for", "the", "problems", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/hparams_lib.py#L93-L101
[ "def", "add_problem_hparams", "(", "hparams", ",", "problem_name_or_instance", ")", ":", "if", "isinstance", "(", "problem_name_or_instance", ",", "problem_lib", ".", "Problem", ")", ":", "problem", "=", "problem_name_or_instance", "else", ":", "problem", "=", "regi...
272500b6efe353aeb638d2745ed56e519462ca31
train
load_examples
Loads exampls from the tsv file. Args: tmp_dir: temp directory. prop_train: proportion of the train data prop_val: proportion of the validation data Returns: All examples in the dataset pluse train, test, and development splits.
tensor2tensor/data_generators/subject_verb_agreement.py
def load_examples(tmp_dir, prop_train=0.09, prop_val=0.01): """Loads exampls from the tsv file. Args: tmp_dir: temp directory. prop_train: proportion of the train data prop_val: proportion of the validation data Returns: All examples in the dataset pluse train, test, and development splits. "...
def load_examples(tmp_dir, prop_train=0.09, prop_val=0.01): """Loads exampls from the tsv file. Args: tmp_dir: temp directory. prop_train: proportion of the train data prop_val: proportion of the validation data Returns: All examples in the dataset pluse train, test, and development splits. "...
[ "Loads", "exampls", "from", "the", "tsv", "file", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/subject_verb_agreement.py#L77-L111
[ "def", "load_examples", "(", "tmp_dir", ",", "prop_train", "=", "0.09", ",", "prop_val", "=", "0.01", ")", ":", "infile", "=", "generator_utils", ".", "maybe_download", "(", "tmp_dir", ",", "_TAR", ",", "_URL", ")", "tf", ".", "logging", ".", "info", "("...
272500b6efe353aeb638d2745ed56e519462ca31
train
_get_cifar
Download and extract CIFAR to directory unless it is there.
tensor2tensor/data_generators/cifar.py
def _get_cifar(directory, url): """Download and extract CIFAR to directory unless it is there.""" filename = os.path.basename(url) path = generator_utils.maybe_download(directory, filename, url) tarfile.open(path, "r:gz").extractall(directory)
def _get_cifar(directory, url): """Download and extract CIFAR to directory unless it is there.""" filename = os.path.basename(url) path = generator_utils.maybe_download(directory, filename, url) tarfile.open(path, "r:gz").extractall(directory)
[ "Download", "and", "extract", "CIFAR", "to", "directory", "unless", "it", "is", "there", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/cifar.py#L55-L59
[ "def", "_get_cifar", "(", "directory", ",", "url", ")", ":", "filename", "=", "os", ".", "path", ".", "basename", "(", "url", ")", "path", "=", "generator_utils", ".", "maybe_download", "(", "directory", ",", "filename", ",", "url", ")", "tarfile", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
cifar_generator
Image generator for CIFAR-10 and 100. Args: cifar_version: string; one of "cifar10" or "cifar100" tmp_dir: path to temporary storage directory. training: a Boolean; if true, we use the train set, otherwise the test set. how_many: how many images and labels to generate. start_from: from which imag...
tensor2tensor/data_generators/cifar.py
def cifar_generator(cifar_version, tmp_dir, training, how_many, start_from=0): """Image generator for CIFAR-10 and 100. Args: cifar_version: string; one of "cifar10" or "cifar100" tmp_dir: path to temporary storage directory. training: a Boolean; if true, we use the train set, otherwise the test set. ...
def cifar_generator(cifar_version, tmp_dir, training, how_many, start_from=0): """Image generator for CIFAR-10 and 100. Args: cifar_version: string; one of "cifar10" or "cifar100" tmp_dir: path to temporary storage directory. training: a Boolean; if true, we use the train set, otherwise the test set. ...
[ "Image", "generator", "for", "CIFAR", "-", "10", "and", "100", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/cifar.py#L62-L113
[ "def", "cifar_generator", "(", "cifar_version", ",", "tmp_dir", ",", "training", ",", "how_many", ",", "start_from", "=", "0", ")", ":", "if", "cifar_version", "==", "\"cifar10\"", ":", "url", "=", "_CIFAR10_URL", "train_files", "=", "_CIFAR10_TRAIN_FILES", "tes...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_ppo_base
HParams for PPO base.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_ppo_base(): """HParams for PPO base.""" hparams = _rlmb_base() ppo_params = dict( base_algo="ppo", base_algo_params="ppo_original_params", # Number of real environments to train on simultaneously. real_batch_size=1, # Number of simulated environments to train on simultaneous...
def rlmb_ppo_base(): """HParams for PPO base.""" hparams = _rlmb_base() ppo_params = dict( base_algo="ppo", base_algo_params="ppo_original_params", # Number of real environments to train on simultaneously. real_batch_size=1, # Number of simulated environments to train on simultaneous...
[ "HParams", "for", "PPO", "base", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L138-L171
[ "def", "rlmb_ppo_base", "(", ")", ":", "hparams", "=", "_rlmb_base", "(", ")", "ppo_params", "=", "dict", "(", "base_algo", "=", "\"ppo\"", ",", "base_algo_params", "=", "\"ppo_original_params\"", ",", "# Number of real environments to train on simultaneously.", "real_b...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_dqn_base
rlmb_dqn_base params.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_dqn_base(): """rlmb_dqn_base params.""" hparams = _rlmb_base() simulated_rollout_length = 10 dqn_params = dict( base_algo="dqn", base_algo_params="dqn_original_params", real_batch_size=1, simulated_batch_size=16, dqn_agent_generates_trainable_dones=False, eval_batch_...
def rlmb_dqn_base(): """rlmb_dqn_base params.""" hparams = _rlmb_base() simulated_rollout_length = 10 dqn_params = dict( base_algo="dqn", base_algo_params="dqn_original_params", real_batch_size=1, simulated_batch_size=16, dqn_agent_generates_trainable_dones=False, eval_batch_...
[ "rlmb_dqn_base", "params", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L189-L210
[ "def", "rlmb_dqn_base", "(", ")", ":", "hparams", "=", "_rlmb_base", "(", ")", "simulated_rollout_length", "=", "10", "dqn_params", "=", "dict", "(", "base_algo", "=", "\"dqn\"", ",", "base_algo_params", "=", "\"dqn_original_params\"", ",", "real_batch_size", "=",...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_ppo_quick
Base setting but quicker with only 2 epochs.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_ppo_quick(): """Base setting but quicker with only 2 epochs.""" hparams = rlmb_ppo_base() hparams.epochs = 2 hparams.model_train_steps = 25000 hparams.ppo_epochs_num = 700 hparams.ppo_epoch_length = 50 return hparams
def rlmb_ppo_quick(): """Base setting but quicker with only 2 epochs.""" hparams = rlmb_ppo_base() hparams.epochs = 2 hparams.model_train_steps = 25000 hparams.ppo_epochs_num = 700 hparams.ppo_epoch_length = 50 return hparams
[ "Base", "setting", "but", "quicker", "with", "only", "2", "epochs", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L234-L241
[ "def", "rlmb_ppo_quick", "(", ")", ":", "hparams", "=", "rlmb_ppo_base", "(", ")", "hparams", ".", "epochs", "=", "2", "hparams", ".", "model_train_steps", "=", "25000", "hparams", ".", "ppo_epochs_num", "=", "700", "hparams", ".", "ppo_epoch_length", "=", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_base_stochastic
Base setting with a stochastic next-frame model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_base_stochastic(): """Base setting with a stochastic next-frame model.""" hparams = rlmb_base() hparams.initial_epoch_train_steps_multiplier = 5 hparams.generative_model = "next_frame_basic_stochastic" hparams.generative_model_params = "next_frame_basic_stochastic" return hparams
def rlmb_base_stochastic(): """Base setting with a stochastic next-frame model.""" hparams = rlmb_base() hparams.initial_epoch_train_steps_multiplier = 5 hparams.generative_model = "next_frame_basic_stochastic" hparams.generative_model_params = "next_frame_basic_stochastic" return hparams
[ "Base", "setting", "with", "a", "stochastic", "next", "-", "frame", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L294-L300
[ "def", "rlmb_base_stochastic", "(", ")", ":", "hparams", "=", "rlmb_base", "(", ")", "hparams", ".", "initial_epoch_train_steps_multiplier", "=", "5", "hparams", ".", "generative_model", "=", "\"next_frame_basic_stochastic\"", "hparams", ".", "generative_model_params", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_base_stochastic_discrete
Base setting with stochastic discrete model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_base_stochastic_discrete(): """Base setting with stochastic discrete model.""" hparams = rlmb_base() hparams.learning_rate_bump = 1.0 hparams.grayscale = False hparams.generative_model = "next_frame_basic_stochastic_discrete" hparams.generative_model_params = "next_frame_basic_stochastic_discrete" ...
def rlmb_base_stochastic_discrete(): """Base setting with stochastic discrete model.""" hparams = rlmb_base() hparams.learning_rate_bump = 1.0 hparams.grayscale = False hparams.generative_model = "next_frame_basic_stochastic_discrete" hparams.generative_model_params = "next_frame_basic_stochastic_discrete" ...
[ "Base", "setting", "with", "stochastic", "discrete", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L313-L324
[ "def", "rlmb_base_stochastic_discrete", "(", ")", ":", "hparams", "=", "rlmb_base", "(", ")", "hparams", ".", "learning_rate_bump", "=", "1.0", "hparams", ".", "grayscale", "=", "False", "hparams", ".", "generative_model", "=", "\"next_frame_basic_stochastic_discrete\...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_long_stochastic_discrete_simulation_deterministic_starts
Long setting with stochastic discrete model & deterministic sim starts.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_long_stochastic_discrete_simulation_deterministic_starts(): """Long setting with stochastic discrete model & deterministic sim starts.""" hparams = rlmb_base_stochastic_discrete() hparams.generative_model_params = "next_frame_basic_stochastic_discrete_long" hparams.ppo_epochs_num = 1000 hparams.simul...
def rlmb_long_stochastic_discrete_simulation_deterministic_starts(): """Long setting with stochastic discrete model & deterministic sim starts.""" hparams = rlmb_base_stochastic_discrete() hparams.generative_model_params = "next_frame_basic_stochastic_discrete_long" hparams.ppo_epochs_num = 1000 hparams.simul...
[ "Long", "setting", "with", "stochastic", "discrete", "model", "&", "deterministic", "sim", "starts", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L403-L409
[ "def", "rlmb_long_stochastic_discrete_simulation_deterministic_starts", "(", ")", ":", "hparams", "=", "rlmb_base_stochastic_discrete", "(", ")", "hparams", ".", "generative_model_params", "=", "\"next_frame_basic_stochastic_discrete_long\"", "hparams", ".", "ppo_epochs_num", "="...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_long_stochastic_discrete_100steps
Long setting with stochastic discrete model, changed ppo steps.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_long_stochastic_discrete_100steps(): """Long setting with stochastic discrete model, changed ppo steps.""" hparams = rlmb_long_stochastic_discrete() hparams.ppo_epoch_length = 100 hparams.simulated_rollout_length = 100 hparams.simulated_batch_size = 8 return hparams
def rlmb_long_stochastic_discrete_100steps(): """Long setting with stochastic discrete model, changed ppo steps.""" hparams = rlmb_long_stochastic_discrete() hparams.ppo_epoch_length = 100 hparams.simulated_rollout_length = 100 hparams.simulated_batch_size = 8 return hparams
[ "Long", "setting", "with", "stochastic", "discrete", "model", "changed", "ppo", "steps", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L413-L419
[ "def", "rlmb_long_stochastic_discrete_100steps", "(", ")", ":", "hparams", "=", "rlmb_long_stochastic_discrete", "(", ")", "hparams", ".", "ppo_epoch_length", "=", "100", "hparams", ".", "simulated_rollout_length", "=", "100", "hparams", ".", "simulated_batch_size", "="...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_long_stochastic_discrete_25steps
Long setting with stochastic discrete model, changed ppo steps.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_long_stochastic_discrete_25steps(): """Long setting with stochastic discrete model, changed ppo steps.""" hparams = rlmb_long_stochastic_discrete() hparams.ppo_epoch_length = 25 hparams.simulated_rollout_length = 25 hparams.simulated_batch_size = 32 return hparams
def rlmb_long_stochastic_discrete_25steps(): """Long setting with stochastic discrete model, changed ppo steps.""" hparams = rlmb_long_stochastic_discrete() hparams.ppo_epoch_length = 25 hparams.simulated_rollout_length = 25 hparams.simulated_batch_size = 32 return hparams
[ "Long", "setting", "with", "stochastic", "discrete", "model", "changed", "ppo", "steps", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L423-L429
[ "def", "rlmb_long_stochastic_discrete_25steps", "(", ")", ":", "hparams", "=", "rlmb_long_stochastic_discrete", "(", ")", "hparams", ".", "ppo_epoch_length", "=", "25", "hparams", ".", "simulated_rollout_length", "=", "25", "hparams", ".", "simulated_batch_size", "=", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_base_stochastic_discrete_noresize
Base setting with stochastic discrete model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_base_stochastic_discrete_noresize(): """Base setting with stochastic discrete model.""" hparams = rlmb_base() hparams.generative_model = "next_frame_basic_stochastic_discrete" hparams.generative_model_params = "next_frame_basic_stochastic_discrete" hparams.resize_height_factor = 1 hparams.resize_wi...
def rlmb_base_stochastic_discrete_noresize(): """Base setting with stochastic discrete model.""" hparams = rlmb_base() hparams.generative_model = "next_frame_basic_stochastic_discrete" hparams.generative_model_params = "next_frame_basic_stochastic_discrete" hparams.resize_height_factor = 1 hparams.resize_wi...
[ "Base", "setting", "with", "stochastic", "discrete", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L476-L483
[ "def", "rlmb_base_stochastic_discrete_noresize", "(", ")", ":", "hparams", "=", "rlmb_base", "(", ")", "hparams", ".", "generative_model", "=", "\"next_frame_basic_stochastic_discrete\"", "hparams", ".", "generative_model_params", "=", "\"next_frame_basic_stochastic_discrete\""...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_base_sv2p
Base setting with sv2p as world model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_base_sv2p(): """Base setting with sv2p as world model.""" hparams = rlmb_base() hparams.learning_rate_bump = 1.0 hparams.generative_model = "next_frame_sv2p" hparams.generative_model_params = "next_frame_sv2p_atari" return hparams
def rlmb_base_sv2p(): """Base setting with sv2p as world model.""" hparams = rlmb_base() hparams.learning_rate_bump = 1.0 hparams.generative_model = "next_frame_sv2p" hparams.generative_model_params = "next_frame_sv2p_atari" return hparams
[ "Base", "setting", "with", "sv2p", "as", "world", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L487-L493
[ "def", "rlmb_base_sv2p", "(", ")", ":", "hparams", "=", "rlmb_base", "(", ")", "hparams", ".", "learning_rate_bump", "=", "1.0", "hparams", ".", "generative_model", "=", "\"next_frame_sv2p\"", "hparams", ".", "generative_model_params", "=", "\"next_frame_sv2p_atari\""...
272500b6efe353aeb638d2745ed56e519462ca31
train
_rlmb_tiny_overrides
Parameters to override for tiny setting excluding agent-related hparams.
tensor2tensor/rl/trainer_model_based_params.py
def _rlmb_tiny_overrides(): """Parameters to override for tiny setting excluding agent-related hparams.""" return dict( epochs=1, num_real_env_frames=128, model_train_steps=2, max_num_noops=1, eval_max_num_noops=1, generative_model_params="next_frame_tiny", stop_loop_early=...
def _rlmb_tiny_overrides(): """Parameters to override for tiny setting excluding agent-related hparams.""" return dict( epochs=1, num_real_env_frames=128, model_train_steps=2, max_num_noops=1, eval_max_num_noops=1, generative_model_params="next_frame_tiny", stop_loop_early=...
[ "Parameters", "to", "override", "for", "tiny", "setting", "excluding", "agent", "-", "related", "hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L537-L554
[ "def", "_rlmb_tiny_overrides", "(", ")", ":", "return", "dict", "(", "epochs", "=", "1", ",", "num_real_env_frames", "=", "128", ",", "model_train_steps", "=", "2", ",", "max_num_noops", "=", "1", ",", "eval_max_num_noops", "=", "1", ",", "generative_model_par...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_ppo_tiny
Tiny set for testing.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_ppo_tiny(): """Tiny set for testing.""" hparams = rlmb_ppo_base() hparams = hparams.override_from_dict(_rlmb_tiny_overrides()) update_hparams(hparams, dict( ppo_epochs_num=2, ppo_epoch_length=10, real_ppo_epoch_length=36, real_ppo_effective_num_agents=2, real_batch_size=1,...
def rlmb_ppo_tiny(): """Tiny set for testing.""" hparams = rlmb_ppo_base() hparams = hparams.override_from_dict(_rlmb_tiny_overrides()) update_hparams(hparams, dict( ppo_epochs_num=2, ppo_epoch_length=10, real_ppo_epoch_length=36, real_ppo_effective_num_agents=2, real_batch_size=1,...
[ "Tiny", "set", "for", "testing", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L558-L570
[ "def", "rlmb_ppo_tiny", "(", ")", ":", "hparams", "=", "rlmb_ppo_base", "(", ")", "hparams", "=", "hparams", ".", "override_from_dict", "(", "_rlmb_tiny_overrides", "(", ")", ")", "update_hparams", "(", "hparams", ",", "dict", "(", "ppo_epochs_num", "=", "2", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_dqn_tiny
Tiny set for testing.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_dqn_tiny(): """Tiny set for testing.""" hparams = rlmb_dqn_base() hparams = hparams.override_from_dict(_rlmb_tiny_overrides()) update_hparams(hparams, dict( simulated_rollout_length=2, dqn_time_limit=2, dqn_num_frames=128, real_dqn_replay_buffer_replay_capacity=100, dqn_re...
def rlmb_dqn_tiny(): """Tiny set for testing.""" hparams = rlmb_dqn_base() hparams = hparams.override_from_dict(_rlmb_tiny_overrides()) update_hparams(hparams, dict( simulated_rollout_length=2, dqn_time_limit=2, dqn_num_frames=128, real_dqn_replay_buffer_replay_capacity=100, dqn_re...
[ "Tiny", "set", "for", "testing", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L579-L592
[ "def", "rlmb_dqn_tiny", "(", ")", ":", "hparams", "=", "rlmb_dqn_base", "(", ")", "hparams", "=", "hparams", ".", "override_from_dict", "(", "_rlmb_tiny_overrides", "(", ")", ")", "update_hparams", "(", "hparams", ",", "dict", "(", "simulated_rollout_length", "=...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_tiny_stochastic
Tiny setting with a stochastic next-frame model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_tiny_stochastic(): """Tiny setting with a stochastic next-frame model.""" hparams = rlmb_ppo_tiny() hparams.epochs = 1 # Too slow with 2 for regular runs. hparams.generative_model = "next_frame_basic_stochastic" hparams.generative_model_params = "next_frame_basic_stochastic" return hparams
def rlmb_tiny_stochastic(): """Tiny setting with a stochastic next-frame model.""" hparams = rlmb_ppo_tiny() hparams.epochs = 1 # Too slow with 2 for regular runs. hparams.generative_model = "next_frame_basic_stochastic" hparams.generative_model_params = "next_frame_basic_stochastic" return hparams
[ "Tiny", "setting", "with", "a", "stochastic", "next", "-", "frame", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L596-L602
[ "def", "rlmb_tiny_stochastic", "(", ")", ":", "hparams", "=", "rlmb_ppo_tiny", "(", ")", "hparams", ".", "epochs", "=", "1", "# Too slow with 2 for regular runs.", "hparams", ".", "generative_model", "=", "\"next_frame_basic_stochastic\"", "hparams", ".", "generative_mo...
272500b6efe353aeb638d2745ed56e519462ca31