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
rlmb_tiny_recurrent
Tiny setting with a recurrent next-frame model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_tiny_recurrent(): """Tiny setting with a recurrent next-frame model.""" hparams = rlmb_ppo_tiny() hparams.epochs = 1 # Too slow with 2 for regular runs. hparams.generative_model = "next_frame_basic_recurrent" hparams.generative_model_params = "next_frame_basic_recurrent" return hparams
def rlmb_tiny_recurrent(): """Tiny setting with a recurrent next-frame model.""" hparams = rlmb_ppo_tiny() hparams.epochs = 1 # Too slow with 2 for regular runs. hparams.generative_model = "next_frame_basic_recurrent" hparams.generative_model_params = "next_frame_basic_recurrent" return hparams
[ "Tiny", "setting", "with", "a", "recurrent", "next", "-", "frame", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L606-L612
[ "def", "rlmb_tiny_recurrent", "(", ")", ":", "hparams", "=", "rlmb_ppo_tiny", "(", ")", "hparams", ".", "epochs", "=", "1", "# Too slow with 2 for regular runs.", "hparams", ".", "generative_model", "=", "\"next_frame_basic_recurrent\"", "hparams", ".", "generative_mode...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_tiny_sv2p
Tiny setting with a tiny sv2p model.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_tiny_sv2p(): """Tiny setting with a tiny sv2p model.""" hparams = rlmb_ppo_tiny() hparams.generative_model = "next_frame_sv2p" hparams.generative_model_params = "next_frame_sv2p_tiny" hparams.grayscale = False return hparams
def rlmb_tiny_sv2p(): """Tiny setting with a tiny sv2p model.""" hparams = rlmb_ppo_tiny() hparams.generative_model = "next_frame_sv2p" hparams.generative_model_params = "next_frame_sv2p_tiny" hparams.grayscale = False return hparams
[ "Tiny", "setting", "with", "a", "tiny", "sv2p", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L616-L622
[ "def", "rlmb_tiny_sv2p", "(", ")", ":", "hparams", "=", "rlmb_ppo_tiny", "(", ")", "hparams", ".", "generative_model", "=", "\"next_frame_sv2p\"", "hparams", ".", "generative_model_params", "=", "\"next_frame_sv2p_tiny\"", "hparams", ".", "grayscale", "=", "False", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
rlmb_grid
Grid over games and frames, and 5 runs each for variance.
tensor2tensor/rl/trainer_model_based_params.py
def rlmb_grid(rhp): """Grid over games and frames, and 5 runs each for variance.""" rhp.set_categorical("loop.game", ["breakout", "pong", "freeway"]) base = 100000 medium = base // 2 small = medium // 2 rhp.set_discrete("loop.num_real_env_frames", [base, medium, small]) # Dummy parameter to get 5 runs fo...
def rlmb_grid(rhp): """Grid over games and frames, and 5 runs each for variance.""" rhp.set_categorical("loop.game", ["breakout", "pong", "freeway"]) base = 100000 medium = base // 2 small = medium // 2 rhp.set_discrete("loop.num_real_env_frames", [base, medium, small]) # Dummy parameter to get 5 runs fo...
[ "Grid", "over", "games", "and", "frames", "and", "5", "runs", "each", "for", "variance", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L638-L647
[ "def", "rlmb_grid", "(", "rhp", ")", ":", "rhp", ".", "set_categorical", "(", "\"loop.game\"", ",", "[", "\"breakout\"", ",", "\"pong\"", ",", "\"freeway\"", "]", ")", "base", "=", "100000", "medium", "=", "base", "//", "2", "small", "=", "medium", "//",...
272500b6efe353aeb638d2745ed56e519462ca31
train
merge_unscoped_hparams
Merge multiple HParams into one with scopes.
tensor2tensor/rl/trainer_model_based_params.py
def merge_unscoped_hparams(scopes_and_hparams): """Merge multiple HParams into one with scopes.""" merged_values = {} for (scope, hparams) in scopes_and_hparams: for key, value in six.iteritems(hparams.values()): scoped_key = "%s.%s" % (scope, key) merged_values[scoped_key] = value return hpara...
def merge_unscoped_hparams(scopes_and_hparams): """Merge multiple HParams into one with scopes.""" merged_values = {} for (scope, hparams) in scopes_and_hparams: for key, value in six.iteritems(hparams.values()): scoped_key = "%s.%s" % (scope, key) merged_values[scoped_key] = value return hpara...
[ "Merge", "multiple", "HParams", "into", "one", "with", "scopes", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L855-L863
[ "def", "merge_unscoped_hparams", "(", "scopes_and_hparams", ")", ":", "merged_values", "=", "{", "}", "for", "(", "scope", ",", "hparams", ")", "in", "scopes_and_hparams", ":", "for", "key", ",", "value", "in", "six", ".", "iteritems", "(", "hparams", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
split_scoped_hparams
Split single HParams with scoped keys into multiple.
tensor2tensor/rl/trainer_model_based_params.py
def split_scoped_hparams(scopes, merged_hparams): """Split single HParams with scoped keys into multiple.""" split_values = {scope: {} for scope in scopes} merged_values = merged_hparams.values() for scoped_key, value in six.iteritems(merged_values): scope = scoped_key.split(".")[0] key = scoped_key[len...
def split_scoped_hparams(scopes, merged_hparams): """Split single HParams with scoped keys into multiple.""" split_values = {scope: {} for scope in scopes} merged_values = merged_hparams.values() for scoped_key, value in six.iteritems(merged_values): scope = scoped_key.split(".")[0] key = scoped_key[len...
[ "Split", "single", "HParams", "with", "scoped", "keys", "into", "multiple", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L866-L877
[ "def", "split_scoped_hparams", "(", "scopes", ",", "merged_hparams", ")", ":", "split_values", "=", "{", "scope", ":", "{", "}", "for", "scope", "in", "scopes", "}", "merged_values", "=", "merged_hparams", ".", "values", "(", ")", "for", "scoped_key", ",", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
training_loop_hparams_from_scoped_overrides
Create HParams suitable for training loop from scoped HParams. Args: scoped_overrides: HParams, with keys all scoped by one of HP_SCOPES. These parameters are overrides for the base HParams created by create_loop_hparams. trial_id: str, trial identifier. This is used to register unique HParams ...
tensor2tensor/rl/trainer_model_based_params.py
def training_loop_hparams_from_scoped_overrides(scoped_overrides, trial_id): """Create HParams suitable for training loop from scoped HParams. Args: scoped_overrides: HParams, with keys all scoped by one of HP_SCOPES. These parameters are overrides for the base HParams created by create_loop_hparam...
def training_loop_hparams_from_scoped_overrides(scoped_overrides, trial_id): """Create HParams suitable for training loop from scoped HParams. Args: scoped_overrides: HParams, with keys all scoped by one of HP_SCOPES. These parameters are overrides for the base HParams created by create_loop_hparam...
[ "Create", "HParams", "suitable", "for", "training", "loop", "from", "scoped", "HParams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/trainer_model_based_params.py#L880-L923
[ "def", "training_loop_hparams_from_scoped_overrides", "(", "scoped_overrides", ",", "trial_id", ")", ":", "trial_hp_overrides", "=", "scoped_overrides", ".", "values", "(", ")", "# Create loop, model, and ppo base HParams", "loop_hp", "=", "create_loop_hparams", "(", ")", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
PlayerEnv.get_keys_to_action
Get mapping from keyboard keys to actions. Required by gym.utils.play in environment or top level wrapper. Returns: { Unicode code point for keyboard key: action (formatted for step()), ... }
tensor2tensor/rl/player.py
def get_keys_to_action(self): """Get mapping from keyboard keys to actions. Required by gym.utils.play in environment or top level wrapper. Returns: { Unicode code point for keyboard key: action (formatted for step()), ... } """ # Based on gym AtariEnv.get_keys_to_actio...
def get_keys_to_action(self): """Get mapping from keyboard keys to actions. Required by gym.utils.play in environment or top level wrapper. Returns: { Unicode code point for keyboard key: action (formatted for step()), ... } """ # Based on gym AtariEnv.get_keys_to_actio...
[ "Get", "mapping", "from", "keyboard", "keys", "to", "actions", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L157-L191
[ "def", "get_keys_to_action", "(", "self", ")", ":", "# Based on gym AtariEnv.get_keys_to_action()", "keyword_to_key", "=", "{", "\"UP\"", ":", "ord", "(", "\"w\"", ")", ",", "\"DOWN\"", ":", "ord", "(", "\"s\"", ")", ",", "\"LEFT\"", ":", "ord", "(", "\"a\"", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
PlayerEnv.step
Pass action to underlying environment(s) or perform special action.
tensor2tensor/rl/player.py
def step(self, action): """Pass action to underlying environment(s) or perform special action.""" # Special codes if action in self._player_actions(): envs_step_tuples = self._player_actions()[action]() elif self._wait and action == self.name_to_action_num["NOOP"]: # Ignore no-op, do not pas...
def step(self, action): """Pass action to underlying environment(s) or perform special action.""" # Special codes if action in self._player_actions(): envs_step_tuples = self._player_actions()[action]() elif self._wait and action == self.name_to_action_num["NOOP"]: # Ignore no-op, do not pas...
[ "Pass", "action", "to", "underlying", "environment", "(", "s", ")", "or", "perform", "special", "action", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L203-L221
[ "def", "step", "(", "self", ",", "action", ")", ":", "# Special codes", "if", "action", "in", "self", ".", "_player_actions", "(", ")", ":", "envs_step_tuples", "=", "self", ".", "_player_actions", "(", ")", "[", "action", "]", "(", ")", "elif", "self", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
PlayerEnv._augment_observation
Expand observation array with additional information header (top rows). Args: ob: observation reward: reward to be included in header. cumulative_reward: total cumulated reward to be included in header. Returns: Expanded observation array.
tensor2tensor/rl/player.py
def _augment_observation(self, ob, reward, cumulative_reward): """"Expand observation array with additional information header (top rows). Args: ob: observation reward: reward to be included in header. cumulative_reward: total cumulated reward to be included in header. Returns: Exp...
def _augment_observation(self, ob, reward, cumulative_reward): """"Expand observation array with additional information header (top rows). Args: ob: observation reward: reward to be included in header. cumulative_reward: total cumulated reward to be included in header. Returns: Exp...
[ "Expand", "observation", "array", "with", "additional", "information", "header", "(", "top", "rows", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L223-L254
[ "def", "_augment_observation", "(", "self", ",", "ob", ",", "reward", ",", "cumulative_reward", ")", ":", "img", "=", "PIL_Image", "(", ")", ".", "new", "(", "\"RGB\"", ",", "(", "ob", ".", "shape", "[", "1", "]", ",", "self", ".", "HEADER_HEIGHT", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
SimAndRealEnvPlayer._player_step_tuple
Construct observation, return usual step tuple. Args: envs_step_tuples: tuples. Returns: Step tuple: ob, reward, done, info ob: concatenated images [simulated observation, real observation, difference], with additional informations in header. reward: real environment rewa...
tensor2tensor/rl/player.py
def _player_step_tuple(self, envs_step_tuples): """Construct observation, return usual step tuple. Args: envs_step_tuples: tuples. Returns: Step tuple: ob, reward, done, info ob: concatenated images [simulated observation, real observation, difference], with additional inform...
def _player_step_tuple(self, envs_step_tuples): """Construct observation, return usual step tuple. Args: envs_step_tuples: tuples. Returns: Step tuple: ob, reward, done, info ob: concatenated images [simulated observation, real observation, difference], with additional inform...
[ "Construct", "observation", "return", "usual", "step", "tuple", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L345-L373
[ "def", "_player_step_tuple", "(", "self", ",", "envs_step_tuples", ")", ":", "ob_real", ",", "reward_real", ",", "_", ",", "_", "=", "envs_step_tuples", "[", "\"real_env\"", "]", "ob_sim", ",", "reward_sim", ",", "_", ",", "_", "=", "envs_step_tuples", "[", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
SimAndRealEnvPlayer.reset
Reset simulated and real environments.
tensor2tensor/rl/player.py
def reset(self): """Reset simulated and real environments.""" self._frame_counter = 0 ob_real = self.real_env.reset() # Initialize simulated environment with frames from real one. self.sim_env.add_to_initial_stack(ob_real) for _ in range(3): ob_real, _, _, _ = self.real_env.step(self.name_...
def reset(self): """Reset simulated and real environments.""" self._frame_counter = 0 ob_real = self.real_env.reset() # Initialize simulated environment with frames from real one. self.sim_env.add_to_initial_stack(ob_real) for _ in range(3): ob_real, _, _, _ = self.real_env.step(self.name_...
[ "Reset", "simulated", "and", "real", "environments", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L375-L390
[ "def", "reset", "(", "self", ")", ":", "self", ".", "_frame_counter", "=", "0", "ob_real", "=", "self", ".", "real_env", ".", "reset", "(", ")", "# Initialize simulated environment with frames from real one.", "self", ".", "sim_env", ".", "add_to_initial_stack", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
SimAndRealEnvPlayer._step_envs
Perform step(action) on environments and update initial_frame_stack.
tensor2tensor/rl/player.py
def _step_envs(self, action): """Perform step(action) on environments and update initial_frame_stack.""" self._frame_counter += 1 real_env_step_tuple = self.real_env.step(action) sim_env_step_tuple = self.sim_env.step(action) self.sim_env.add_to_initial_stack(real_env_step_tuple[0]) return self....
def _step_envs(self, action): """Perform step(action) on environments and update initial_frame_stack.""" self._frame_counter += 1 real_env_step_tuple = self.real_env.step(action) sim_env_step_tuple = self.sim_env.step(action) self.sim_env.add_to_initial_stack(real_env_step_tuple[0]) return self....
[ "Perform", "step", "(", "action", ")", "on", "environments", "and", "update", "initial_frame_stack", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L400-L406
[ "def", "_step_envs", "(", "self", ",", "action", ")", ":", "self", ".", "_frame_counter", "+=", "1", "real_env_step_tuple", "=", "self", ".", "real_env", ".", "step", "(", "action", ")", "sim_env_step_tuple", "=", "self", ".", "sim_env", ".", "step", "(", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
SingleEnvPlayer._player_step_tuple
Augment observation, return usual step tuple.
tensor2tensor/rl/player.py
def _player_step_tuple(self, envs_step_tuples): """Augment observation, return usual step tuple.""" ob, reward, done, info = envs_step_tuples["env"] ob = self._augment_observation(ob, reward, self.cumulative_reward) return ob, reward, done, info
def _player_step_tuple(self, envs_step_tuples): """Augment observation, return usual step tuple.""" ob, reward, done, info = envs_step_tuples["env"] ob = self._augment_observation(ob, reward, self.cumulative_reward) return ob, reward, done, info
[ "Augment", "observation", "return", "usual", "step", "tuple", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/rl/player.py#L449-L453
[ "def", "_player_step_tuple", "(", "self", ",", "envs_step_tuples", ")", ":", "ob", ",", "reward", ",", "done", ",", "info", "=", "envs_step_tuples", "[", "\"env\"", "]", "ob", "=", "self", ".", "_augment_observation", "(", "ob", ",", "reward", ",", "self",...
272500b6efe353aeb638d2745ed56e519462ca31
train
add_delta_deltas
Compute time first and second-order derivative channels. Args: filterbanks: float32 tensor with shape [batch_size, len, num_bins, 1] name: scope name Returns: float32 tensor with shape [batch_size, len, num_bins, 3]
tensor2tensor/layers/common_audio.py
def add_delta_deltas(filterbanks, name=None): """Compute time first and second-order derivative channels. Args: filterbanks: float32 tensor with shape [batch_size, len, num_bins, 1] name: scope name Returns: float32 tensor with shape [batch_size, len, num_bins, 3] """ delta_filter = np.array([2,...
def add_delta_deltas(filterbanks, name=None): """Compute time first and second-order derivative channels. Args: filterbanks: float32 tensor with shape [batch_size, len, num_bins, 1] name: scope name Returns: float32 tensor with shape [batch_size, len, num_bins, 3] """ delta_filter = np.array([2,...
[ "Compute", "time", "first", "and", "second", "-", "order", "derivative", "channels", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_audio.py#L28-L52
[ "def", "add_delta_deltas", "(", "filterbanks", ",", "name", "=", "None", ")", ":", "delta_filter", "=", "np", ".", "array", "(", "[", "2", ",", "1", ",", "0", ",", "-", "1", ",", "-", "2", "]", ")", "delta_delta_filter", "=", "scipy", ".", "signal"...
272500b6efe353aeb638d2745ed56e519462ca31
train
compute_mel_filterbank_features
Implement mel-filterbank extraction using tf ops. Args: waveforms: float32 tensor with shape [batch_size, max_len] sample_rate: sampling rate of the waveform dither: stddev of Gaussian noise added to waveform to prevent quantization artefacts preemphasis: waveform high-pass filtering constant ...
tensor2tensor/layers/common_audio.py
def compute_mel_filterbank_features( waveforms, sample_rate=16000, dither=1.0 / np.iinfo(np.int16).max, preemphasis=0.97, frame_length=25, frame_step=10, fft_length=None, window_fn=functools.partial(tf.contrib.signal.hann_window, periodic=True), lower_edge_hertz=80.0, upper_edge_hertz=7600.0, num_me...
def compute_mel_filterbank_features( waveforms, sample_rate=16000, dither=1.0 / np.iinfo(np.int16).max, preemphasis=0.97, frame_length=25, frame_step=10, fft_length=None, window_fn=functools.partial(tf.contrib.signal.hann_window, periodic=True), lower_edge_hertz=80.0, upper_edge_hertz=7600.0, num_me...
[ "Implement", "mel", "-", "filterbank", "extraction", "using", "tf", "ops", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_audio.py#L55-L138
[ "def", "compute_mel_filterbank_features", "(", "waveforms", ",", "sample_rate", "=", "16000", ",", "dither", "=", "1.0", "/", "np", ".", "iinfo", "(", "np", ".", "int16", ")", ".", "max", ",", "preemphasis", "=", "0.97", ",", "frame_length", "=", "25", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
play_env_problem_randomly
Plays the env problem by randomly sampling actions for `num_steps`.
tensor2tensor/envs/env_problem_utils.py
def play_env_problem_randomly(env_problem, num_steps): """Plays the env problem by randomly sampling actions for `num_steps`.""" # Reset all environments. env_problem.reset() # Play all environments, sampling random actions each time. for _ in range(num_steps): # Sample batc...
def play_env_problem_randomly(env_problem, num_steps): """Plays the env problem by randomly sampling actions for `num_steps`.""" # Reset all environments. env_problem.reset() # Play all environments, sampling random actions each time. for _ in range(num_steps): # Sample batc...
[ "Plays", "the", "env", "problem", "by", "randomly", "sampling", "actions", "for", "num_steps", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/envs/env_problem_utils.py#L30-L46
[ "def", "play_env_problem_randomly", "(", "env_problem", ",", "num_steps", ")", ":", "# Reset all environments.", "env_problem", ".", "reset", "(", ")", "# Play all environments, sampling random actions each time.", "for", "_", "in", "range", "(", "num_steps", ")", ":", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
generate_plaintext_random
Generates samples of text from the provided vocabulary. Args: plain_vocab: vocabulary. distribution: distribution. train_samples: samples for training. length: length. Returns: train_indices (np.array of Integers): random integers for training. shape = [num_samples, length] test_indi...
tensor2tensor/data_generators/cipher.py
def generate_plaintext_random(plain_vocab, distribution, train_samples, length): """Generates samples of text from the provided vocabulary. Args: plain_vocab: vocabulary. distribution: distribution. train_samples: samples for training. length: length. Returns: t...
def generate_plaintext_random(plain_vocab, distribution, train_samples, length): """Generates samples of text from the provided vocabulary. Args: plain_vocab: vocabulary. distribution: distribution. train_samples: samples for training. length: length. Returns: t...
[ "Generates", "samples", "of", "text", "from", "the", "provided", "vocabulary", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/cipher.py#L154-L177
[ "def", "generate_plaintext_random", "(", "plain_vocab", ",", "distribution", ",", "train_samples", ",", "length", ")", ":", "if", "distribution", "is", "not", "None", ":", "assert", "len", "(", "distribution", ")", "==", "len", "(", "plain_vocab", ")", "train_...
272500b6efe353aeb638d2745ed56e519462ca31
train
encipher_shift
Encrypt plain text with a single shift layer. Args: plaintext (list of list of Strings): a list of plain text to encrypt. plain_vocab (list of Integer): unique vocabularies being used. shift (Integer): number of shift, shift to the right if shift is positive. Returns: ciphertext (list of Strings): ...
tensor2tensor/data_generators/cipher.py
def encipher_shift(plaintext, plain_vocab, shift): """Encrypt plain text with a single shift layer. Args: plaintext (list of list of Strings): a list of plain text to encrypt. plain_vocab (list of Integer): unique vocabularies being used. shift (Integer): number of shift, shift to the right if shift is...
def encipher_shift(plaintext, plain_vocab, shift): """Encrypt plain text with a single shift layer. Args: plaintext (list of list of Strings): a list of plain text to encrypt. plain_vocab (list of Integer): unique vocabularies being used. shift (Integer): number of shift, shift to the right if shift is...
[ "Encrypt", "plain", "text", "with", "a", "single", "shift", "layer", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/cipher.py#L180-L200
[ "def", "encipher_shift", "(", "plaintext", ",", "plain_vocab", ",", "shift", ")", ":", "ciphertext", "=", "[", "]", "cipher", "=", "ShiftEncryptionLayer", "(", "plain_vocab", ",", "shift", ")", "for", "_", ",", "sentence", "in", "enumerate", "(", "plaintext"...
272500b6efe353aeb638d2745ed56e519462ca31
train
encipher_vigenere
Encrypt plain text with given key. Args: plaintext (list of list of Strings): a list of plain text to encrypt. plain_vocab (list of Integer): unique vocabularies being used. key (list of Integer): key to encrypt cipher using Vigenere table. Returns: ciphertext (list of Strings): encrypted plain te...
tensor2tensor/data_generators/cipher.py
def encipher_vigenere(plaintext, plain_vocab, key): """Encrypt plain text with given key. Args: plaintext (list of list of Strings): a list of plain text to encrypt. plain_vocab (list of Integer): unique vocabularies being used. key (list of Integer): key to encrypt cipher using Vigenere table. Retu...
def encipher_vigenere(plaintext, plain_vocab, key): """Encrypt plain text with given key. Args: plaintext (list of list of Strings): a list of plain text to encrypt. plain_vocab (list of Integer): unique vocabularies being used. key (list of Integer): key to encrypt cipher using Vigenere table. Retu...
[ "Encrypt", "plain", "text", "with", "given", "key", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/cipher.py#L203-L228
[ "def", "encipher_vigenere", "(", "plaintext", ",", "plain_vocab", ",", "key", ")", ":", "ciphertext", "=", "[", "]", "# generate Vigenere table", "layers", "=", "[", "ShiftEncryptionLayer", "(", "plain_vocab", ",", "i", ")", "for", "i", "in", "range", "(", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
_super_stack
A stack of super_lm layers. Args: inputs: a list of Tensors attention_bias: list of bias Tensor for self-attention (see common_attention.attention_bias()) hparams: hyperparameters for model mp: a Parallelism object padding: a string Returns: y: a list of Tensors extra_loss: an op...
tensor2tensor/models/research/super_lm.py
def _super_stack(inputs, attention_bias, hparams, mp, padding="LEFT"): """A stack of super_lm layers. Args: inputs: a list of Tensors attention_bias: list of bias Tensor for self-attention (see common_attention.attention_bias()) ...
def _super_stack(inputs, attention_bias, hparams, mp, padding="LEFT"): """A stack of super_lm layers. Args: inputs: a list of Tensors attention_bias: list of bias Tensor for self-attention (see common_attention.attention_bias()) ...
[ "A", "stack", "of", "super_lm", "layers", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/super_lm.py#L126-L237
[ "def", "_super_stack", "(", "inputs", ",", "attention_bias", ",", "hparams", ",", "mp", ",", "padding", "=", "\"LEFT\"", ")", ":", "layers", "=", "hparams", ".", "layers", ".", "strip", "(", "\",\"", ")", ".", "split", "(", "\",\"", ")", "moe_hidden_size...
272500b6efe353aeb638d2745ed56e519462ca31
train
super_lm_base
Set of hyperparameters.
tensor2tensor/models/research/super_lm.py
def super_lm_base(): """Set of hyperparameters.""" hparams = common_hparams.basic_params1() hparams.hidden_size = 512 hparams.moe_hidden_sizes = "512" hparams.batch_size = 16384 hparams.max_length = 0 # All hyperparameters ending in "dropout" are automatically set to 0.0 # when not in training mode. h...
def super_lm_base(): """Set of hyperparameters.""" hparams = common_hparams.basic_params1() hparams.hidden_size = 512 hparams.moe_hidden_sizes = "512" hparams.batch_size = 16384 hparams.max_length = 0 # All hyperparameters ending in "dropout" are automatically set to 0.0 # when not in training mode. h...
[ "Set", "of", "hyperparameters", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/super_lm.py#L241-L288
[ "def", "super_lm_base", "(", ")", ":", "hparams", "=", "common_hparams", ".", "basic_params1", "(", ")", "hparams", ".", "hidden_size", "=", "512", "hparams", ".", "moe_hidden_sizes", "=", "\"512\"", "hparams", ".", "batch_size", "=", "16384", "hparams", ".", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
super_lm_moe
Add mixture of experts with ~1B params.
tensor2tensor/models/research/super_lm.py
def super_lm_moe(): """Add mixture of experts with ~1B params.""" hparams = super_lm_base() hparams.layers = ( ("n,att,m,d,a," "n,moe,m,d,a,") * 4 + "n,ffn,d") hparams.moe_num_experts = 32 hparams.moe_hidden_sizes = "1024" return hparams
def super_lm_moe(): """Add mixture of experts with ~1B params.""" hparams = super_lm_base() hparams.layers = ( ("n,att,m,d,a," "n,moe,m,d,a,") * 4 + "n,ffn,d") hparams.moe_num_experts = 32 hparams.moe_hidden_sizes = "1024" return hparams
[ "Add", "mixture", "of", "experts", "with", "~1B", "params", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/super_lm.py#L334-L341
[ "def", "super_lm_moe", "(", ")", ":", "hparams", "=", "super_lm_base", "(", ")", "hparams", ".", "layers", "=", "(", "(", "\"n,att,m,d,a,\"", "\"n,moe,m,d,a,\"", ")", "*", "4", "+", "\"n,ffn,d\"", ")", "hparams", ".", "moe_num_experts", "=", "32", "hparams",...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe_tr_dense_2k
Series of architectural experiments on Translation. # run on 8-core setup 119M params, einsum=0.95e13 Returns: a hparams
tensor2tensor/models/research/moe_experiments.py
def xmoe_tr_dense_2k(): """Series of architectural experiments on Translation. # run on 8-core setup 119M params, einsum=0.95e13 Returns: a hparams """ hparams = mtf_transformer2.mtf_bitransformer_base() hparams.encoder_layers = ["self_att", "drd"] * 4 hparams.decoder_layers = ["self_att", "enc_a...
def xmoe_tr_dense_2k(): """Series of architectural experiments on Translation. # run on 8-core setup 119M params, einsum=0.95e13 Returns: a hparams """ hparams = mtf_transformer2.mtf_bitransformer_base() hparams.encoder_layers = ["self_att", "drd"] * 4 hparams.decoder_layers = ["self_att", "enc_a...
[ "Series", "of", "architectural", "experiments", "on", "Translation", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L30-L46
[ "def", "xmoe_tr_dense_2k", "(", ")", ":", "hparams", "=", "mtf_transformer2", ".", "mtf_bitransformer_base", "(", ")", "hparams", ".", "encoder_layers", "=", "[", "\"self_att\"", ",", "\"drd\"", "]", "*", "4", "hparams", ".", "decoder_layers", "=", "[", "\"sel...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe_tr_1d
Mixture of experts (16 experts). 623M Params, einsum=1.09e13 Returns: a hparams
tensor2tensor/models/research/moe_experiments.py
def xmoe_tr_1d(): """Mixture of experts (16 experts). 623M Params, einsum=1.09e13 Returns: a hparams """ hparams = xmoe_tr_dense_2k() hparams.encoder_layers = ["self_att", "moe_1d"] * 4 hparams.decoder_layers = ["self_att", "enc_att", "moe_1d"] * 4 hparams.layout = "batch:batch;experts:batch" h...
def xmoe_tr_1d(): """Mixture of experts (16 experts). 623M Params, einsum=1.09e13 Returns: a hparams """ hparams = xmoe_tr_dense_2k() hparams.encoder_layers = ["self_att", "moe_1d"] * 4 hparams.decoder_layers = ["self_att", "enc_att", "moe_1d"] * 4 hparams.layout = "batch:batch;experts:batch" h...
[ "Mixture", "of", "experts", "(", "16", "experts", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L64-L79
[ "def", "xmoe_tr_1d", "(", ")", ":", "hparams", "=", "xmoe_tr_dense_2k", "(", ")", "hparams", ".", "encoder_layers", "=", "[", "\"self_att\"", ",", "\"moe_1d\"", "]", "*", "4", "hparams", ".", "decoder_layers", "=", "[", "\"self_att\"", ",", "\"enc_att\"", ",...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe_tr_2d
Mixture of experts (16 experts). 623M Params, einsum=1.09e13 Returns: a hparams
tensor2tensor/models/research/moe_experiments.py
def xmoe_tr_2d(): """Mixture of experts (16 experts). 623M Params, einsum=1.09e13 Returns: a hparams """ hparams = xmoe_tr_dense_2k() hparams.mesh_shape = "b0:2;b1:4" hparams.outer_batch_size = 4 hparams.layout = "outer_batch:b0;inner_batch:b1,expert_x:b1,expert_y:b0" hparams.encoder_layers = ["...
def xmoe_tr_2d(): """Mixture of experts (16 experts). 623M Params, einsum=1.09e13 Returns: a hparams """ hparams = xmoe_tr_dense_2k() hparams.mesh_shape = "b0:2;b1:4" hparams.outer_batch_size = 4 hparams.layout = "outer_batch:b0;inner_batch:b1,expert_x:b1,expert_y:b0" hparams.encoder_layers = ["...
[ "Mixture", "of", "experts", "(", "16", "experts", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L83-L100
[ "def", "xmoe_tr_2d", "(", ")", ":", "hparams", "=", "xmoe_tr_dense_2k", "(", ")", "hparams", ".", "mesh_shape", "=", "\"b0:2;b1:4\"", "hparams", ".", "outer_batch_size", "=", "4", "hparams", ".", "layout", "=", "\"outer_batch:b0;inner_batch:b1,expert_x:b1,expert_y:b0\...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe_dense_4k
Series of architectural experiments on cheap language models. For all of these architectures, we run on languagemodel_lm1b8k_packed for 32000 steps. All log-perplexities are per-token - multiply by 1.298 for per-word Results: model params(M) einsum alltoall mxu-util log-ppl xmoe_dense_4k ...
tensor2tensor/models/research/moe_experiments.py
def xmoe_dense_4k(): """Series of architectural experiments on cheap language models. For all of these architectures, we run on languagemodel_lm1b8k_packed for 32000 steps. All log-perplexities are per-token - multiply by 1.298 for per-word Results: model params(M) einsum alltoall mxu-util...
def xmoe_dense_4k(): """Series of architectural experiments on cheap language models. For all of these architectures, we run on languagemodel_lm1b8k_packed for 32000 steps. All log-perplexities are per-token - multiply by 1.298 for per-word Results: model params(M) einsum alltoall mxu-util...
[ "Series", "of", "architectural", "experiments", "on", "cheap", "language", "models", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L104-L147
[ "def", "xmoe_dense_4k", "(", ")", ":", "hparams", "=", "mtf_transformer", ".", "mtf_transformer_base_lm", "(", ")", "hparams", ".", "attention_dropout", "=", "0.0", "hparams", ".", "relu_dropout", "=", "0.0", "hparams", ".", "layer_prepostprocess_dropout", "=", "0...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe_top_2
Mixture of experts (16 experts).
tensor2tensor/models/research/moe_experiments.py
def xmoe_top_2(): """Mixture of experts (16 experts).""" hparams = xmoe_dense_4k() moe.set_default_moe_hparams(hparams) hparams.mesh_shape = "all:8" hparams.layout = "batch:all;experts:all" return hparams
def xmoe_top_2(): """Mixture of experts (16 experts).""" hparams = xmoe_dense_4k() moe.set_default_moe_hparams(hparams) hparams.mesh_shape = "all:8" hparams.layout = "batch:all;experts:all" return hparams
[ "Mixture", "of", "experts", "(", "16", "experts", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L167-L173
[ "def", "xmoe_top_2", "(", ")", ":", "hparams", "=", "xmoe_dense_4k", "(", ")", "moe", ".", "set_default_moe_hparams", "(", "hparams", ")", "hparams", ".", "mesh_shape", "=", "\"all:8\"", "hparams", ".", "layout", "=", "\"batch:all;experts:all\"", "return", "hpar...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe_2d
Two-dimensional hierarchical mixture of 16 experts.
tensor2tensor/models/research/moe_experiments.py
def xmoe_2d(): """Two-dimensional hierarchical mixture of 16 experts.""" hparams = xmoe_top_2() hparams.decoder_layers = ["att", "hmoe"] * 4 hparams.mesh_shape = "b0:2;b1:4" hparams.outer_batch_size = 4 hparams.layout = "outer_batch:b0;inner_batch:b1,expert_x:b1,expert_y:b0" hparams.moe_num_experts = [4, ...
def xmoe_2d(): """Two-dimensional hierarchical mixture of 16 experts.""" hparams = xmoe_top_2() hparams.decoder_layers = ["att", "hmoe"] * 4 hparams.mesh_shape = "b0:2;b1:4" hparams.outer_batch_size = 4 hparams.layout = "outer_batch:b0;inner_batch:b1,expert_x:b1,expert_y:b0" hparams.moe_num_experts = [4, ...
[ "Two", "-", "dimensional", "hierarchical", "mixture", "of", "16", "experts", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L185-L193
[ "def", "xmoe_2d", "(", ")", ":", "hparams", "=", "xmoe_top_2", "(", ")", "hparams", ".", "decoder_layers", "=", "[", "\"att\"", ",", "\"hmoe\"", "]", "*", "4", "hparams", ".", "mesh_shape", "=", "\"b0:2;b1:4\"", "hparams", ".", "outer_batch_size", "=", "4"...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_dense
Series of architectural experiments on language modeling. Larger models than the ones above. All models are trained on sequences of 1024 tokens. We assume infinite training data, so no dropout necessary. We process 2^36 tokens in training = 524288 steps at batch size 128 TODO(noam): find a large enough da...
tensor2tensor/models/research/moe_experiments.py
def xmoe2_dense(sz): """Series of architectural experiments on language modeling. Larger models than the ones above. All models are trained on sequences of 1024 tokens. We assume infinite training data, so no dropout necessary. We process 2^36 tokens in training = 524288 steps at batch size 128 TODO(noa...
def xmoe2_dense(sz): """Series of architectural experiments on language modeling. Larger models than the ones above. All models are trained on sequences of 1024 tokens. We assume infinite training data, so no dropout necessary. We process 2^36 tokens in training = 524288 steps at batch size 128 TODO(noa...
[ "Series", "of", "architectural", "experiments", "on", "language", "modeling", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L232-L267
[ "def", "xmoe2_dense", "(", "sz", ")", ":", "hparams", "=", "mtf_transformer", ".", "mtf_transformer_paper_lm", "(", "sz", ")", "hparams", ".", "attention_dropout", "=", "0.0", "hparams", ".", "relu_dropout", "=", "0.0", "hparams", ".", "layer_prepostprocess_dropou...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_v1
Model incorporating mixture-of-experts and local-attention. ~6B parameters 32 experts in 3 hierarchichal moe layers. Returns: a hparams
tensor2tensor/models/research/moe_experiments.py
def xmoe2_v1(): """Model incorporating mixture-of-experts and local-attention. ~6B parameters 32 experts in 3 hierarchichal moe layers. Returns: a hparams """ hparams = xmoe2_dense(0) moe.set_default_moe_hparams(hparams) hparams.decoder_layers = ( ["local_att", "local_att", "drd", "a...
def xmoe2_v1(): """Model incorporating mixture-of-experts and local-attention. ~6B parameters 32 experts in 3 hierarchichal moe layers. Returns: a hparams """ hparams = xmoe2_dense(0) moe.set_default_moe_hparams(hparams) hparams.decoder_layers = ( ["local_att", "local_att", "drd", "a...
[ "Model", "incorporating", "mixture", "-", "of", "-", "experts", "and", "local", "-", "attention", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L291-L314
[ "def", "xmoe2_v1", "(", ")", ":", "hparams", "=", "xmoe2_dense", "(", "0", ")", "moe", ".", "set_default_moe_hparams", "(", "hparams", ")", "hparams", ".", "decoder_layers", "=", "(", "[", "\"local_att\"", ",", "\"local_att\"", ",", "\"drd\"", ",", "\"att\""...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_v1_x128
128 experts, ~25B params - Train for 131072 steps on 8x8.
tensor2tensor/models/research/moe_experiments.py
def xmoe2_v1_x128(): """128 experts, ~25B params - Train for 131072 steps on 8x8.""" hparams = xmoe2_v1() hparams.moe_num_experts = [16, 8] hparams.outer_batch_size = 8 hparams.mesh_shape = "b0:8;b1:16" hparams.batch_size = 512 hparams.learning_rate_decay_steps = 16384 return hparams
def xmoe2_v1_x128(): """128 experts, ~25B params - Train for 131072 steps on 8x8.""" hparams = xmoe2_v1() hparams.moe_num_experts = [16, 8] hparams.outer_batch_size = 8 hparams.mesh_shape = "b0:8;b1:16" hparams.batch_size = 512 hparams.learning_rate_decay_steps = 16384 return hparams
[ "128", "experts", "~25B", "params", "-", "Train", "for", "131072", "steps", "on", "8x8", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L318-L326
[ "def", "xmoe2_v1_x128", "(", ")", ":", "hparams", "=", "xmoe2_v1", "(", ")", "hparams", ".", "moe_num_experts", "=", "[", "16", ",", "8", "]", "hparams", ".", "outer_batch_size", "=", "8", "hparams", ".", "mesh_shape", "=", "\"b0:8;b1:16\"", "hparams", "."...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_tiny
Test on local cpu.
tensor2tensor/models/research/moe_experiments.py
def xmoe2_tiny(): """Test on local cpu.""" hparams = xmoe2_v1() hparams.decoder_layers = [ "local_att", "att", "compressed_att", "drd", "hmoe"] hparams.d_model = 128 hparams.moe_hidden_size = 512 hparams.outer_batch_size = 0 hparams.batch_size = 2 hparams.mesh_shape = "" hparams.activation_dtype...
def xmoe2_tiny(): """Test on local cpu.""" hparams = xmoe2_v1() hparams.decoder_layers = [ "local_att", "att", "compressed_att", "drd", "hmoe"] hparams.d_model = 128 hparams.moe_hidden_size = 512 hparams.outer_batch_size = 0 hparams.batch_size = 2 hparams.mesh_shape = "" hparams.activation_dtype...
[ "Test", "on", "local", "cpu", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L330-L341
[ "def", "xmoe2_tiny", "(", ")", ":", "hparams", "=", "xmoe2_v1", "(", ")", "hparams", ".", "decoder_layers", "=", "[", "\"local_att\"", ",", "\"att\"", ",", "\"compressed_att\"", ",", "\"drd\"", ",", "\"hmoe\"", "]", "hparams", ".", "d_model", "=", "128", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_v1_l4k
With sequence length 4096.
tensor2tensor/models/research/moe_experiments.py
def xmoe2_v1_l4k(): """With sequence length 4096.""" hparams = xmoe2_v1() hparams.batch_size = 32 hparams.max_length = 4096 hparams.split_to_length = 4096 hparams.reshape_logits_hack = True return hparams
def xmoe2_v1_l4k(): """With sequence length 4096.""" hparams = xmoe2_v1() hparams.batch_size = 32 hparams.max_length = 4096 hparams.split_to_length = 4096 hparams.reshape_logits_hack = True return hparams
[ "With", "sequence", "length", "4096", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L345-L352
[ "def", "xmoe2_v1_l4k", "(", ")", ":", "hparams", "=", "xmoe2_v1", "(", ")", "hparams", ".", "batch_size", "=", "32", "hparams", ".", "max_length", "=", "4096", "hparams", ".", "split_to_length", "=", "4096", "hparams", ".", "reshape_logits_hack", "=", "True"...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_v1_l4k_local_only
With sequence length 4096.
tensor2tensor/models/research/moe_experiments.py
def xmoe2_v1_l4k_local_only(): """With sequence length 4096.""" hparams = xmoe2_v1_l4k() hparams.decoder_layers = [ "local_att" if l == "att" else l for l in hparams.decoder_layers] return hparams
def xmoe2_v1_l4k_local_only(): """With sequence length 4096.""" hparams = xmoe2_v1_l4k() hparams.decoder_layers = [ "local_att" if l == "att" else l for l in hparams.decoder_layers] return hparams
[ "With", "sequence", "length", "4096", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L356-L361
[ "def", "xmoe2_v1_l4k_local_only", "(", ")", ":", "hparams", "=", "xmoe2_v1_l4k", "(", ")", "hparams", ".", "decoder_layers", "=", "[", "\"local_att\"", "if", "l", "==", "\"att\"", "else", "l", "for", "l", "in", "hparams", ".", "decoder_layers", "]", "return"...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_v1_l4k_global_only
With sequence length 4096.
tensor2tensor/models/research/moe_experiments.py
def xmoe2_v1_l4k_global_only(): """With sequence length 4096.""" hparams = xmoe2_v1_l4k() hparams.decoder_layers = [ "att" if l == "local_att" else l for l in hparams.decoder_layers] return hparams
def xmoe2_v1_l4k_global_only(): """With sequence length 4096.""" hparams = xmoe2_v1_l4k() hparams.decoder_layers = [ "att" if l == "local_att" else l for l in hparams.decoder_layers] return hparams
[ "With", "sequence", "length", "4096", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L365-L370
[ "def", "xmoe2_v1_l4k_global_only", "(", ")", ":", "hparams", "=", "xmoe2_v1_l4k", "(", ")", "hparams", ".", "decoder_layers", "=", "[", "\"att\"", "if", "l", "==", "\"local_att\"", "else", "l", "for", "l", "in", "hparams", ".", "decoder_layers", "]", "return...
272500b6efe353aeb638d2745ed56e519462ca31
train
xmoe2_v1_l4k_compressed_c4
With compressed attention.
tensor2tensor/models/research/moe_experiments.py
def xmoe2_v1_l4k_compressed_c4(): """With compressed attention.""" hparams = xmoe2_v1_l4k() hparams.decoder_layers = [ "compressed_att" if l == "att" else l for l in hparams.decoder_layers] hparams.compression_factor = 4 return hparams
def xmoe2_v1_l4k_compressed_c4(): """With compressed attention.""" hparams = xmoe2_v1_l4k() hparams.decoder_layers = [ "compressed_att" if l == "att" else l for l in hparams.decoder_layers] hparams.compression_factor = 4 return hparams
[ "With", "compressed", "attention", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L374-L380
[ "def", "xmoe2_v1_l4k_compressed_c4", "(", ")", ":", "hparams", "=", "xmoe2_v1_l4k", "(", ")", "hparams", ".", "decoder_layers", "=", "[", "\"compressed_att\"", "if", "l", "==", "\"att\"", "else", "l", "for", "l", "in", "hparams", ".", "decoder_layers", "]", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
wiki_2x2_base
Set of architectural experiments - language model on wikipedia on a 2x2. 1 epoch = ~180k steps at batch size 32 - we may never finish an epoch! Returns: a hparams
tensor2tensor/models/research/moe_experiments.py
def wiki_2x2_base(): """Set of architectural experiments - language model on wikipedia on a 2x2. 1 epoch = ~180k steps at batch size 32 - we may never finish an epoch! Returns: a hparams """ hparams = mtf_transformer.mtf_transformer_base_lm() hparams.shared_embedding_and_softmax_weights = False # no...
def wiki_2x2_base(): """Set of architectural experiments - language model on wikipedia on a 2x2. 1 epoch = ~180k steps at batch size 32 - we may never finish an epoch! Returns: a hparams """ hparams = mtf_transformer.mtf_transformer_base_lm() hparams.shared_embedding_and_softmax_weights = False # no...
[ "Set", "of", "architectural", "experiments", "-", "language", "model", "on", "wikipedia", "on", "a", "2x2", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L392-L427
[ "def", "wiki_2x2_base", "(", ")", ":", "hparams", "=", "mtf_transformer", ".", "mtf_transformer_base_lm", "(", ")", "hparams", ".", "shared_embedding_and_softmax_weights", "=", "False", "# no dropout - dataset is big enough to avoid overfitting.", "hparams", ".", "attention_d...
272500b6efe353aeb638d2745ed56e519462ca31
train
denoise_z15
Replace tokens instead of masking.
tensor2tensor/models/research/moe_experiments.py
def denoise_z15(): """Replace tokens instead of masking.""" hparams = xmoe2_dense_0() hparams.decoder_type = "denoising" hparams.noising_spec_train = {"type": "random_zipfian", "prob": 0.15} hparams.noising_use_eval_during_train = 0.25 return hparams
def denoise_z15(): """Replace tokens instead of masking.""" hparams = xmoe2_dense_0() hparams.decoder_type = "denoising" hparams.noising_spec_train = {"type": "random_zipfian", "prob": 0.15} hparams.noising_use_eval_during_train = 0.25 return hparams
[ "Replace", "tokens", "instead", "of", "masking", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L474-L480
[ "def", "denoise_z15", "(", ")", ":", "hparams", "=", "xmoe2_dense_0", "(", ")", "hparams", ".", "decoder_type", "=", "\"denoising\"", "hparams", ".", "noising_spec_train", "=", "{", "\"type\"", ":", "\"random_zipfian\"", ",", "\"prob\"", ":", "0.15", "}", "hpa...
272500b6efe353aeb638d2745ed56e519462ca31
train
denoise_v1_m15
Denoising experiment.
tensor2tensor/models/research/moe_experiments.py
def denoise_v1_m15(): """Denoising experiment.""" hparams = xmoe2_v1() # no local attention # TODO(noam): non-masked version of local-attention hparams.decoder_layers = [ "att" if l == "local_att" else l for l in hparams.decoder_layers] hparams.decoder_type = "denoising" hparams.noising_spec_train =...
def denoise_v1_m15(): """Denoising experiment.""" hparams = xmoe2_v1() # no local attention # TODO(noam): non-masked version of local-attention hparams.decoder_layers = [ "att" if l == "local_att" else l for l in hparams.decoder_layers] hparams.decoder_type = "denoising" hparams.noising_spec_train =...
[ "Denoising", "experiment", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/moe_experiments.py#L503-L512
[ "def", "denoise_v1_m15", "(", ")", ":", "hparams", "=", "xmoe2_v1", "(", ")", "# no local attention", "# TODO(noam): non-masked version of local-attention", "hparams", ".", "decoder_layers", "=", "[", "\"att\"", "if", "l", "==", "\"local_att\"", "else", "l", "for", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_download_mlu_data
Downloads and extracts the dataset. Args: tmp_dir: temp directory to download and extract the dataset data_dir: The base directory where data and vocab files are stored. Returns: tmp_dir: temp directory containing the raw data.
tensor2tensor/data_generators/algorithmic_math_two_variables.py
def _download_mlu_data(tmp_dir, data_dir): """Downloads and extracts the dataset. Args: tmp_dir: temp directory to download and extract the dataset data_dir: The base directory where data and vocab files are stored. Returns: tmp_dir: temp directory containing the raw data. """ if not tf.gfile.Ex...
def _download_mlu_data(tmp_dir, data_dir): """Downloads and extracts the dataset. Args: tmp_dir: temp directory to download and extract the dataset data_dir: The base directory where data and vocab files are stored. Returns: tmp_dir: temp directory containing the raw data. """ if not tf.gfile.Ex...
[ "Downloads", "and", "extracts", "the", "dataset", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/algorithmic_math_two_variables.py#L60-L85
[ "def", "_download_mlu_data", "(", "tmp_dir", ",", "data_dir", ")", ":", "if", "not", "tf", ".", "gfile", ".", "Exists", "(", "data_dir", ")", ":", "tf", ".", "gfile", ".", "MakeDirs", "(", "data_dir", ")", "filename", "=", "os", ".", "path", ".", "ba...
272500b6efe353aeb638d2745ed56e519462ca31
train
_get_ngram_counter
Get a Counter with the ngrams of the given ID list. Args: ids: np.array or a list corresponding to a single sentence n: n-gram size Returns: collections.Counter with ID tuples as keys and 1s as values.
tensor2tensor/utils/sari_hook.py
def _get_ngram_counter(ids, n): """Get a Counter with the ngrams of the given ID list. Args: ids: np.array or a list corresponding to a single sentence n: n-gram size Returns: collections.Counter with ID tuples as keys and 1s as values. """ # Remove zero IDs used to pad the sequence. ids = [to...
def _get_ngram_counter(ids, n): """Get a Counter with the ngrams of the given ID list. Args: ids: np.array or a list corresponding to a single sentence n: n-gram size Returns: collections.Counter with ID tuples as keys and 1s as values. """ # Remove zero IDs used to pad the sequence. ids = [to...
[ "Get", "a", "Counter", "with", "the", "ngrams", "of", "the", "given", "ID", "list", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L50-L67
[ "def", "_get_ngram_counter", "(", "ids", ",", "n", ")", ":", "# Remove zero IDs used to pad the sequence.", "ids", "=", "[", "token_id", "for", "token_id", "in", "ids", "if", "token_id", "!=", "0", "]", "ngram_list", "=", "[", "tuple", "(", "ids", "[", "i", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_get_fbeta_score
Compute Fbeta score. Args: true_positives: Number of true positive ngrams. selected: Number of selected ngrams. relevant: Number of relevant ngrams. beta: 0 gives precision only, 1 gives F1 score, and Inf gives recall only. Returns: Fbeta score.
tensor2tensor/utils/sari_hook.py
def _get_fbeta_score(true_positives, selected, relevant, beta=1): """Compute Fbeta score. Args: true_positives: Number of true positive ngrams. selected: Number of selected ngrams. relevant: Number of relevant ngrams. beta: 0 gives precision only, 1 gives F1 score, and Inf gives recall only. Ret...
def _get_fbeta_score(true_positives, selected, relevant, beta=1): """Compute Fbeta score. Args: true_positives: Number of true positive ngrams. selected: Number of selected ngrams. relevant: Number of relevant ngrams. beta: 0 gives precision only, 1 gives F1 score, and Inf gives recall only. Ret...
[ "Compute", "Fbeta", "score", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L70-L94
[ "def", "_get_fbeta_score", "(", "true_positives", ",", "selected", ",", "relevant", ",", "beta", "=", "1", ")", ":", "precision", "=", "1", "if", "selected", ">", "0", ":", "precision", "=", "true_positives", "/", "selected", "if", "beta", "==", "0", ":"...
272500b6efe353aeb638d2745ed56e519462ca31
train
get_addition_score
Compute the addition score (Equation 4 in the paper).
tensor2tensor/utils/sari_hook.py
def get_addition_score(source_counts, prediction_counts, target_counts): """Compute the addition score (Equation 4 in the paper).""" added_to_prediction_counts = prediction_counts - source_counts true_positives = sum((added_to_prediction_counts & target_counts).values()) selected = sum(added_to_prediction_count...
def get_addition_score(source_counts, prediction_counts, target_counts): """Compute the addition score (Equation 4 in the paper).""" added_to_prediction_counts = prediction_counts - source_counts true_positives = sum((added_to_prediction_counts & target_counts).values()) selected = sum(added_to_prediction_count...
[ "Compute", "the", "addition", "score", "(", "Equation", "4", "in", "the", "paper", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L97-L107
[ "def", "get_addition_score", "(", "source_counts", ",", "prediction_counts", ",", "target_counts", ")", ":", "added_to_prediction_counts", "=", "prediction_counts", "-", "source_counts", "true_positives", "=", "sum", "(", "(", "added_to_prediction_counts", "&", "target_co...
272500b6efe353aeb638d2745ed56e519462ca31
train
get_keep_score
Compute the keep score (Equation 5 in the paper).
tensor2tensor/utils/sari_hook.py
def get_keep_score(source_counts, prediction_counts, target_counts): """Compute the keep score (Equation 5 in the paper).""" source_and_prediction_counts = source_counts & prediction_counts source_and_target_counts = source_counts & target_counts true_positives = sum((source_and_prediction_counts & ...
def get_keep_score(source_counts, prediction_counts, target_counts): """Compute the keep score (Equation 5 in the paper).""" source_and_prediction_counts = source_counts & prediction_counts source_and_target_counts = source_counts & target_counts true_positives = sum((source_and_prediction_counts & ...
[ "Compute", "the", "keep", "score", "(", "Equation", "5", "in", "the", "paper", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L110-L118
[ "def", "get_keep_score", "(", "source_counts", ",", "prediction_counts", ",", "target_counts", ")", ":", "source_and_prediction_counts", "=", "source_counts", "&", "prediction_counts", "source_and_target_counts", "=", "source_counts", "&", "target_counts", "true_positives", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
get_deletion_score
Compute the deletion score (Equation 6 in the paper).
tensor2tensor/utils/sari_hook.py
def get_deletion_score(source_counts, prediction_counts, target_counts, beta=0): """Compute the deletion score (Equation 6 in the paper).""" source_not_prediction_counts = source_counts - prediction_counts source_not_target_counts = source_counts - target_counts true_positives = sum((source_not_prediction_count...
def get_deletion_score(source_counts, prediction_counts, target_counts, beta=0): """Compute the deletion score (Equation 6 in the paper).""" source_not_prediction_counts = source_counts - prediction_counts source_not_target_counts = source_counts - target_counts true_positives = sum((source_not_prediction_count...
[ "Compute", "the", "deletion", "score", "(", "Equation", "6", "in", "the", "paper", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L121-L129
[ "def", "get_deletion_score", "(", "source_counts", ",", "prediction_counts", ",", "target_counts", ",", "beta", "=", "0", ")", ":", "source_not_prediction_counts", "=", "source_counts", "-", "prediction_counts", "source_not_target_counts", "=", "source_counts", "-", "ta...
272500b6efe353aeb638d2745ed56e519462ca31
train
get_sari_score
Compute the SARI score for a single prediction and one or more targets. Args: source_ids: a list / np.array of SentencePiece IDs prediction_ids: a list / np.array of SentencePiece IDs list_of_targets: a list of target ID lists / np.arrays max_gram_size: int. largest n-gram size we care about (e.g. 3 ...
tensor2tensor/utils/sari_hook.py
def get_sari_score(source_ids, prediction_ids, list_of_targets, max_gram_size=4, beta_for_deletion=0): """Compute the SARI score for a single prediction and one or more targets. Args: source_ids: a list / np.array of SentencePiece IDs prediction_ids: a list / np.array of SentencePiece ID...
def get_sari_score(source_ids, prediction_ids, list_of_targets, max_gram_size=4, beta_for_deletion=0): """Compute the SARI score for a single prediction and one or more targets. Args: source_ids: a list / np.array of SentencePiece IDs prediction_ids: a list / np.array of SentencePiece ID...
[ "Compute", "the", "SARI", "score", "for", "a", "single", "prediction", "and", "one", "or", "more", "targets", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L132-L179
[ "def", "get_sari_score", "(", "source_ids", ",", "prediction_ids", ",", "list_of_targets", ",", "max_gram_size", "=", "4", ",", "beta_for_deletion", "=", "0", ")", ":", "addition_scores", "=", "[", "]", "keep_scores", "=", "[", "]", "deletion_scores", "=", "["...
272500b6efe353aeb638d2745ed56e519462ca31
train
get_sari
Computes the SARI scores from the given source, prediction and targets. Args: source_ids: A 2D tf.Tensor of size (batch_size , sequence_length) prediction_ids: A 2D tf.Tensor of size (batch_size, sequence_length) target_ids: A 3D tf.Tensor of size (batch_size, number_of_targets, sequence_length) ...
tensor2tensor/utils/sari_hook.py
def get_sari(source_ids, prediction_ids, target_ids, max_gram_size=4): """Computes the SARI scores from the given source, prediction and targets. Args: source_ids: A 2D tf.Tensor of size (batch_size , sequence_length) prediction_ids: A 2D tf.Tensor of size (batch_size, sequence_length) target_ids: A 3D...
def get_sari(source_ids, prediction_ids, target_ids, max_gram_size=4): """Computes the SARI scores from the given source, prediction and targets. Args: source_ids: A 2D tf.Tensor of size (batch_size , sequence_length) prediction_ids: A 2D tf.Tensor of size (batch_size, sequence_length) target_ids: A 3D...
[ "Computes", "the", "SARI", "scores", "from", "the", "given", "source", "prediction", "and", "targets", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L182-L221
[ "def", "get_sari", "(", "source_ids", ",", "prediction_ids", ",", "target_ids", ",", "max_gram_size", "=", "4", ")", ":", "def", "get_sari_numpy", "(", "source_ids", ",", "prediction_ids", ",", "target_ids", ")", ":", "\"\"\"Iterate over elements in the batch and call...
272500b6efe353aeb638d2745ed56e519462ca31
train
sari_score
Computes the SARI scores from the given source, prediction and targets. An approximate SARI scoring method since we do not glue word pieces or decode the ids and tokenize the output. By default, we use ngram order of 4. Also, this does not have beam search. Args: predictions: tensor, model predictions. ...
tensor2tensor/utils/sari_hook.py
def sari_score(predictions, labels, features, **unused_kwargs): """Computes the SARI scores from the given source, prediction and targets. An approximate SARI scoring method since we do not glue word pieces or decode the ids and tokenize the output. By default, we use ngram order of 4. Also, this does not have...
def sari_score(predictions, labels, features, **unused_kwargs): """Computes the SARI scores from the given source, prediction and targets. An approximate SARI scoring method since we do not glue word pieces or decode the ids and tokenize the output. By default, we use ngram order of 4. Also, this does not have...
[ "Computes", "the", "SARI", "scores", "from", "the", "given", "source", "prediction", "and", "targets", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/sari_hook.py#L224-L252
[ "def", "sari_score", "(", "predictions", ",", "labels", ",", "features", ",", "*", "*", "unused_kwargs", ")", ":", "if", "\"inputs\"", "not", "in", "features", ":", "raise", "ValueError", "(", "\"sari_score requires inputs feature\"", ")", "# Convert the inputs and ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_get_mnist
Download all MNIST files to directory unless they are there.
tensor2tensor/data_generators/mnist.py
def _get_mnist(directory): """Download all MNIST files to directory unless they are there.""" for filename in [ _MNIST_TRAIN_DATA_FILENAME, _MNIST_TRAIN_LABELS_FILENAME, _MNIST_TEST_DATA_FILENAME, _MNIST_TEST_LABELS_FILENAME ]: generator_utils.maybe_download(directory, filename, _MNIST_URL + filen...
def _get_mnist(directory): """Download all MNIST files to directory unless they are there.""" for filename in [ _MNIST_TRAIN_DATA_FILENAME, _MNIST_TRAIN_LABELS_FILENAME, _MNIST_TEST_DATA_FILENAME, _MNIST_TEST_LABELS_FILENAME ]: generator_utils.maybe_download(directory, filename, _MNIST_URL + filen...
[ "Download", "all", "MNIST", "files", "to", "directory", "unless", "they", "are", "there", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L42-L48
[ "def", "_get_mnist", "(", "directory", ")", ":", "for", "filename", "in", "[", "_MNIST_TRAIN_DATA_FILENAME", ",", "_MNIST_TRAIN_LABELS_FILENAME", ",", "_MNIST_TEST_DATA_FILENAME", ",", "_MNIST_TEST_LABELS_FILENAME", "]", ":", "generator_utils", ".", "maybe_download", "(",...
272500b6efe353aeb638d2745ed56e519462ca31
train
_extract_mnist_images
Extract images from an MNIST file into a numpy array. Args: filename: The path to an MNIST images file. num_images: The number of images in the file. Returns: A numpy array of shape [number_of_images, height, width, channels].
tensor2tensor/data_generators/mnist.py
def _extract_mnist_images(filename, num_images): """Extract images from an MNIST file into a numpy array. Args: filename: The path to an MNIST images file. num_images: The number of images in the file. Returns: A numpy array of shape [number_of_images, height, width, channels]. """ with gzip.ope...
def _extract_mnist_images(filename, num_images): """Extract images from an MNIST file into a numpy array. Args: filename: The path to an MNIST images file. num_images: The number of images in the file. Returns: A numpy array of shape [number_of_images, height, width, channels]. """ with gzip.ope...
[ "Extract", "images", "from", "an", "MNIST", "file", "into", "a", "numpy", "array", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L51-L66
[ "def", "_extract_mnist_images", "(", "filename", ",", "num_images", ")", ":", "with", "gzip", ".", "open", "(", "filename", ")", "as", "bytestream", ":", "bytestream", ".", "read", "(", "16", ")", "buf", "=", "bytestream", ".", "read", "(", "_MNIST_IMAGE_S...
272500b6efe353aeb638d2745ed56e519462ca31
train
_extract_mnist_labels
Extract labels from an MNIST file into integers. Args: filename: The path to an MNIST labels file. num_labels: The number of labels in the file. Returns: A int64 numpy array of shape [num_labels]
tensor2tensor/data_generators/mnist.py
def _extract_mnist_labels(filename, num_labels): """Extract labels from an MNIST file into integers. Args: filename: The path to an MNIST labels file. num_labels: The number of labels in the file. Returns: A int64 numpy array of shape [num_labels] """ with gzip.open(filename) as bytestream: ...
def _extract_mnist_labels(filename, num_labels): """Extract labels from an MNIST file into integers. Args: filename: The path to an MNIST labels file. num_labels: The number of labels in the file. Returns: A int64 numpy array of shape [num_labels] """ with gzip.open(filename) as bytestream: ...
[ "Extract", "labels", "from", "an", "MNIST", "file", "into", "integers", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L69-L83
[ "def", "_extract_mnist_labels", "(", "filename", ",", "num_labels", ")", ":", "with", "gzip", ".", "open", "(", "filename", ")", "as", "bytestream", ":", "bytestream", ".", "read", "(", "8", ")", "buf", "=", "bytestream", ".", "read", "(", "num_labels", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
mnist_common_generator
Image generator for MNIST. Args: 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. data_filename: file that contains features data. label_filename: file that contains labels. ...
tensor2tensor/data_generators/mnist.py
def mnist_common_generator(tmp_dir, training, how_many, data_filename, label_filename, start_from=0): """Image generator for MNIST. Args: tmp_dir: path to temporary storage dir...
def mnist_common_generator(tmp_dir, training, how_many, data_filename, label_filename, start_from=0): """Image generator for MNIST. Args: tmp_dir: path to temporary storage dir...
[ "Image", "generator", "for", "MNIST", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L86-L114
[ "def", "mnist_common_generator", "(", "tmp_dir", ",", "training", ",", "how_many", ",", "data_filename", ",", "label_filename", ",", "start_from", "=", "0", ")", ":", "data_path", "=", "os", ".", "path", ".", "join", "(", "tmp_dir", ",", "data_filename", ")"...
272500b6efe353aeb638d2745ed56e519462ca31
train
mnist_generator
Image generator for MNIST. Args: 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 image to start. Returns: An instance of image_generator that produ...
tensor2tensor/data_generators/mnist.py
def mnist_generator(tmp_dir, training, how_many, start_from=0): """Image generator for MNIST. Args: 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...
def mnist_generator(tmp_dir, training, how_many, start_from=0): """Image generator for MNIST. Args: 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...
[ "Image", "generator", "for", "MNIST", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L117-L132
[ "def", "mnist_generator", "(", "tmp_dir", ",", "training", ",", "how_many", ",", "start_from", "=", "0", ")", ":", "_get_mnist", "(", "tmp_dir", ")", "d", "=", "_MNIST_TRAIN_DATA_FILENAME", "if", "training", "else", "_MNIST_TEST_DATA_FILENAME", "l", "=", "_MNIST...
272500b6efe353aeb638d2745ed56e519462ca31
train
_get_fashion_mnist
Download all FashionMNIST files to directory unless they are there.
tensor2tensor/data_generators/mnist.py
def _get_fashion_mnist(directory): """Download all FashionMNIST files to directory unless they are there.""" # Fashion mnist files have the same names as MNIST. # We must choose a separate name (by adding 'fashion-' prefix) in the tmp_dir. for filename in [ _MNIST_TRAIN_DATA_FILENAME, _MNIST_TRAIN_LABELS_...
def _get_fashion_mnist(directory): """Download all FashionMNIST files to directory unless they are there.""" # Fashion mnist files have the same names as MNIST. # We must choose a separate name (by adding 'fashion-' prefix) in the tmp_dir. for filename in [ _MNIST_TRAIN_DATA_FILENAME, _MNIST_TRAIN_LABELS_...
[ "Download", "all", "FashionMNIST", "files", "to", "directory", "unless", "they", "are", "there", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L191-L201
[ "def", "_get_fashion_mnist", "(", "directory", ")", ":", "# Fashion mnist files have the same names as MNIST.", "# We must choose a separate name (by adding 'fashion-' prefix) in the tmp_dir.", "for", "filename", "in", "[", "_MNIST_TRAIN_DATA_FILENAME", ",", "_MNIST_TRAIN_LABELS_FILENAME...
272500b6efe353aeb638d2745ed56e519462ca31
train
fashion_mnist_generator
Image generator for FashionMNIST. Args: 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 image to start. Returns: An instance of image_generator tha...
tensor2tensor/data_generators/mnist.py
def fashion_mnist_generator(tmp_dir, training, how_many, start_from=0): """Image generator for FashionMNIST. Args: 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: ...
def fashion_mnist_generator(tmp_dir, training, how_many, start_from=0): """Image generator for FashionMNIST. Args: 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: ...
[ "Image", "generator", "for", "FashionMNIST", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/mnist.py#L204-L221
[ "def", "fashion_mnist_generator", "(", "tmp_dir", ",", "training", ",", "how_many", ",", "start_from", "=", "0", ")", ":", "_get_fashion_mnist", "(", "tmp_dir", ")", "d", "=", "_FASHION_MNIST_LOCAL_FILE_PREFIX", "+", "(", "_MNIST_TRAIN_DATA_FILENAME", "if", "trainin...
272500b6efe353aeb638d2745ed56e519462ca31
train
generate_data
Generates synthetic timeseries using input parameters. Each generated timeseries has timeseries_length data points. Parameters for each timeseries are specified by timeseries_params. Args: timeseries_length: Number of data points to generate for each timeseries. timeseries_params: Parameters used to gen...
tensor2tensor/data_generators/timeseries_data_generator.py
def generate_data(timeseries_length, timeseries_params): """Generates synthetic timeseries using input parameters. Each generated timeseries has timeseries_length data points. Parameters for each timeseries are specified by timeseries_params. Args: timeseries_length: Number of data points to generate for ...
def generate_data(timeseries_length, timeseries_params): """Generates synthetic timeseries using input parameters. Each generated timeseries has timeseries_length data points. Parameters for each timeseries are specified by timeseries_params. Args: timeseries_length: Number of data points to generate for ...
[ "Generates", "synthetic", "timeseries", "using", "input", "parameters", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/timeseries_data_generator.py#L24-L63
[ "def", "generate_data", "(", "timeseries_length", ",", "timeseries_params", ")", ":", "x", "=", "range", "(", "timeseries_length", ")", "multi_timeseries", "=", "[", "]", "for", "p", "in", "timeseries_params", ":", "# Trend", "y1", "=", "[", "p", "[", "\"m\"...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_basic_stochastic
Basic 2-frame conv model with stochastic tower.
tensor2tensor/models/video/basic_stochastic.py
def next_frame_basic_stochastic(): """Basic 2-frame conv model with stochastic tower.""" hparams = basic_deterministic_params.next_frame_basic_deterministic() hparams.stochastic_model = True hparams.add_hparam("latent_channels", 1) hparams.add_hparam("latent_std_min", -5.0) hparams.add_hparam("num_iteration...
def next_frame_basic_stochastic(): """Basic 2-frame conv model with stochastic tower.""" hparams = basic_deterministic_params.next_frame_basic_deterministic() hparams.stochastic_model = True hparams.add_hparam("latent_channels", 1) hparams.add_hparam("latent_std_min", -5.0) hparams.add_hparam("num_iteration...
[ "Basic", "2", "-", "frame", "conv", "model", "with", "stochastic", "tower", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_stochastic.py#L215-L231
[ "def", "next_frame_basic_stochastic", "(", ")", ":", "hparams", "=", "basic_deterministic_params", ".", "next_frame_basic_deterministic", "(", ")", "hparams", ".", "stochastic_model", "=", "True", "hparams", ".", "add_hparam", "(", "\"latent_channels\"", ",", "1", ")"...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_sampling_stochastic
Basic 2-frame conv model with stochastic tower.
tensor2tensor/models/video/basic_stochastic.py
def next_frame_sampling_stochastic(): """Basic 2-frame conv model with stochastic tower.""" hparams = basic_deterministic_params.next_frame_sampling() hparams.stochastic_model = True hparams.add_hparam("latent_channels", 1) hparams.add_hparam("latent_std_min", -5.0) hparams.add_hparam("num_iterations_1st_st...
def next_frame_sampling_stochastic(): """Basic 2-frame conv model with stochastic tower.""" hparams = basic_deterministic_params.next_frame_sampling() hparams.stochastic_model = True hparams.add_hparam("latent_channels", 1) hparams.add_hparam("latent_std_min", -5.0) hparams.add_hparam("num_iterations_1st_st...
[ "Basic", "2", "-", "frame", "conv", "model", "with", "stochastic", "tower", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_stochastic.py#L235-L251
[ "def", "next_frame_sampling_stochastic", "(", ")", ":", "hparams", "=", "basic_deterministic_params", ".", "next_frame_sampling", "(", ")", "hparams", ".", "stochastic_model", "=", "True", "hparams", ".", "add_hparam", "(", "\"latent_channels\"", ",", "1", ")", "hpa...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_basic_stochastic_discrete
Basic 2-frame conv model with stochastic discrete latent.
tensor2tensor/models/video/basic_stochastic.py
def next_frame_basic_stochastic_discrete(): """Basic 2-frame conv model with stochastic discrete latent.""" hparams = basic_deterministic_params.next_frame_sampling() hparams.batch_size = 4 hparams.video_num_target_frames = 6 hparams.scheduled_sampling_mode = "prob_inverse_lin" hparams.scheduled_sampling_de...
def next_frame_basic_stochastic_discrete(): """Basic 2-frame conv model with stochastic discrete latent.""" hparams = basic_deterministic_params.next_frame_sampling() hparams.batch_size = 4 hparams.video_num_target_frames = 6 hparams.scheduled_sampling_mode = "prob_inverse_lin" hparams.scheduled_sampling_de...
[ "Basic", "2", "-", "frame", "conv", "model", "with", "stochastic", "discrete", "latent", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_stochastic.py#L255-L282
[ "def", "next_frame_basic_stochastic_discrete", "(", ")", ":", "hparams", "=", "basic_deterministic_params", ".", "next_frame_sampling", "(", ")", "hparams", ".", "batch_size", "=", "4", "hparams", ".", "video_num_target_frames", "=", "6", "hparams", ".", "scheduled_sa...
272500b6efe353aeb638d2745ed56e519462ca31
train
next_frame_stochastic_discrete_range
Next frame stochastic discrete tuning grid.
tensor2tensor/models/video/basic_stochastic.py
def next_frame_stochastic_discrete_range(rhp): """Next frame stochastic discrete tuning grid.""" rhp.set_float("learning_rate_constant", 0.001, 0.01) rhp.set_float("dropout", 0.2, 0.6) rhp.set_int("filter_double_steps", 3, 5) rhp.set_discrete("hidden_size", [64, 96, 128]) rhp.set_discrete("bottleneck_bits",...
def next_frame_stochastic_discrete_range(rhp): """Next frame stochastic discrete tuning grid.""" rhp.set_float("learning_rate_constant", 0.001, 0.01) rhp.set_float("dropout", 0.2, 0.6) rhp.set_int("filter_double_steps", 3, 5) rhp.set_discrete("hidden_size", [64, 96, 128]) rhp.set_discrete("bottleneck_bits",...
[ "Next", "frame", "stochastic", "discrete", "tuning", "grid", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/video/basic_stochastic.py#L295-L303
[ "def", "next_frame_stochastic_discrete_range", "(", "rhp", ")", ":", "rhp", ".", "set_float", "(", "\"learning_rate_constant\"", ",", "0.001", ",", "0.01", ")", "rhp", ".", "set_float", "(", "\"dropout\"", ",", "0.2", ",", "0.6", ")", "rhp", ".", "set_int", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
nested_map
Map the function f to the nested structure x (dicts, tuples, lists).
tensor2tensor/trax/layers/base.py
def nested_map(x, f): """Map the function f to the nested structure x (dicts, tuples, lists).""" if isinstance(x, list): return [nested_map(y, f) for y in x] if isinstance(x, tuple): return tuple([nested_map(y, f) for y in x]) if isinstance(x, dict): return {k: nested_map(x[k], f) for k in x} retu...
def nested_map(x, f): """Map the function f to the nested structure x (dicts, tuples, lists).""" if isinstance(x, list): return [nested_map(y, f) for y in x] if isinstance(x, tuple): return tuple([nested_map(y, f) for y in x]) if isinstance(x, dict): return {k: nested_map(x[k], f) for k in x} retu...
[ "Map", "the", "function", "f", "to", "the", "nested", "structure", "x", "(", "dicts", "tuples", "lists", ")", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L147-L155
[ "def", "nested_map", "(", "x", ",", "f", ")", ":", "if", "isinstance", "(", "x", ",", "list", ")", ":", "return", "[", "nested_map", "(", "y", ",", "f", ")", "for", "y", "in", "x", "]", "if", "isinstance", "(", "x", ",", "tuple", ")", ":", "r...
272500b6efe353aeb638d2745ed56e519462ca31
train
shapes
Get a structure of shapes for a structure of nested arrays.
tensor2tensor/trax/layers/base.py
def shapes(x): """Get a structure of shapes for a structure of nested arrays.""" def shape(x): try: return x.shape except Exception: # pylint: disable=broad-except return [] return nested_map(x, shape)
def shapes(x): """Get a structure of shapes for a structure of nested arrays.""" def shape(x): try: return x.shape except Exception: # pylint: disable=broad-except return [] return nested_map(x, shape)
[ "Get", "a", "structure", "of", "shapes", "for", "a", "structure", "of", "nested", "arrays", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L169-L176
[ "def", "shapes", "(", "x", ")", ":", "def", "shape", "(", "x", ")", ":", "try", ":", "return", "x", ".", "shape", "except", "Exception", ":", "# pylint: disable=broad-except", "return", "[", "]", "return", "nested_map", "(", "x", ",", "shape", ")" ]
272500b6efe353aeb638d2745ed56e519462ca31
train
sizes
Get a structure of sizes for a structure of nested arrays.
tensor2tensor/trax/layers/base.py
def sizes(x): """Get a structure of sizes for a structure of nested arrays.""" def size(x): try: return x.size except Exception: # pylint: disable=broad-except return 0 return nested_map(x, size)
def sizes(x): """Get a structure of sizes for a structure of nested arrays.""" def size(x): try: return x.size except Exception: # pylint: disable=broad-except return 0 return nested_map(x, size)
[ "Get", "a", "structure", "of", "sizes", "for", "a", "structure", "of", "nested", "arrays", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L179-L186
[ "def", "sizes", "(", "x", ")", ":", "def", "size", "(", "x", ")", ":", "try", ":", "return", "x", ".", "size", "except", "Exception", ":", "# pylint: disable=broad-except", "return", "0", "return", "nested_map", "(", "x", ",", "size", ")" ]
272500b6efe353aeb638d2745ed56e519462ca31
train
_find_frame
Find the frame with the caller on the stack.
tensor2tensor/trax/layers/base.py
def _find_frame(stack, start=0): """Find the frame with the caller on the stack.""" # We want to find the first place where the layer was called # that is *not* an __init__ function of an inheriting layer. frame = inspect.getframeinfo(stack[start][0]) # If we are in an init, move on. if frame.function == '_...
def _find_frame(stack, start=0): """Find the frame with the caller on the stack.""" # We want to find the first place where the layer was called # that is *not* an __init__ function of an inheriting layer. frame = inspect.getframeinfo(stack[start][0]) # If we are in an init, move on. if frame.function == '_...
[ "Find", "the", "frame", "with", "the", "caller", "on", "the", "stack", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L189-L197
[ "def", "_find_frame", "(", "stack", ",", "start", "=", "0", ")", ":", "# We want to find the first place where the layer was called", "# that is *not* an __init__ function of an inheriting layer.", "frame", "=", "inspect", ".", "getframeinfo", "(", "stack", "[", "start", "]...
272500b6efe353aeb638d2745ed56e519462ca31
train
_shorten_file_path
Shorten file path in error lines for more readable tracebacks.
tensor2tensor/trax/layers/base.py
def _shorten_file_path(line): """Shorten file path in error lines for more readable tracebacks.""" start = line.lower().find('file') if start < 0: return line first_quote = line.find('"', start) if first_quote < 0: return line second_quote = line.find('"', first_quote + 1) if second_quote < 0: ...
def _shorten_file_path(line): """Shorten file path in error lines for more readable tracebacks.""" start = line.lower().find('file') if start < 0: return line first_quote = line.find('"', start) if first_quote < 0: return line second_quote = line.find('"', first_quote + 1) if second_quote < 0: ...
[ "Shorten", "file", "path", "in", "error", "lines", "for", "more", "readable", "tracebacks", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L200-L213
[ "def", "_shorten_file_path", "(", "line", ")", ":", "start", "=", "line", ".", "lower", "(", ")", ".", "find", "(", "'file'", ")", "if", "start", "<", "0", ":", "return", "line", "first_quote", "=", "line", ".", "find", "(", "'\"'", ",", "start", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
_short_traceback
Cleaned-up form of traceback.
tensor2tensor/trax/layers/base.py
def _short_traceback(skip=3): """Cleaned-up form of traceback.""" counter, res = 0, [] # Skipping 3 lines by default: the top (useless) and self-call. lines = traceback.format_exc().splitlines()[skip:] for l in lines: res.append(_shorten_file_path(l)) if counter % 2 == 1: res.append('') coun...
def _short_traceback(skip=3): """Cleaned-up form of traceback.""" counter, res = 0, [] # Skipping 3 lines by default: the top (useless) and self-call. lines = traceback.format_exc().splitlines()[skip:] for l in lines: res.append(_shorten_file_path(l)) if counter % 2 == 1: res.append('') coun...
[ "Cleaned", "-", "up", "form", "of", "traceback", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L216-L232
[ "def", "_short_traceback", "(", "skip", "=", "3", ")", ":", "counter", ",", "res", "=", "0", ",", "[", "]", "# Skipping 3 lines by default: the top (useless) and self-call.", "lines", "=", "traceback", ".", "format_exc", "(", ")", ".", "splitlines", "(", ")", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
layer
Create a layer class from a function.
tensor2tensor/trax/layers/base.py
def layer(output_shape=None, new_parameters=None): """Create a layer class from a function.""" def layer_decorator(call): """Decorating the call function.""" def output_shape_fun(self, input_shape): if output_shape is None: return input_shape kwargs = self._init_kwargs # pylint: disable...
def layer(output_shape=None, new_parameters=None): """Create a layer class from a function.""" def layer_decorator(call): """Decorating the call function.""" def output_shape_fun(self, input_shape): if output_shape is None: return input_shape kwargs = self._init_kwargs # pylint: disable...
[ "Create", "a", "layer", "class", "from", "a", "function", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L238-L276
[ "def", "layer", "(", "output_shape", "=", "None", ",", "new_parameters", "=", "None", ")", ":", "def", "layer_decorator", "(", "call", ")", ":", "\"\"\"Decorating the call function.\"\"\"", "def", "output_shape_fun", "(", "self", ",", "input_shape", ")", ":", "i...
272500b6efe353aeb638d2745ed56e519462ca31
train
Layer.initialize
Initialize the layer given an input shape and rng. Returns new_parameters(input_shape, rng) on the first call and () on any subsequent call, as the layer is already initialized. This is used for networks that share parameters, so the layer only produces them once. Note that all arguments and return va...
tensor2tensor/trax/layers/base.py
def initialize(self, input_shape, rng): """Initialize the layer given an input shape and rng. Returns new_parameters(input_shape, rng) on the first call and () on any subsequent call, as the layer is already initialized. This is used for networks that share parameters, so the layer only produces them o...
def initialize(self, input_shape, rng): """Initialize the layer given an input shape and rng. Returns new_parameters(input_shape, rng) on the first call and () on any subsequent call, as the layer is already initialized. This is used for networks that share parameters, so the layer only produces them o...
[ "Initialize", "the", "layer", "given", "an", "input", "shape", "and", "rng", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/trax/layers/base.py#L74-L102
[ "def", "initialize", "(", "self", ",", "input_shape", ",", "rng", ")", ":", "try", ":", "# Re-using this layer, no new parameters.", "if", "not", "self", ".", "_first_init", ":", "return", "(", ")", "# First call of this layer, create parameters.", "self", ".", "_fi...
272500b6efe353aeb638d2745ed56e519462ca31
train
_references_content
Returns dict<str ref_url, str ref_content>.
tensor2tensor/data_generators/wikisum/wikisum.py
def _references_content(ref_files): """Returns dict<str ref_url, str ref_content>.""" example_spec = { "url": tf.FixedLenFeature([], tf.string), "content": tf.FixedLenFeature([], tf.string), } data = {} for ex in generator_utils.tfrecord_iterator( ref_files, gzipped=True, example_spec=exampl...
def _references_content(ref_files): """Returns dict<str ref_url, str ref_content>.""" example_spec = { "url": tf.FixedLenFeature([], tf.string), "content": tf.FixedLenFeature([], tf.string), } data = {} for ex in generator_utils.tfrecord_iterator( ref_files, gzipped=True, example_spec=exampl...
[ "Returns", "dict<str", "ref_url", "str", "ref_content", ">", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L248-L258
[ "def", "_references_content", "(", "ref_files", ")", ":", "example_spec", "=", "{", "\"url\"", ":", "tf", ".", "FixedLenFeature", "(", "[", "]", ",", "tf", ".", "string", ")", ",", "\"content\"", ":", "tf", ".", "FixedLenFeature", "(", "[", "]", ",", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
_wiki_urls_for_shard
Urls for chunk: dict<str wiki_url, list<str> ref_urls>.
tensor2tensor/data_generators/wikisum/wikisum.py
def _wiki_urls_for_shard(shard_id, urls_dir=None): """Urls for chunk: dict<str wiki_url, list<str> ref_urls>.""" urls_dir = urls_dir or WIKI_URLS_DIR urls_filepath = os.path.join(urls_dir, WIKI_URLS_FILE % shard_id) with tf.gfile.GFile(urls_filepath) as f: return json.loads(f.read())
def _wiki_urls_for_shard(shard_id, urls_dir=None): """Urls for chunk: dict<str wiki_url, list<str> ref_urls>.""" urls_dir = urls_dir or WIKI_URLS_DIR urls_filepath = os.path.join(urls_dir, WIKI_URLS_FILE % shard_id) with tf.gfile.GFile(urls_filepath) as f: return json.loads(f.read())
[ "Urls", "for", "chunk", ":", "dict<str", "wiki_url", "list<str", ">", "ref_urls", ">", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L261-L266
[ "def", "_wiki_urls_for_shard", "(", "shard_id", ",", "urls_dir", "=", "None", ")", ":", "urls_dir", "=", "urls_dir", "or", "WIKI_URLS_DIR", "urls_filepath", "=", "os", ".", "path", ".", "join", "(", "urls_dir", ",", "WIKI_URLS_FILE", "%", "shard_id", ")", "w...
272500b6efe353aeb638d2745ed56e519462ca31
train
_wiki_articles
Generates WikipediaArticles from GCS that are part of shard shard_id.
tensor2tensor/data_generators/wikisum/wikisum.py
def _wiki_articles(shard_id, wikis_dir=None): """Generates WikipediaArticles from GCS that are part of shard shard_id.""" if not wikis_dir: wikis_dir = WIKI_CONTENT_DIR with tf.Graph().as_default(): dataset = tf.data.TFRecordDataset( cc_utils.readahead( os.path.join(wikis_dir, WIKI_CON...
def _wiki_articles(shard_id, wikis_dir=None): """Generates WikipediaArticles from GCS that are part of shard shard_id.""" if not wikis_dir: wikis_dir = WIKI_CONTENT_DIR with tf.Graph().as_default(): dataset = tf.data.TFRecordDataset( cc_utils.readahead( os.path.join(wikis_dir, WIKI_CON...
[ "Generates", "WikipediaArticles", "from", "GCS", "that", "are", "part", "of", "shard", "shard_id", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L279-L323
[ "def", "_wiki_articles", "(", "shard_id", ",", "wikis_dir", "=", "None", ")", ":", "if", "not", "wikis_dir", ":", "wikis_dir", "=", "WIKI_CONTENT_DIR", "with", "tf", ".", "Graph", "(", ")", ".", "as_default", "(", ")", ":", "dataset", "=", "tf", ".", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
rank_reference_paragraphs
Rank and return reference paragraphs by tf-idf score on title tokens.
tensor2tensor/data_generators/wikisum/wikisum.py
def rank_reference_paragraphs(wiki_title, references_content, normalize=True): """Rank and return reference paragraphs by tf-idf score on title tokens.""" normalized_title = _normalize_text(wiki_title) title_tokens = _tokens_to_score( set(tokenizer.encode(text_encoder.native_to_unicode(normalized_title)))) ...
def rank_reference_paragraphs(wiki_title, references_content, normalize=True): """Rank and return reference paragraphs by tf-idf score on title tokens.""" normalized_title = _normalize_text(wiki_title) title_tokens = _tokens_to_score( set(tokenizer.encode(text_encoder.native_to_unicode(normalized_title)))) ...
[ "Rank", "and", "return", "reference", "paragraphs", "by", "tf", "-", "idf", "score", "on", "title", "tokens", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L348-L379
[ "def", "rank_reference_paragraphs", "(", "wiki_title", ",", "references_content", ",", "normalize", "=", "True", ")", ":", "normalized_title", "=", "_normalize_text", "(", "wiki_title", ")", "title_tokens", "=", "_tokens_to_score", "(", "set", "(", "tokenizer", ".",...
272500b6efe353aeb638d2745ed56e519462ca31
train
produce_examples
Produce examples from shard_ids to out_filepaths.
tensor2tensor/data_generators/wikisum/wikisum.py
def produce_examples(shard_ids, wikis_dir, refs_dir, urls_dir, vocab_path, out_filepaths): """Produce examples from shard_ids to out_filepaths.""" # * Join the Wikipedia articles with their references # * Run Tf-idf to sort reference paragraphs # * Encode the Wikipedia and reference text wi...
def produce_examples(shard_ids, wikis_dir, refs_dir, urls_dir, vocab_path, out_filepaths): """Produce examples from shard_ids to out_filepaths.""" # * Join the Wikipedia articles with their references # * Run Tf-idf to sort reference paragraphs # * Encode the Wikipedia and reference text wi...
[ "Produce", "examples", "from", "shard_ids", "to", "out_filepaths", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L382-L481
[ "def", "produce_examples", "(", "shard_ids", ",", "wikis_dir", ",", "refs_dir", ",", "urls_dir", ",", "vocab_path", ",", "out_filepaths", ")", ":", "# * Join the Wikipedia articles with their references", "# * Run Tf-idf to sort reference paragraphs", "# * Encode the Wikipedia an...
272500b6efe353aeb638d2745ed56e519462ca31
train
_encode_wiki_sections
Encodes sections with vocab. Returns ids and section boundaries.
tensor2tensor/data_generators/wikisum/wikisum.py
def _encode_wiki_sections(sections, vocab): """Encodes sections with vocab. Returns ids and section boundaries.""" ids = [] section_boundaries = [] for i, section in enumerate(sections): if i > 0: # Skip including article title ids.extend(vocab.encode(_format_title(_normalize_text(section.title)...
def _encode_wiki_sections(sections, vocab): """Encodes sections with vocab. Returns ids and section boundaries.""" ids = [] section_boundaries = [] for i, section in enumerate(sections): if i > 0: # Skip including article title ids.extend(vocab.encode(_format_title(_normalize_text(section.title)...
[ "Encodes", "sections", "with", "vocab", ".", "Returns", "ids", "and", "section", "boundaries", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L488-L499
[ "def", "_encode_wiki_sections", "(", "sections", ",", "vocab", ")", ":", "ids", "=", "[", "]", "section_boundaries", "=", "[", "]", "for", "i", ",", "section", "in", "enumerate", "(", "sections", ")", ":", "if", "i", ">", "0", ":", "# Skip including arti...
272500b6efe353aeb638d2745ed56e519462ca31
train
extract_references_from_wets
Extract references from WET files into sharded output files.
tensor2tensor/data_generators/wikisum/wikisum.py
def extract_references_from_wets(wet_files, metadata_dir, out_dir, tmp_dir=None): """Extract references from WET files into sharded output files.""" # Setup output files shard_files = make_ref_shard_files(out_dir) num_refs = 0 for i, wet_file in enumerate(wet_files): num_...
def extract_references_from_wets(wet_files, metadata_dir, out_dir, tmp_dir=None): """Extract references from WET files into sharded output files.""" # Setup output files shard_files = make_ref_shard_files(out_dir) num_refs = 0 for i, wet_file in enumerate(wet_files): num_...
[ "Extract", "references", "from", "WET", "files", "into", "sharded", "output", "files", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wikisum/wikisum.py#L506-L557
[ "def", "extract_references_from_wets", "(", "wet_files", ",", "metadata_dir", ",", "out_dir", ",", "tmp_dir", "=", "None", ")", ":", "# Setup output files", "shard_files", "=", "make_ref_shard_files", "(", "out_dir", ")", "num_refs", "=", "0", "for", "i", ",", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
_dump_to_pages
Extract pages from an xml dump. Args: dump: a unicode string Returns: a list of unicode strings
tensor2tensor/data_generators/wiki.py
def _dump_to_pages(dump): """Extract pages from an xml dump. Args: dump: a unicode string Returns: a list of unicode strings """ pos = 0 ret = [] start_tag = u"<page>\n" end_tag = u"</page>\n" while True: start_pos = dump.find(start_tag, pos) if start_pos == -1: break start_...
def _dump_to_pages(dump): """Extract pages from an xml dump. Args: dump: a unicode string Returns: a list of unicode strings """ pos = 0 ret = [] start_tag = u"<page>\n" end_tag = u"</page>\n" while True: start_pos = dump.find(start_tag, pos) if start_pos == -1: break start_...
[ "Extract", "pages", "from", "an", "xml", "dump", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wiki.py#L245-L267
[ "def", "_dump_to_pages", "(", "dump", ")", ":", "pos", "=", "0", "ret", "=", "[", "]", "start_tag", "=", "u\"<page>\\n\"", "end_tag", "=", "u\"</page>\\n\"", "while", "True", ":", "start_pos", "=", "dump", ".", "find", "(", "start_tag", ",", "pos", ")", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_page_to_title
Extract the title from a page. Args: page: a unicode string Returns: a unicode string
tensor2tensor/data_generators/wiki.py
def _page_to_title(page): """Extract the title from a page. Args: page: a unicode string Returns: a unicode string """ # print("page=%s" % page) start_tag = u"<title>" end_tag = u"</title>" start_pos = page.find(start_tag) end_pos = page.find(end_tag) assert start_pos != -1 assert end_pos...
def _page_to_title(page): """Extract the title from a page. Args: page: a unicode string Returns: a unicode string """ # print("page=%s" % page) start_tag = u"<title>" end_tag = u"</title>" start_pos = page.find(start_tag) end_pos = page.find(end_tag) assert start_pos != -1 assert end_pos...
[ "Extract", "the", "title", "from", "a", "page", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wiki.py#L270-L286
[ "def", "_page_to_title", "(", "page", ")", ":", "# print(\"page=%s\" % page)", "start_tag", "=", "u\"<title>\"", "end_tag", "=", "u\"</title>\"", "start_pos", "=", "page", ".", "find", "(", "start_tag", ")", "end_pos", "=", "page", ".", "find", "(", "end_tag", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_page_to_text
Extract the text from a page. Args: page: a unicode string Returns: a unicode string
tensor2tensor/data_generators/wiki.py
def _page_to_text(page): """Extract the text from a page. Args: page: a unicode string Returns: a unicode string """ # text start tag looks like "<text ..otherstuff>" start_pos = page.find(u"<text") assert start_pos != -1 end_tag_pos = page.find(u">", start_pos) assert end_tag_pos != -1 end...
def _page_to_text(page): """Extract the text from a page. Args: page: a unicode string Returns: a unicode string """ # text start tag looks like "<text ..otherstuff>" start_pos = page.find(u"<text") assert start_pos != -1 end_tag_pos = page.find(u">", start_pos) assert end_tag_pos != -1 end...
[ "Extract", "the", "text", "from", "a", "page", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wiki.py#L289-L306
[ "def", "_page_to_text", "(", "page", ")", ":", "# text start tag looks like \"<text ..otherstuff>\"", "start_pos", "=", "page", ".", "find", "(", "u\"<text\"", ")", "assert", "start_pos", "!=", "-", "1", "end_tag_pos", "=", "page", ".", "find", "(", "u\">\"", ",...
272500b6efe353aeb638d2745ed56e519462ca31
train
_find_and_replace
Remove everything found between instances of start_string and end_string. Replace each such instance with replace_fn(removed_text) e.g. _find_and_replace(u"the [[fat]] cat [[sat]]", u"[[", u"]]", lambda x: x) = u"the fat cat sat" Args: text: a unicode string start_string: a unicode string end_s...
tensor2tensor/data_generators/wiki.py
def _find_and_replace(text, start_string, end_string, replace_fn): """Remove everything found between instances of start_string and end_string. Replace each such instance with replace_fn(removed_text) e.g. _find_and_replace(u"the [[fat]] cat [[sat]]", u"[[", u"]]", lambda x: x) = u"the fat cat sat" Args:...
def _find_and_replace(text, start_string, end_string, replace_fn): """Remove everything found between instances of start_string and end_string. Replace each such instance with replace_fn(removed_text) e.g. _find_and_replace(u"the [[fat]] cat [[sat]]", u"[[", u"]]", lambda x: x) = u"the fat cat sat" Args:...
[ "Remove", "everything", "found", "between", "instances", "of", "start_string", "and", "end_string", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wiki.py#L309-L339
[ "def", "_find_and_replace", "(", "text", ",", "start_string", ",", "end_string", ",", "replace_fn", ")", ":", "ret", "=", "u\"\"", "current_pos", "=", "0", "while", "True", ":", "start_pos", "=", "text", ".", "find", "(", "start_string", ",", "current_pos", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
_remove_double_brackets
Remove double brackets (internal links) but leave the viewable text. Args: text: a unicode string Returns: a unicode string
tensor2tensor/data_generators/wiki.py
def _remove_double_brackets(text): """Remove double brackets (internal links) but leave the viewable text. Args: text: a unicode string Returns: a unicode string """ def replacement_fn(s): if u":" in s: # this is probably a category or something like that. return "" # keep the par...
def _remove_double_brackets(text): """Remove double brackets (internal links) but leave the viewable text. Args: text: a unicode string Returns: a unicode string """ def replacement_fn(s): if u":" in s: # this is probably a category or something like that. return "" # keep the par...
[ "Remove", "double", "brackets", "(", "internal", "links", ")", "but", "leave", "the", "viewable", "text", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/wiki.py#L352-L369
[ "def", "_remove_double_brackets", "(", "text", ")", ":", "def", "replacement_fn", "(", "s", ")", ":", "if", "u\":\"", "in", "s", ":", "# this is probably a category or something like that.", "return", "\"\"", "# keep the part after the bar.", "bar_pos", "=", "s", ".",...
272500b6efe353aeb638d2745ed56e519462ca31
train
image_encoder
A stack of self attention layers.
tensor2tensor/models/research/vqa_self_attention.py
def image_encoder(image_feat, hparams, name="image_encoder", save_weights_to=None, make_image_summary=True): """A stack of self attention layers.""" x = image_feat image_hidden_size = hparams.image_hidden_size or hparams.hidden_size image_...
def image_encoder(image_feat, hparams, name="image_encoder", save_weights_to=None, make_image_summary=True): """A stack of self attention layers.""" x = image_feat image_hidden_size = hparams.image_hidden_size or hparams.hidden_size image_...
[ "A", "stack", "of", "self", "attention", "layers", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L262-L313
[ "def", "image_encoder", "(", "image_feat", ",", "hparams", ",", "name", "=", "\"image_encoder\"", ",", "save_weights_to", "=", "None", ",", "make_image_summary", "=", "True", ")", ":", "x", "=", "image_feat", "image_hidden_size", "=", "hparams", ".", "image_hidd...
272500b6efe353aeb638d2745ed56e519462ca31
train
prepare_question_encoder
Prepare question encoder. Args: inputs: a Tensor. hparams: run hyperparameters Returns: encoder_input: a Tensor, bottom of encoder stack encoder_self_attention_bias: a bias tensor for use in encoder self-attention
tensor2tensor/models/research/vqa_self_attention.py
def prepare_question_encoder(inputs, hparams): """Prepare question encoder. Args: inputs: a Tensor. hparams: run hyperparameters Returns: encoder_input: a Tensor, bottom of encoder stack encoder_self_attention_bias: a bias tensor for use in encoder self-attention """ encoder_input = inputs ...
def prepare_question_encoder(inputs, hparams): """Prepare question encoder. Args: inputs: a Tensor. hparams: run hyperparameters Returns: encoder_input: a Tensor, bottom of encoder stack encoder_self_attention_bias: a bias tensor for use in encoder self-attention """ encoder_input = inputs ...
[ "Prepare", "question", "encoder", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L316-L339
[ "def", "prepare_question_encoder", "(", "inputs", ",", "hparams", ")", ":", "encoder_input", "=", "inputs", "# Usual case - not a packed dataset.", "encoder_padding", "=", "common_attention", ".", "embedding_to_padding", "(", "encoder_input", ")", "ignore_padding", "=", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
question_encoder
A stack of self attention layers.
tensor2tensor/models/research/vqa_self_attention.py
def question_encoder(question, question_self_attention_bias, hparams, name="question_encoder", save_weights_to=None, make_image_summary=True): """A stack of self attention layers.""" x = question with tf.varia...
def question_encoder(question, question_self_attention_bias, hparams, name="question_encoder", save_weights_to=None, make_image_summary=True): """A stack of self attention layers.""" x = question with tf.varia...
[ "A", "stack", "of", "self", "attention", "layers", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L342-L392
[ "def", "question_encoder", "(", "question", ",", "question_self_attention_bias", ",", "hparams", ",", "name", "=", "\"question_encoder\"", ",", "save_weights_to", "=", "None", ",", "make_image_summary", "=", "True", ")", ":", "x", "=", "question", "with", "tf", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
attn
Attention on image feature with question as query.
tensor2tensor/models/research/vqa_self_attention.py
def attn(image_feat, query, hparams, name="attn", save_weights_to=None, make_image_summary=True): """Attention on image feature with question as query.""" with tf.variable_scope(name, "attn", values=[image_feat, query]): total_key_depth = hparams.attention_key_channe...
def attn(image_feat, query, hparams, name="attn", save_weights_to=None, make_image_summary=True): """Attention on image feature with question as query.""" with tf.variable_scope(name, "attn", values=[image_feat, query]): total_key_depth = hparams.attention_key_channe...
[ "Attention", "on", "image", "feature", "with", "question", "as", "query", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L395-L430
[ "def", "attn", "(", "image_feat", ",", "query", ",", "hparams", ",", "name", "=", "\"attn\"", ",", "save_weights_to", "=", "None", ",", "make_image_summary", "=", "True", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "\"attn\"", ",", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
mlp
Multi layer perceptron with dropout and relu activation.
tensor2tensor/models/research/vqa_self_attention.py
def mlp(feature, hparams, name="mlp"): """Multi layer perceptron with dropout and relu activation.""" with tf.variable_scope(name, "mlp", values=[feature]): num_mlp_layers = hparams.num_mlp_layers mlp_size = hparams.mlp_size for _ in range(num_mlp_layers): feature = common_layers.dense(feature, ml...
def mlp(feature, hparams, name="mlp"): """Multi layer perceptron with dropout and relu activation.""" with tf.variable_scope(name, "mlp", values=[feature]): num_mlp_layers = hparams.num_mlp_layers mlp_size = hparams.mlp_size for _ in range(num_mlp_layers): feature = common_layers.dense(feature, ml...
[ "Multi", "layer", "perceptron", "with", "dropout", "and", "relu", "activation", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L433-L445
[ "def", "mlp", "(", "feature", ",", "hparams", ",", "name", "=", "\"mlp\"", ")", ":", "with", "tf", ".", "variable_scope", "(", "name", ",", "\"mlp\"", ",", "values", "=", "[", "feature", "]", ")", ":", "num_mlp_layers", "=", "hparams", ".", "num_mlp_la...
272500b6efe353aeb638d2745ed56e519462ca31
train
prepare_image_question_encoder
Prepare encoder. Args: image_feat: a Tensor. question: a Tensor. hparams: run hyperparameters Returns: encoder_input: a Tensor, bottom of encoder stack encoder_self_attention_bias: a bias tensor for use in encoder self-attention
tensor2tensor/models/research/vqa_self_attention.py
def prepare_image_question_encoder(image_feat, question, hparams): """Prepare encoder. Args: image_feat: a Tensor. question: a Tensor. hparams: run hyperparameters Returns: encoder_input: a Tensor, bottom of encoder stack encoder_self_attention_bias: a bias tensor for use in encoder self-att...
def prepare_image_question_encoder(image_feat, question, hparams): """Prepare encoder. Args: image_feat: a Tensor. question: a Tensor. hparams: run hyperparameters Returns: encoder_input: a Tensor, bottom of encoder stack encoder_self_attention_bias: a bias tensor for use in encoder self-att...
[ "Prepare", "encoder", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L448-L477
[ "def", "prepare_image_question_encoder", "(", "image_feat", ",", "question", ",", "hparams", ")", ":", "encoder_input", "=", "tf", ".", "concat", "(", "[", "image_feat", ",", "question", "]", ",", "axis", "=", "1", ")", "encoder_padding", "=", "common_attentio...
272500b6efe353aeb638d2745ed56e519462ca31
train
image_question_encoder
A stack of self attention layers.
tensor2tensor/models/research/vqa_self_attention.py
def image_question_encoder(encoder_inputs, encoder_self_attention_bias, hparams, query=None, name="image_question_encoder", save_weights_to=None, make_image_s...
def image_question_encoder(encoder_inputs, encoder_self_attention_bias, hparams, query=None, name="image_question_encoder", save_weights_to=None, make_image_s...
[ "A", "stack", "of", "self", "attention", "layers", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L480-L557
[ "def", "image_question_encoder", "(", "encoder_inputs", ",", "encoder_self_attention_bias", ",", "hparams", ",", "query", "=", "None", ",", "name", "=", "\"image_question_encoder\"", ",", "save_weights_to", "=", "None", ",", "make_image_summary", "=", "True", ")", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
decoder
A stack of transformer layers. Args: decoder_input: a Tensor encoder_output: a Tensor decoder_self_attention_bias: bias Tensor for self-attention (see common_attention.attention_bias()) encoder_decoder_attention_bias: bias Tensor for encoder-decoder attention (see common_attention.attenti...
tensor2tensor/models/research/vqa_self_attention.py
def decoder(decoder_input, encoder_output, decoder_self_attention_bias, encoder_decoder_attention_bias, hparams, name="decoder", save_weights_to=None, make_image_summary=True,): """A stack of transformer layers. Args: decoder_i...
def decoder(decoder_input, encoder_output, decoder_self_attention_bias, encoder_decoder_attention_bias, hparams, name="decoder", save_weights_to=None, make_image_summary=True,): """A stack of transformer layers. Args: decoder_i...
[ "A", "stack", "of", "transformer", "layers", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L560-L651
[ "def", "decoder", "(", "decoder_input", ",", "encoder_output", ",", "decoder_self_attention_bias", ",", "encoder_decoder_attention_bias", ",", "hparams", ",", "name", "=", "\"decoder\"", ",", "save_weights_to", "=", "None", ",", "make_image_summary", "=", "True", ",",...
272500b6efe353aeb638d2745ed56e519462ca31
train
iterative_encoder_decoder
Iterative encoder decoder.
tensor2tensor/models/research/vqa_self_attention.py
def iterative_encoder_decoder(encoder_input, encoder_self_attention_bias, encoder_decoder_attention_bias, query, hparams): """Iterative encoder decoder.""" for _ in range(hparams.num_rec_steps): ...
def iterative_encoder_decoder(encoder_input, encoder_self_attention_bias, encoder_decoder_attention_bias, query, hparams): """Iterative encoder decoder.""" for _ in range(hparams.num_rec_steps): ...
[ "Iterative", "encoder", "decoder", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L654-L678
[ "def", "iterative_encoder_decoder", "(", "encoder_input", ",", "encoder_self_attention_bias", ",", "encoder_decoder_attention_bias", ",", "query", ",", "hparams", ")", ":", "for", "_", "in", "range", "(", "hparams", ".", "num_rec_steps", ")", ":", "with", "tf", "....
272500b6efe353aeb638d2745ed56e519462ca31
train
vqa_self_attention_base
VQA attention baseline hparams.
tensor2tensor/models/research/vqa_self_attention.py
def vqa_self_attention_base(): """VQA attention baseline hparams.""" hparams = common_hparams.basic_params1() hparams.batch_size = 128 hparams.use_fixed_batch_size = True, hparams.optimizer = "adam" hparams.optimizer_adam_beta1 = 0.9 hparams.optimizer_adam_beta2 = 0.997 hparams.optimizer_adam_epsilon = ...
def vqa_self_attention_base(): """VQA attention baseline hparams.""" hparams = common_hparams.basic_params1() hparams.batch_size = 128 hparams.use_fixed_batch_size = True, hparams.optimizer = "adam" hparams.optimizer_adam_beta1 = 0.9 hparams.optimizer_adam_beta2 = 0.997 hparams.optimizer_adam_epsilon = ...
[ "VQA", "attention", "baseline", "hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L682-L756
[ "def", "vqa_self_attention_base", "(", ")", ":", "hparams", "=", "common_hparams", ".", "basic_params1", "(", ")", "hparams", ".", "batch_size", "=", "128", "hparams", ".", "use_fixed_batch_size", "=", "True", ",", "hparams", ".", "optimizer", "=", "\"adam\"", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
vqa_self_attention_feature_batch1024_big
Big model.
tensor2tensor/models/research/vqa_self_attention.py
def vqa_self_attention_feature_batch1024_big(): """Big model.""" hparams = vqa_self_attention_feature_batch1024() hparams.learning_rate_constant = 7e-4 hparams.batch_size = 256 hparams.hidden_size = 1024 hparams.filter_size = 4096 hparams.num_heads = 16 hparams.layer_prepostprocess_dropout = 0.3 hpara...
def vqa_self_attention_feature_batch1024_big(): """Big model.""" hparams = vqa_self_attention_feature_batch1024() hparams.learning_rate_constant = 7e-4 hparams.batch_size = 256 hparams.hidden_size = 1024 hparams.filter_size = 4096 hparams.num_heads = 16 hparams.layer_prepostprocess_dropout = 0.3 hpara...
[ "Big", "model", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/models/research/vqa_self_attention.py#L774-L785
[ "def", "vqa_self_attention_feature_batch1024_big", "(", ")", ":", "hparams", "=", "vqa_self_attention_feature_batch1024", "(", ")", "hparams", ".", "learning_rate_constant", "=", "7e-4", "hparams", ".", "batch_size", "=", "256", "hparams", ".", "hidden_size", "=", "10...
272500b6efe353aeb638d2745ed56e519462ca31
train
_bucket_boundaries
A default set of length-bucket boundaries.
tensor2tensor/utils/data_reader.py
def _bucket_boundaries(max_length, min_length=8, length_bucket_step=1.1): """A default set of length-bucket boundaries.""" assert length_bucket_step > 1.0 x = min_length boundaries = [] while x < max_length: boundaries.append(x) x = max(x + 1, int(x * length_bucket_step)) return boundaries
def _bucket_boundaries(max_length, min_length=8, length_bucket_step=1.1): """A default set of length-bucket boundaries.""" assert length_bucket_step > 1.0 x = min_length boundaries = [] while x < max_length: boundaries.append(x) x = max(x + 1, int(x * length_bucket_step)) return boundaries
[ "A", "default", "set", "of", "length", "-", "bucket", "boundaries", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L69-L77
[ "def", "_bucket_boundaries", "(", "max_length", ",", "min_length", "=", "8", ",", "length_bucket_step", "=", "1.1", ")", ":", "assert", "length_bucket_step", ">", "1.0", "x", "=", "min_length", "boundaries", "=", "[", "]", "while", "x", "<", "max_length", ":...
272500b6efe353aeb638d2745ed56e519462ca31
train
batching_scheme
A batching scheme based on model hyperparameters. Every batch contains a number of sequences divisible by `shard_multiplier`. Args: batch_size: int, total number of tokens in a batch. max_length: int, sequences longer than this will be skipped. Defaults to batch_size. min_length_bucket: int ...
tensor2tensor/utils/data_reader.py
def batching_scheme(batch_size, max_length, min_length_bucket, length_bucket_step, drop_long_sequences=False, shard_multiplier=1, length_multiplier=1, min_length=0): """A batchin...
def batching_scheme(batch_size, max_length, min_length_bucket, length_bucket_step, drop_long_sequences=False, shard_multiplier=1, length_multiplier=1, min_length=0): """A batchin...
[ "A", "batching", "scheme", "based", "on", "model", "hyperparameters", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L80-L164
[ "def", "batching_scheme", "(", "batch_size", ",", "max_length", ",", "min_length_bucket", ",", "length_bucket_step", ",", "drop_long_sequences", "=", "False", ",", "shard_multiplier", "=", "1", ",", "length_multiplier", "=", "1", ",", "min_length", "=", "0", ")", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
hparams_to_batching_scheme
Wrapper around _batching_scheme with hparams.
tensor2tensor/utils/data_reader.py
def hparams_to_batching_scheme(hparams, drop_long_sequences=False, shard_multiplier=1, length_multiplier=1): """Wrapper around _batching_scheme with hparams.""" return batching_scheme( batch_size=hparams.batch_size, ...
def hparams_to_batching_scheme(hparams, drop_long_sequences=False, shard_multiplier=1, length_multiplier=1): """Wrapper around _batching_scheme with hparams.""" return batching_scheme( batch_size=hparams.batch_size, ...
[ "Wrapper", "around", "_batching_scheme", "with", "hparams", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L167-L180
[ "def", "hparams_to_batching_scheme", "(", "hparams", ",", "drop_long_sequences", "=", "False", ",", "shard_multiplier", "=", "1", ",", "length_multiplier", "=", "1", ")", ":", "return", "batching_scheme", "(", "batch_size", "=", "hparams", ".", "batch_size", ",", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
pad_for_tpu
Pads unknown features' dimensions for TPU.
tensor2tensor/utils/data_reader.py
def pad_for_tpu(shapes_dict, hparams, max_length): """Pads unknown features' dimensions for TPU.""" padded_shapes = {} def get_filler(specified_max_length): if not specified_max_length: return max_length return min(specified_max_length, max_length) inputs_none_filler = get_filler(hparams.max_inp...
def pad_for_tpu(shapes_dict, hparams, max_length): """Pads unknown features' dimensions for TPU.""" padded_shapes = {} def get_filler(specified_max_length): if not specified_max_length: return max_length return min(specified_max_length, max_length) inputs_none_filler = get_filler(hparams.max_inp...
[ "Pads", "unknown", "features", "dimensions", "for", "TPU", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L194-L218
[ "def", "pad_for_tpu", "(", "shapes_dict", ",", "hparams", ",", "max_length", ")", ":", "padded_shapes", "=", "{", "}", "def", "get_filler", "(", "specified_max_length", ")", ":", "if", "not", "specified_max_length", ":", "return", "max_length", "return", "min", ...
272500b6efe353aeb638d2745ed56e519462ca31
train
standardize_shapes
Set the right shapes for the features.
tensor2tensor/utils/data_reader.py
def standardize_shapes(features, batch_size=None): """Set the right shapes for the features.""" for fname in ["inputs", "targets"]: if fname not in features: continue f = features[fname] while len(f.get_shape()) < 4: f = tf.expand_dims(f, axis=-1) features[fname] = f if batch_size: ...
def standardize_shapes(features, batch_size=None): """Set the right shapes for the features.""" for fname in ["inputs", "targets"]: if fname not in features: continue f = features[fname] while len(f.get_shape()) < 4: f = tf.expand_dims(f, axis=-1) features[fname] = f if batch_size: ...
[ "Set", "the", "right", "shapes", "for", "the", "features", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L240-L259
[ "def", "standardize_shapes", "(", "features", ",", "batch_size", "=", "None", ")", ":", "for", "fname", "in", "[", "\"inputs\"", ",", "\"targets\"", "]", ":", "if", "fname", "not", "in", "features", ":", "continue", "f", "=", "features", "[", "fname", "]...
272500b6efe353aeb638d2745ed56e519462ca31
train
_file_num_records_cached
Return the number of TFRecords in a file.
tensor2tensor/utils/data_reader.py
def _file_num_records_cached(filename): """Return the number of TFRecords in a file.""" # Cache the result, as this is expensive to compute if filename in _file_num_records_cache: return _file_num_records_cache[filename] ret = 0 for _ in tf.python_io.tf_record_iterator(filename): ret += 1 _file_num_...
def _file_num_records_cached(filename): """Return the number of TFRecords in a file.""" # Cache the result, as this is expensive to compute if filename in _file_num_records_cache: return _file_num_records_cache[filename] ret = 0 for _ in tf.python_io.tf_record_iterator(filename): ret += 1 _file_num_...
[ "Return", "the", "number", "of", "TFRecords", "in", "a", "file", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L269-L278
[ "def", "_file_num_records_cached", "(", "filename", ")", ":", "# Cache the result, as this is expensive to compute", "if", "filename", "in", "_file_num_records_cache", ":", "return", "_file_num_records_cache", "[", "filename", "]", "ret", "=", "0", "for", "_", "in", "tf...
272500b6efe353aeb638d2745ed56e519462ca31
train
pad_batch
Pad batch dim of features to nearest multiple of batch_multiple.
tensor2tensor/utils/data_reader.py
def pad_batch(features, batch_multiple): """Pad batch dim of features to nearest multiple of batch_multiple.""" feature = list(features.items())[0][1] batch_size = tf.shape(feature)[0] mod = batch_size % batch_multiple has_mod = tf.cast(tf.cast(mod, tf.bool), tf.int32) batch_padding = batch_multiple * has_m...
def pad_batch(features, batch_multiple): """Pad batch dim of features to nearest multiple of batch_multiple.""" feature = list(features.items())[0][1] batch_size = tf.shape(feature)[0] mod = batch_size % batch_multiple has_mod = tf.cast(tf.cast(mod, tf.bool), tf.int32) batch_padding = batch_multiple * has_m...
[ "Pad", "batch", "dim", "of", "features", "to", "nearest", "multiple", "of", "batch_multiple", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L292-L307
[ "def", "pad_batch", "(", "features", ",", "batch_multiple", ")", ":", "feature", "=", "list", "(", "features", ".", "items", "(", ")", ")", "[", "0", "]", "[", "1", "]", "batch_size", "=", "tf", ".", "shape", "(", "feature", ")", "[", "0", "]", "...
272500b6efe353aeb638d2745ed56e519462ca31
train
input_fn
Builds input pipeline for problem. Args: dataset: the dataset to make input function from. filepattern: the pattern of files to read from. skip_random_fraction_when_training: whether to skip randomly when training. batch_size_means_tokens_param: whether batch size should mean tokens. batch_size_m...
tensor2tensor/utils/data_reader.py
def input_fn(dataset, filepattern, skip_random_fraction_when_training, batch_size_means_tokens_param, batch_size_multiplier, max_length, mode, hparams, data_dir=None, params=None, config=Non...
def input_fn(dataset, filepattern, skip_random_fraction_when_training, batch_size_means_tokens_param, batch_size_multiplier, max_length, mode, hparams, data_dir=None, params=None, config=Non...
[ "Builds", "input", "pipeline", "for", "problem", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/data_reader.py#L312-L572
[ "def", "input_fn", "(", "dataset", ",", "filepattern", ",", "skip_random_fraction_when_training", ",", "batch_size_means_tokens_param", ",", "batch_size_multiplier", ",", "max_length", ",", "mode", ",", "hparams", ",", "data_dir", "=", "None", ",", "params", "=", "N...
272500b6efe353aeb638d2745ed56e519462ca31
train
generate_shard_args
Generate start and end indices per outfile.
tensor2tensor/data_generators/gene_expression.py
def generate_shard_args(outfiles, num_examples): """Generate start and end indices per outfile.""" num_shards = len(outfiles) num_examples_per_shard = num_examples // num_shards start_idxs = [i * num_examples_per_shard for i in range(num_shards)] end_idxs = list(start_idxs) end_idxs.pop(0) end_idxs.append...
def generate_shard_args(outfiles, num_examples): """Generate start and end indices per outfile.""" num_shards = len(outfiles) num_examples_per_shard = num_examples // num_shards start_idxs = [i * num_examples_per_shard for i in range(num_shards)] end_idxs = list(start_idxs) end_idxs.pop(0) end_idxs.append...
[ "Generate", "start", "and", "end", "indices", "per", "outfile", "." ]
tensorflow/tensor2tensor
python
https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gene_expression.py#L208-L216
[ "def", "generate_shard_args", "(", "outfiles", ",", "num_examples", ")", ":", "num_shards", "=", "len", "(", "outfiles", ")", "num_examples_per_shard", "=", "num_examples", "//", "num_shards", "start_idxs", "=", "[", "i", "*", "num_examples_per_shard", "for", "i",...
272500b6efe353aeb638d2745ed56e519462ca31