repo stringlengths 7 55 | path stringlengths 4 223 | func_name stringlengths 1 134 | original_string stringlengths 75 104k | language stringclasses 1
value | code stringlengths 75 104k | code_tokens listlengths 19 28.4k | docstring stringlengths 1 46.9k | docstring_tokens listlengths 1 1.97k | sha stringlengths 40 40 | url stringlengths 87 315 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
tensorflow/tensor2tensor | tensor2tensor/utils/usr_dir.py | import_usr_dir | def import_usr_dir(usr_dir):
"""Import module at usr_dir, if provided."""
if not usr_dir:
return
if usr_dir == INTERNAL_USR_DIR_PACKAGE:
# The package has been installed with pip under this name for Cloud ML
# Engine so just import it.
importlib.import_module(INTERNAL_USR_DIR_PACKAGE)
return
... | python | def import_usr_dir(usr_dir):
"""Import module at usr_dir, if provided."""
if not usr_dir:
return
if usr_dir == INTERNAL_USR_DIR_PACKAGE:
# The package has been installed with pip under this name for Cloud ML
# Engine so just import it.
importlib.import_module(INTERNAL_USR_DIR_PACKAGE)
return
... | [
"def",
"import_usr_dir",
"(",
"usr_dir",
")",
":",
"if",
"not",
"usr_dir",
":",
"return",
"if",
"usr_dir",
"==",
"INTERNAL_USR_DIR_PACKAGE",
":",
"# The package has been installed with pip under this name for Cloud ML",
"# Engine so just import it.",
"importlib",
".",
"import... | Import module at usr_dir, if provided. | [
"Import",
"module",
"at",
"usr_dir",
"if",
"provided",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/usr_dir.py#L30-L46 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_hparams.py | basic_params1 | def basic_params1():
"""A set of basic hyperparameters."""
return hparam.HParams(
# If the problem consists of variable-length sequences
# (see problem.batch_size_means_tokens()), then this is the number
# of tokens per batch per GPU or per TPU core. Otherwise, this is
# the number of examp... | python | def basic_params1():
"""A set of basic hyperparameters."""
return hparam.HParams(
# If the problem consists of variable-length sequences
# (see problem.batch_size_means_tokens()), then this is the number
# of tokens per batch per GPU or per TPU core. Otherwise, this is
# the number of examp... | [
"def",
"basic_params1",
"(",
")",
":",
"return",
"hparam",
".",
"HParams",
"(",
"# If the problem consists of variable-length sequences",
"# (see problem.batch_size_means_tokens()), then this is the number",
"# of tokens per batch per GPU or per TPU core. Otherwise, this is",
"# the numbe... | A set of basic hyperparameters. | [
"A",
"set",
"of",
"basic",
"hyperparameters",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_hparams.py#L29-L351 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_hparams.py | basic_range1 | def basic_range1(ranged_hparams):
"""A basic range of hyperparameters."""
rhp = ranged_hparams
rhp.set_discrete("batch_size", [1024, 2048, 4096])
rhp.set_discrete("num_hidden_layers", [1, 2, 3, 4, 5, 6])
rhp.set_discrete("hidden_size", [32, 64, 128, 256, 512], scale=rhp.LOG_SCALE)
rhp.set_discrete("kernel_h... | python | def basic_range1(ranged_hparams):
"""A basic range of hyperparameters."""
rhp = ranged_hparams
rhp.set_discrete("batch_size", [1024, 2048, 4096])
rhp.set_discrete("num_hidden_layers", [1, 2, 3, 4, 5, 6])
rhp.set_discrete("hidden_size", [32, 64, 128, 256, 512], scale=rhp.LOG_SCALE)
rhp.set_discrete("kernel_h... | [
"def",
"basic_range1",
"(",
"ranged_hparams",
")",
":",
"rhp",
"=",
"ranged_hparams",
"rhp",
".",
"set_discrete",
"(",
"\"batch_size\"",
",",
"[",
"1024",
",",
"2048",
",",
"4096",
"]",
")",
"rhp",
".",
"set_discrete",
"(",
"\"num_hidden_layers\"",
",",
"[",... | A basic range of hyperparameters. | [
"A",
"basic",
"range",
"of",
"hyperparameters",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_hparams.py#L473-L497 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_hparams.py | RangedHParams._check_reset_and_type_change | def _check_reset_and_type_change(self, name, orig_ctr):
"""Check if name is in orig_ctr or in one of the other type containers."""
# Resetting a hyperparameter
if name in orig_ctr:
tf.logging.warning("Overwriting hparam %s", name)
ctr_names = [
(self._categorical_params, "categorical"),
... | python | def _check_reset_and_type_change(self, name, orig_ctr):
"""Check if name is in orig_ctr or in one of the other type containers."""
# Resetting a hyperparameter
if name in orig_ctr:
tf.logging.warning("Overwriting hparam %s", name)
ctr_names = [
(self._categorical_params, "categorical"),
... | [
"def",
"_check_reset_and_type_change",
"(",
"self",
",",
"name",
",",
"orig_ctr",
")",
":",
"# Resetting a hyperparameter",
"if",
"name",
"in",
"orig_ctr",
":",
"tf",
".",
"logging",
".",
"warning",
"(",
"\"Overwriting hparam %s\"",
",",
"name",
")",
"ctr_names",
... | Check if name is in orig_ctr or in one of the other type containers. | [
"Check",
"if",
"name",
"is",
"in",
"orig_ctr",
"or",
"in",
"one",
"of",
"the",
"other",
"type",
"containers",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_hparams.py#L374-L397 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_hparams.py | RangedHParams.to_parameter_specs | def to_parameter_specs(self, name_prefix=""):
"""To list of dicts suitable for Cloud ML Engine hyperparameter tuning."""
specs = []
for name, categories, _ in self._categorical_params.values():
spec = {
"parameterName": name_prefix + name,
"type": "CATEGORICAL",
"categori... | python | def to_parameter_specs(self, name_prefix=""):
"""To list of dicts suitable for Cloud ML Engine hyperparameter tuning."""
specs = []
for name, categories, _ in self._categorical_params.values():
spec = {
"parameterName": name_prefix + name,
"type": "CATEGORICAL",
"categori... | [
"def",
"to_parameter_specs",
"(",
"self",
",",
"name_prefix",
"=",
"\"\"",
")",
":",
"specs",
"=",
"[",
"]",
"for",
"name",
",",
"categories",
",",
"_",
"in",
"self",
".",
"_categorical_params",
".",
"values",
"(",
")",
":",
"spec",
"=",
"{",
"\"parame... | To list of dicts suitable for Cloud ML Engine hyperparameter tuning. | [
"To",
"list",
"of",
"dicts",
"suitable",
"for",
"Cloud",
"ML",
"Engine",
"hyperparameter",
"tuning",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_hparams.py#L426-L469 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | register_game | def register_game(game_name, game_mode="NoFrameskip-v4"):
"""Create and register problems for the game.
Args:
game_name: str, one of the games in ATARI_GAMES, e.g. "bank_heist".
game_mode: the frame skip and sticky keys config.
Raises:
ValueError: if game_name or game_mode are wrong.
"""
if game... | python | def register_game(game_name, game_mode="NoFrameskip-v4"):
"""Create and register problems for the game.
Args:
game_name: str, one of the games in ATARI_GAMES, e.g. "bank_heist".
game_mode: the frame skip and sticky keys config.
Raises:
ValueError: if game_name or game_mode are wrong.
"""
if game... | [
"def",
"register_game",
"(",
"game_name",
",",
"game_mode",
"=",
"\"NoFrameskip-v4\"",
")",
":",
"if",
"game_name",
"not",
"in",
"ATARI_GAMES",
":",
"raise",
"ValueError",
"(",
"\"Game %s not in ATARI_GAMES\"",
"%",
"game_name",
")",
"if",
"game_mode",
"not",
"in"... | Create and register problems for the game.
Args:
game_name: str, one of the games in ATARI_GAMES, e.g. "bank_heist".
game_mode: the frame skip and sticky keys config.
Raises:
ValueError: if game_name or game_mode are wrong. | [
"Create",
"and",
"register",
"problems",
"for",
"the",
"game",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L884-L902 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv._decode_png | def _decode_png(self, encoded_observation):
"""Decodes a single observation from PNG."""
return self._session.obj.run(
self._decoded_image_t.obj,
feed_dict={self._encoded_image_p.obj: encoded_observation}
) | python | def _decode_png(self, encoded_observation):
"""Decodes a single observation from PNG."""
return self._session.obj.run(
self._decoded_image_t.obj,
feed_dict={self._encoded_image_p.obj: encoded_observation}
) | [
"def",
"_decode_png",
"(",
"self",
",",
"encoded_observation",
")",
":",
"return",
"self",
".",
"_session",
".",
"obj",
".",
"run",
"(",
"self",
".",
"_decoded_image_t",
".",
"obj",
",",
"feed_dict",
"=",
"{",
"self",
".",
"_encoded_image_p",
".",
"obj",
... | Decodes a single observation from PNG. | [
"Decodes",
"a",
"single",
"observation",
"from",
"PNG",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L227-L232 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv._encode_observations | def _encode_observations(self, observations):
"""Encodes observations as PNG."""
return [
Observation(
self._session.obj.run(
self._encoded_image_t.obj,
feed_dict={self._decoded_image_p.obj: observation}
),
self._decode_png
)
... | python | def _encode_observations(self, observations):
"""Encodes observations as PNG."""
return [
Observation(
self._session.obj.run(
self._encoded_image_t.obj,
feed_dict={self._decoded_image_p.obj: observation}
),
self._decode_png
)
... | [
"def",
"_encode_observations",
"(",
"self",
",",
"observations",
")",
":",
"return",
"[",
"Observation",
"(",
"self",
".",
"_session",
".",
"obj",
".",
"run",
"(",
"self",
".",
"_encoded_image_t",
".",
"obj",
",",
"feed_dict",
"=",
"{",
"self",
".",
"_de... | Encodes observations as PNG. | [
"Encodes",
"observations",
"as",
"PNG",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L234-L245 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv.step | def step(self, actions):
"""Makes a step in all environments.
Does any preprocessing and records frames.
Args:
actions: Batch of actions.
Returns:
(obs, rewards, dones) - batches of observations, rewards and done flags
respectively.
Raises:
ValueError: when the data for c... | python | def step(self, actions):
"""Makes a step in all environments.
Does any preprocessing and records frames.
Args:
actions: Batch of actions.
Returns:
(obs, rewards, dones) - batches of observations, rewards and done flags
respectively.
Raises:
ValueError: when the data for c... | [
"def",
"step",
"(",
"self",
",",
"actions",
")",
":",
"if",
"self",
".",
"_store_rollouts",
"and",
"self",
".",
"_rollouts_by_epoch_and_split",
"[",
"self",
".",
"current_epoch",
"]",
":",
"raise",
"ValueError",
"(",
"\"Data for current epoch has already been loaded... | Makes a step in all environments.
Does any preprocessing and records frames.
Args:
actions: Batch of actions.
Returns:
(obs, rewards, dones) - batches of observations, rewards and done flags
respectively.
Raises:
ValueError: when the data for current epoch has already been lo... | [
"Makes",
"a",
"step",
"in",
"all",
"environments",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L264-L301 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv.reset | def reset(self, indices=None):
"""Resets environments at given indices.
Does any preprocessing and adds rollouts to history.
Args:
indices: Indices of environments to reset.
Returns:
Batch of initial observations of reset environments.
Raises:
ValueError: when there's no curren... | python | def reset(self, indices=None):
"""Resets environments at given indices.
Does any preprocessing and adds rollouts to history.
Args:
indices: Indices of environments to reset.
Returns:
Batch of initial observations of reset environments.
Raises:
ValueError: when there's no curren... | [
"def",
"reset",
"(",
"self",
",",
"indices",
"=",
"None",
")",
":",
"if",
"self",
".",
"_store_rollouts",
"and",
"self",
".",
"current_epoch",
"is",
"None",
":",
"raise",
"ValueError",
"(",
"\"No current epoch. start_new_epoch() should first be called.\"",
")",
"i... | Resets environments at given indices.
Does any preprocessing and adds rollouts to history.
Args:
indices: Indices of environments to reset.
Returns:
Batch of initial observations of reset environments.
Raises:
ValueError: when there's no current epoch. | [
"Resets",
"environments",
"at",
"given",
"indices",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L314-L351 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv.extra_reading_spec | def extra_reading_spec(self):
"""Additional data fields to store on disk and their decoders."""
field_names = ("frame_number", "action", "reward", "done")
data_fields = {
name: tf.FixedLenFeature([1], tf.int64) for name in field_names
}
decoders = {
name: tf.contrib.slim.tfexample_de... | python | def extra_reading_spec(self):
"""Additional data fields to store on disk and their decoders."""
field_names = ("frame_number", "action", "reward", "done")
data_fields = {
name: tf.FixedLenFeature([1], tf.int64) for name in field_names
}
decoders = {
name: tf.contrib.slim.tfexample_de... | [
"def",
"extra_reading_spec",
"(",
"self",
")",
":",
"field_names",
"=",
"(",
"\"frame_number\"",
",",
"\"action\"",
",",
"\"reward\"",
",",
"\"done\"",
")",
"data_fields",
"=",
"{",
"name",
":",
"tf",
".",
"FixedLenFeature",
"(",
"[",
"1",
"]",
",",
"tf",
... | Additional data fields to store on disk and their decoders. | [
"Additional",
"data",
"fields",
"to",
"store",
"on",
"disk",
"and",
"their",
"decoders",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L373-L383 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv._split_current_epoch | def _split_current_epoch(self):
"""Splits frames in the current epoch according to self.dataset_splits.
Rollouts can be broken on shard boundary. This is desirable when we have
few long rollouts and we want to make sure we have data in the dev set.
"""
num_frames = self._calc_num_frames(self._curre... | python | def _split_current_epoch(self):
"""Splits frames in the current epoch according to self.dataset_splits.
Rollouts can be broken on shard boundary. This is desirable when we have
few long rollouts and we want to make sure we have data in the dev set.
"""
num_frames = self._calc_num_frames(self._curre... | [
"def",
"_split_current_epoch",
"(",
"self",
")",
":",
"num_frames",
"=",
"self",
".",
"_calc_num_frames",
"(",
"self",
".",
"_current_epoch_rollouts",
")",
"num_shards",
"=",
"sum",
"(",
"split",
"[",
"\"shards\"",
"]",
"for",
"split",
"in",
"self",
".",
"da... | Splits frames in the current epoch according to self.dataset_splits.
Rollouts can be broken on shard boundary. This is desirable when we have
few long rollouts and we want to make sure we have data in the dev set. | [
"Splits",
"frames",
"in",
"the",
"current",
"epoch",
"according",
"to",
"self",
".",
"dataset_splits",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L417-L462 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv.splits_and_paths | def splits_and_paths(self, data_dir):
"""List of pairs (split, paths) for the current epoch."""
filepath_fns = {
problem.DatasetSplit.TRAIN: self.training_filepaths,
problem.DatasetSplit.EVAL: self.dev_filepaths,
problem.DatasetSplit.TEST: self.test_filepaths,
}
def append_epoch... | python | def splits_and_paths(self, data_dir):
"""List of pairs (split, paths) for the current epoch."""
filepath_fns = {
problem.DatasetSplit.TRAIN: self.training_filepaths,
problem.DatasetSplit.EVAL: self.dev_filepaths,
problem.DatasetSplit.TEST: self.test_filepaths,
}
def append_epoch... | [
"def",
"splits_and_paths",
"(",
"self",
",",
"data_dir",
")",
":",
"filepath_fns",
"=",
"{",
"problem",
".",
"DatasetSplit",
".",
"TRAIN",
":",
"self",
".",
"training_filepaths",
",",
"problem",
".",
"DatasetSplit",
".",
"EVAL",
":",
"self",
".",
"dev_filepa... | List of pairs (split, paths) for the current epoch. | [
"List",
"of",
"pairs",
"(",
"split",
"paths",
")",
"for",
"the",
"current",
"epoch",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L464-L484 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TEnv.generate_data | def generate_data(self, data_dir, tmp_dir=None, task_id=-1):
"""Saves the current epoch rollouts to disk, split into train/dev sets."""
if not self._rollouts_by_epoch_and_split[self.current_epoch]:
# Data not loaded from disk.
self._split_current_epoch()
rollouts_by_split = self._rollouts_by_ep... | python | def generate_data(self, data_dir, tmp_dir=None, task_id=-1):
"""Saves the current epoch rollouts to disk, split into train/dev sets."""
if not self._rollouts_by_epoch_and_split[self.current_epoch]:
# Data not loaded from disk.
self._split_current_epoch()
rollouts_by_split = self._rollouts_by_ep... | [
"def",
"generate_data",
"(",
"self",
",",
"data_dir",
",",
"tmp_dir",
"=",
"None",
",",
"task_id",
"=",
"-",
"1",
")",
":",
"if",
"not",
"self",
".",
"_rollouts_by_epoch_and_split",
"[",
"self",
".",
"current_epoch",
"]",
":",
"# Data not loaded from disk.",
... | Saves the current epoch rollouts to disk, split into train/dev sets. | [
"Saves",
"the",
"current",
"epoch",
"rollouts",
"to",
"disk",
"split",
"into",
"train",
"/",
"dev",
"sets",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L494-L517 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/gym_env.py | T2TGymEnv.set_initial_state | def set_initial_state(self, initial_state, initial_frames):
"""Sets the state that will be used on next reset."""
self._initial_state = initial_state
self._initial_frames = initial_frames[:, -1, ...]
self._should_preprocess_on_reset = False | python | def set_initial_state(self, initial_state, initial_frames):
"""Sets the state that will be used on next reset."""
self._initial_state = initial_state
self._initial_frames = initial_frames[:, -1, ...]
self._should_preprocess_on_reset = False | [
"def",
"set_initial_state",
"(",
"self",
",",
"initial_state",
",",
"initial_frames",
")",
":",
"self",
".",
"_initial_state",
"=",
"initial_state",
"self",
".",
"_initial_frames",
"=",
"initial_frames",
"[",
":",
",",
"-",
"1",
",",
"...",
"]",
"self",
".",... | Sets the state that will be used on next reset. | [
"Sets",
"the",
"state",
"that",
"will",
"be",
"used",
"on",
"next",
"reset",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/gym_env.py#L723-L727 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | image_to_tf_summary_value | def image_to_tf_summary_value(image, tag):
"""Converts a NumPy image to a tf.Summary.Value object.
Args:
image: 3-D NumPy array.
tag: name for tf.Summary.Value for display in tensorboard.
Returns:
image_summary: A tf.Summary.Value object.
"""
curr_image = np.asarray(image, dtype=np.uint8)
heigh... | python | def image_to_tf_summary_value(image, tag):
"""Converts a NumPy image to a tf.Summary.Value object.
Args:
image: 3-D NumPy array.
tag: name for tf.Summary.Value for display in tensorboard.
Returns:
image_summary: A tf.Summary.Value object.
"""
curr_image = np.asarray(image, dtype=np.uint8)
heigh... | [
"def",
"image_to_tf_summary_value",
"(",
"image",
",",
"tag",
")",
":",
"curr_image",
"=",
"np",
".",
"asarray",
"(",
"image",
",",
"dtype",
"=",
"np",
".",
"uint8",
")",
"height",
",",
"width",
",",
"n_channels",
"=",
"curr_image",
".",
"shape",
"# If m... | Converts a NumPy image to a tf.Summary.Value object.
Args:
image: 3-D NumPy array.
tag: name for tf.Summary.Value for display in tensorboard.
Returns:
image_summary: A tf.Summary.Value object. | [
"Converts",
"a",
"NumPy",
"image",
"to",
"a",
"tf",
".",
"Summary",
".",
"Value",
"object",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L43-L62 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | convert_predictions_to_image_summaries | def convert_predictions_to_image_summaries(hook_args):
"""Optionally converts images from hooks_args to image summaries.
Args:
hook_args: DecodeHookArgs namedtuple
Returns:
summaries: list of tf.Summary values if hook_args.decode_hpara
"""
decode_hparams = hook_args.decode_hparams
if not decode_hpa... | python | def convert_predictions_to_image_summaries(hook_args):
"""Optionally converts images from hooks_args to image summaries.
Args:
hook_args: DecodeHookArgs namedtuple
Returns:
summaries: list of tf.Summary values if hook_args.decode_hpara
"""
decode_hparams = hook_args.decode_hparams
if not decode_hpa... | [
"def",
"convert_predictions_to_image_summaries",
"(",
"hook_args",
")",
":",
"decode_hparams",
"=",
"hook_args",
".",
"decode_hparams",
"if",
"not",
"decode_hparams",
".",
"display_decoded_images",
":",
"return",
"[",
"]",
"predictions",
"=",
"hook_args",
".",
"predic... | Optionally converts images from hooks_args to image summaries.
Args:
hook_args: DecodeHookArgs namedtuple
Returns:
summaries: list of tf.Summary values if hook_args.decode_hpara | [
"Optionally",
"converts",
"images",
"from",
"hooks_args",
"to",
"image",
"summaries",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L65-L88 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | resize_by_area | def resize_by_area(img, size):
"""image resize function used by quite a few image problems."""
return tf.to_int64(
tf.image.resize_images(img, [size, size], tf.image.ResizeMethod.AREA)) | python | def resize_by_area(img, size):
"""image resize function used by quite a few image problems."""
return tf.to_int64(
tf.image.resize_images(img, [size, size], tf.image.ResizeMethod.AREA)) | [
"def",
"resize_by_area",
"(",
"img",
",",
"size",
")",
":",
"return",
"tf",
".",
"to_int64",
"(",
"tf",
".",
"image",
".",
"resize_images",
"(",
"img",
",",
"[",
"size",
",",
"size",
"]",
",",
"tf",
".",
"image",
".",
"ResizeMethod",
".",
"AREA",
"... | image resize function used by quite a few image problems. | [
"image",
"resize",
"function",
"used",
"by",
"quite",
"a",
"few",
"image",
"problems",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L91-L94 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | make_multiscale | def make_multiscale(image, resolutions,
resize_method=tf.image.ResizeMethod.BICUBIC,
num_channels=3):
"""Returns list of scaled images, one for each resolution.
Args:
image: Tensor of shape [height, height, num_channels].
resolutions: List of heights that image's hei... | python | def make_multiscale(image, resolutions,
resize_method=tf.image.ResizeMethod.BICUBIC,
num_channels=3):
"""Returns list of scaled images, one for each resolution.
Args:
image: Tensor of shape [height, height, num_channels].
resolutions: List of heights that image's hei... | [
"def",
"make_multiscale",
"(",
"image",
",",
"resolutions",
",",
"resize_method",
"=",
"tf",
".",
"image",
".",
"ResizeMethod",
".",
"BICUBIC",
",",
"num_channels",
"=",
"3",
")",
":",
"scaled_images",
"=",
"[",
"]",
"for",
"height",
"in",
"resolutions",
"... | Returns list of scaled images, one for each resolution.
Args:
image: Tensor of shape [height, height, num_channels].
resolutions: List of heights that image's height is resized to.
resize_method: tf.image.ResizeMethod.
num_channels: Number of channels in image.
Returns:
List of Tensors, one fo... | [
"Returns",
"list",
"of",
"scaled",
"images",
"one",
"for",
"each",
"resolution",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L97-L122 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | make_multiscale_dilated | def make_multiscale_dilated(image, resolutions, num_channels=3):
"""Returns list of scaled images, one for each resolution.
Resizes by skipping every nth pixel.
Args:
image: Tensor of shape [height, height, num_channels].
resolutions: List of heights that image's height is resized to. The function
... | python | def make_multiscale_dilated(image, resolutions, num_channels=3):
"""Returns list of scaled images, one for each resolution.
Resizes by skipping every nth pixel.
Args:
image: Tensor of shape [height, height, num_channels].
resolutions: List of heights that image's height is resized to. The function
... | [
"def",
"make_multiscale_dilated",
"(",
"image",
",",
"resolutions",
",",
"num_channels",
"=",
"3",
")",
":",
"image_height",
"=",
"common_layers",
".",
"shape_list",
"(",
"image",
")",
"[",
"0",
"]",
"scaled_images",
"=",
"[",
"]",
"for",
"height",
"in",
"... | Returns list of scaled images, one for each resolution.
Resizes by skipping every nth pixel.
Args:
image: Tensor of shape [height, height, num_channels].
resolutions: List of heights that image's height is resized to. The function
assumes VALID padding, so the original image's height must be divisib... | [
"Returns",
"list",
"of",
"scaled",
"images",
"one",
"for",
"each",
"resolution",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L125-L151 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | encode_images_as_png | def encode_images_as_png(images):
"""Yield images encoded as pngs."""
if tf.executing_eagerly():
for image in images:
yield tf.image.encode_png(image).numpy()
else:
(height, width, channels) = images[0].shape
with tf.Graph().as_default():
image_t = tf.placeholder(dtype=tf.uint8, shape=(hei... | python | def encode_images_as_png(images):
"""Yield images encoded as pngs."""
if tf.executing_eagerly():
for image in images:
yield tf.image.encode_png(image).numpy()
else:
(height, width, channels) = images[0].shape
with tf.Graph().as_default():
image_t = tf.placeholder(dtype=tf.uint8, shape=(hei... | [
"def",
"encode_images_as_png",
"(",
"images",
")",
":",
"if",
"tf",
".",
"executing_eagerly",
"(",
")",
":",
"for",
"image",
"in",
"images",
":",
"yield",
"tf",
".",
"image",
".",
"encode_png",
"(",
"image",
")",
".",
"numpy",
"(",
")",
"else",
":",
... | Yield images encoded as pngs. | [
"Yield",
"images",
"encoded",
"as",
"pngs",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L266-L279 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | image_generator | def image_generator(images, labels):
"""Generator for images that takes image and labels lists and creates pngs.
Args:
images: list of images given as [width x height x channels] numpy arrays.
labels: list of ints, same length as images.
Yields:
A dictionary representing the images with the followin... | python | def image_generator(images, labels):
"""Generator for images that takes image and labels lists and creates pngs.
Args:
images: list of images given as [width x height x channels] numpy arrays.
labels: list of ints, same length as images.
Yields:
A dictionary representing the images with the followin... | [
"def",
"image_generator",
"(",
"images",
",",
"labels",
")",
":",
"if",
"not",
"images",
":",
"raise",
"ValueError",
"(",
"\"Must provide some images for the generator.\"",
")",
"width",
",",
"height",
",",
"_",
"=",
"images",
"[",
"0",
"]",
".",
"shape",
"f... | Generator for images that takes image and labels lists and creates pngs.
Args:
images: list of images given as [width x height x channels] numpy arrays.
labels: list of ints, same length as images.
Yields:
A dictionary representing the images with the following fields:
* image/encoded: the string ... | [
"Generator",
"for",
"images",
"that",
"takes",
"image",
"and",
"labels",
"lists",
"and",
"creates",
"pngs",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L282-L311 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | image_augmentation | def image_augmentation(images, do_colors=False, crop_size=None):
"""Image augmentation: cropping, flipping, and color transforms."""
if crop_size is None:
crop_size = [299, 299]
images = tf.random_crop(images, crop_size + [3])
images = tf.image.random_flip_left_right(images)
if do_colors: # More augmenta... | python | def image_augmentation(images, do_colors=False, crop_size=None):
"""Image augmentation: cropping, flipping, and color transforms."""
if crop_size is None:
crop_size = [299, 299]
images = tf.random_crop(images, crop_size + [3])
images = tf.image.random_flip_left_right(images)
if do_colors: # More augmenta... | [
"def",
"image_augmentation",
"(",
"images",
",",
"do_colors",
"=",
"False",
",",
"crop_size",
"=",
"None",
")",
":",
"if",
"crop_size",
"is",
"None",
":",
"crop_size",
"=",
"[",
"299",
",",
"299",
"]",
"images",
"=",
"tf",
".",
"random_crop",
"(",
"ima... | Image augmentation: cropping, flipping, and color transforms. | [
"Image",
"augmentation",
":",
"cropping",
"flipping",
"and",
"color",
"transforms",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L378-L389 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | cifar_image_augmentation | def cifar_image_augmentation(images):
"""Image augmentation suitable for CIFAR-10/100.
As described in https://arxiv.org/pdf/1608.06993v3.pdf (page 5).
Args:
images: a Tensor.
Returns:
Tensor of the same shape as images.
"""
images = tf.image.resize_image_with_crop_or_pad(images, 40, 40)
images ... | python | def cifar_image_augmentation(images):
"""Image augmentation suitable for CIFAR-10/100.
As described in https://arxiv.org/pdf/1608.06993v3.pdf (page 5).
Args:
images: a Tensor.
Returns:
Tensor of the same shape as images.
"""
images = tf.image.resize_image_with_crop_or_pad(images, 40, 40)
images ... | [
"def",
"cifar_image_augmentation",
"(",
"images",
")",
":",
"images",
"=",
"tf",
".",
"image",
".",
"resize_image_with_crop_or_pad",
"(",
"images",
",",
"40",
",",
"40",
")",
"images",
"=",
"tf",
".",
"random_crop",
"(",
"images",
",",
"[",
"32",
",",
"3... | Image augmentation suitable for CIFAR-10/100.
As described in https://arxiv.org/pdf/1608.06993v3.pdf (page 5).
Args:
images: a Tensor.
Returns:
Tensor of the same shape as images. | [
"Image",
"augmentation",
"suitable",
"for",
"CIFAR",
"-",
"10",
"/",
"100",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L392-L405 | train |
tensorflow/tensor2tensor | tensor2tensor/data_generators/image_utils.py | random_shift | def random_shift(image, wsr=0.1, hsr=0.1):
"""Apply random horizontal and vertical shift to images.
This is the default data-augmentation strategy used on CIFAR in Glow.
Args:
image: a 3-D Tensor
wsr: Width shift range, as a float fraction of the width.
hsr: Height shift range, as a float fraction o... | python | def random_shift(image, wsr=0.1, hsr=0.1):
"""Apply random horizontal and vertical shift to images.
This is the default data-augmentation strategy used on CIFAR in Glow.
Args:
image: a 3-D Tensor
wsr: Width shift range, as a float fraction of the width.
hsr: Height shift range, as a float fraction o... | [
"def",
"random_shift",
"(",
"image",
",",
"wsr",
"=",
"0.1",
",",
"hsr",
"=",
"0.1",
")",
":",
"height",
",",
"width",
",",
"_",
"=",
"common_layers",
".",
"shape_list",
"(",
"image",
")",
"width_range",
",",
"height_range",
"=",
"wsr",
"*",
"width",
... | Apply random horizontal and vertical shift to images.
This is the default data-augmentation strategy used on CIFAR in Glow.
Args:
image: a 3-D Tensor
wsr: Width shift range, as a float fraction of the width.
hsr: Height shift range, as a float fraction of the width.
Returns:
images: images trans... | [
"Apply",
"random",
"horizontal",
"and",
"vertical",
"shift",
"to",
"images",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/data_generators/image_utils.py#L408-L425 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_standardized_layers | def get_standardized_layers(hparams, dp=None):
"""Get the common attention and feed-forward layers.
The returned layer functions will have the following signature:
y, extra_loss = fct(x)
extra_loss is set to 0.0 if the layer doesn't have extra loss.
If dp is provided, the layers will be distributed withi... | python | def get_standardized_layers(hparams, dp=None):
"""Get the common attention and feed-forward layers.
The returned layer functions will have the following signature:
y, extra_loss = fct(x)
extra_loss is set to 0.0 if the layer doesn't have extra loss.
If dp is provided, the layers will be distributed withi... | [
"def",
"get_standardized_layers",
"(",
"hparams",
",",
"dp",
"=",
"None",
")",
":",
"def",
"partial",
"(",
"fct",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"\"\"\"Same as functools.partial but with functools.wraps.\"\"\"",
"return",
"functools",
".",
... | Get the common attention and feed-forward layers.
The returned layer functions will have the following signature:
y, extra_loss = fct(x)
extra_loss is set to 0.0 if the layer doesn't have extra loss.
If dp is provided, the layers will be distributed within the devices.
If moe wants to be used, both dp an... | [
"Get",
"the",
"common",
"attention",
"and",
"feed",
"-",
"forward",
"layers",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L91-L299 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_standard_attention_hparams | def add_standard_attention_hparams(hparams):
"""Adds the hparams used by get_standardized_layers."""
# All hyperparameters ending in "dropout" are automatically set to 0.0
# when not in training mode.
# hparams used and which should have been defined outside (in
# common_hparams):
# Global flags
# hparam... | python | def add_standard_attention_hparams(hparams):
"""Adds the hparams used by get_standardized_layers."""
# All hyperparameters ending in "dropout" are automatically set to 0.0
# when not in training mode.
# hparams used and which should have been defined outside (in
# common_hparams):
# Global flags
# hparam... | [
"def",
"add_standard_attention_hparams",
"(",
"hparams",
")",
":",
"# All hyperparameters ending in \"dropout\" are automatically set to 0.0",
"# when not in training mode.",
"# hparams used and which should have been defined outside (in",
"# common_hparams):",
"# Global flags",
"# hparams.mod... | Adds the hparams used by get_standardized_layers. | [
"Adds",
"the",
"hparams",
"used",
"by",
"get_standardized_layers",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L302-L344 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | encoder_decoder_attention_loss | def encoder_decoder_attention_loss(expected_attention_logits,
actual_attentions,
loss_type="kl_divergence",
loss_multiplier=1.0):
"""Computes encdec attention loss between expected and actual attentions.
Args:
... | python | def encoder_decoder_attention_loss(expected_attention_logits,
actual_attentions,
loss_type="kl_divergence",
loss_multiplier=1.0):
"""Computes encdec attention loss between expected and actual attentions.
Args:
... | [
"def",
"encoder_decoder_attention_loss",
"(",
"expected_attention_logits",
",",
"actual_attentions",
",",
"loss_type",
"=",
"\"kl_divergence\"",
",",
"loss_multiplier",
"=",
"1.0",
")",
":",
"def",
"combine_attentions",
"(",
"attention_list",
")",
":",
"\"\"\"Combine diff... | Computes encdec attention loss between expected and actual attentions.
Args:
expected_attention_logits: Tensor storing the expected encoder-decoder
attention logits with shape [batch_size, target_length, input_length].
actual_attentions: Dictionary with actual attention logits for different
atten... | [
"Computes",
"encdec",
"attention",
"loss",
"between",
"expected",
"and",
"actual",
"attentions",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L347-L402 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_timing_signal_1d | def get_timing_signal_1d(length,
channels,
min_timescale=1.0,
max_timescale=1.0e4,
start_index=0):
"""Gets a bunch of sinusoids of different frequencies.
Each channel of the input Tensor is incremented by a sinusoid... | python | def get_timing_signal_1d(length,
channels,
min_timescale=1.0,
max_timescale=1.0e4,
start_index=0):
"""Gets a bunch of sinusoids of different frequencies.
Each channel of the input Tensor is incremented by a sinusoid... | [
"def",
"get_timing_signal_1d",
"(",
"length",
",",
"channels",
",",
"min_timescale",
"=",
"1.0",
",",
"max_timescale",
"=",
"1.0e4",
",",
"start_index",
"=",
"0",
")",
":",
"position",
"=",
"tf",
".",
"to_float",
"(",
"tf",
".",
"range",
"(",
"length",
"... | Gets a bunch of sinusoids of different frequencies.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency and phase.
This allows attention to learn to use absolute and relative positions.
Timing signals should be added to some precursors of both the query and the
memory inpu... | [
"Gets",
"a",
"bunch",
"of",
"sinusoids",
"of",
"different",
"frequencies",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L406-L452 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_timing_signal_1d | def add_timing_signal_1d(x,
min_timescale=1.0,
max_timescale=1.0e4,
start_index=0):
"""Adds a bunch of sinusoids of different frequencies to a Tensor.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency ... | python | def add_timing_signal_1d(x,
min_timescale=1.0,
max_timescale=1.0e4,
start_index=0):
"""Adds a bunch of sinusoids of different frequencies to a Tensor.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency ... | [
"def",
"add_timing_signal_1d",
"(",
"x",
",",
"min_timescale",
"=",
"1.0",
",",
"max_timescale",
"=",
"1.0e4",
",",
"start_index",
"=",
"0",
")",
":",
"length",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"[",
"1",
"]",
"channels",
"=",
"comm... | Adds a bunch of sinusoids of different frequencies to a Tensor.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency and phase.
This allows attention to learn to use absolute and relative positions.
Timing signals should be added to some precursors of both the query and the
... | [
"Adds",
"a",
"bunch",
"of",
"sinusoids",
"of",
"different",
"frequencies",
"to",
"a",
"Tensor",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L456-L492 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_layer_timing_signal_learned_1d | def get_layer_timing_signal_learned_1d(channels, layer, num_layers):
"""get n-dimensional embedding as the layer (vertical) timing signal.
Adds embeddings to represent the position of the layer in the tower.
Args:
channels: dimension of the timing signal
layer: layer num
num_layers: total number of ... | python | def get_layer_timing_signal_learned_1d(channels, layer, num_layers):
"""get n-dimensional embedding as the layer (vertical) timing signal.
Adds embeddings to represent the position of the layer in the tower.
Args:
channels: dimension of the timing signal
layer: layer num
num_layers: total number of ... | [
"def",
"get_layer_timing_signal_learned_1d",
"(",
"channels",
",",
"layer",
",",
"num_layers",
")",
":",
"shape",
"=",
"[",
"num_layers",
",",
"1",
",",
"1",
",",
"channels",
"]",
"layer_embedding",
"=",
"(",
"tf",
".",
"get_variable",
"(",
"\"layer_embedding\... | get n-dimensional embedding as the layer (vertical) timing signal.
Adds embeddings to represent the position of the layer in the tower.
Args:
channels: dimension of the timing signal
layer: layer num
num_layers: total number of layers
Returns:
a Tensor of timing signals [1, 1, channels]. | [
"get",
"n",
"-",
"dimensional",
"embedding",
"as",
"the",
"layer",
"(",
"vertical",
")",
"timing",
"signal",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L496-L516 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_layer_timing_signal_learned_1d | def add_layer_timing_signal_learned_1d(x, layer, num_layers):
"""Add n-dimensional embedding as the layer (vertical) timing signal.
Adds embeddings to represent the position of the layer in the tower.
Args:
x: a tensor with shape [batch, length, depth]
layer: layer num
num_layers: total number of la... | python | def add_layer_timing_signal_learned_1d(x, layer, num_layers):
"""Add n-dimensional embedding as the layer (vertical) timing signal.
Adds embeddings to represent the position of the layer in the tower.
Args:
x: a tensor with shape [batch, length, depth]
layer: layer num
num_layers: total number of la... | [
"def",
"add_layer_timing_signal_learned_1d",
"(",
"x",
",",
"layer",
",",
"num_layers",
")",
":",
"channels",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"[",
"-",
"1",
"]",
"signal",
"=",
"get_layer_timing_signal_learned_1d",
"(",
"channels",
",",
... | Add n-dimensional embedding as the layer (vertical) timing signal.
Adds embeddings to represent the position of the layer in the tower.
Args:
x: a tensor with shape [batch, length, depth]
layer: layer num
num_layers: total number of layers
Returns:
a Tensor the same shape as x. | [
"Add",
"n",
"-",
"dimensional",
"embedding",
"as",
"the",
"layer",
"(",
"vertical",
")",
"timing",
"signal",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L520-L536 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_layer_timing_signal_sinusoid_1d | def get_layer_timing_signal_sinusoid_1d(channels, layer, num_layers):
"""Add sinusoids of different frequencies as layer (vertical) timing signal.
Args:
channels: dimension of the timing signal
layer: layer num
num_layers: total number of layers
Returns:
a Tensor of timing signals [1, 1, channel... | python | def get_layer_timing_signal_sinusoid_1d(channels, layer, num_layers):
"""Add sinusoids of different frequencies as layer (vertical) timing signal.
Args:
channels: dimension of the timing signal
layer: layer num
num_layers: total number of layers
Returns:
a Tensor of timing signals [1, 1, channel... | [
"def",
"get_layer_timing_signal_sinusoid_1d",
"(",
"channels",
",",
"layer",
",",
"num_layers",
")",
":",
"signal",
"=",
"get_timing_signal_1d",
"(",
"num_layers",
",",
"channels",
")",
"layer_signal",
"=",
"tf",
".",
"expand_dims",
"(",
"signal",
"[",
":",
",",... | Add sinusoids of different frequencies as layer (vertical) timing signal.
Args:
channels: dimension of the timing signal
layer: layer num
num_layers: total number of layers
Returns:
a Tensor of timing signals [1, 1, channels]. | [
"Add",
"sinusoids",
"of",
"different",
"frequencies",
"as",
"layer",
"(",
"vertical",
")",
"timing",
"signal",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L540-L555 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_layer_timing_signal_sinusoid_1d | def add_layer_timing_signal_sinusoid_1d(x, layer, num_layers):
"""Add sinusoids of different frequencies as layer (vertical) timing signal.
Args:
x: a Tensor with shape [batch, length, channels]
layer: layer num
num_layers: total number of layers
Returns:
a Tensor the same shape as x.
"""
c... | python | def add_layer_timing_signal_sinusoid_1d(x, layer, num_layers):
"""Add sinusoids of different frequencies as layer (vertical) timing signal.
Args:
x: a Tensor with shape [batch, length, channels]
layer: layer num
num_layers: total number of layers
Returns:
a Tensor the same shape as x.
"""
c... | [
"def",
"add_layer_timing_signal_sinusoid_1d",
"(",
"x",
",",
"layer",
",",
"num_layers",
")",
":",
"channels",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"[",
"-",
"1",
"]",
"signal",
"=",
"get_layer_timing_signal_sinusoid_1d",
"(",
"channels",
",",... | Add sinusoids of different frequencies as layer (vertical) timing signal.
Args:
x: a Tensor with shape [batch, length, channels]
layer: layer num
num_layers: total number of layers
Returns:
a Tensor the same shape as x. | [
"Add",
"sinusoids",
"of",
"different",
"frequencies",
"as",
"layer",
"(",
"vertical",
")",
"timing",
"signal",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L559-L574 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_timing_signal_1d_given_position | def add_timing_signal_1d_given_position(x,
position,
min_timescale=1.0,
max_timescale=1.0e4):
"""Adds sinusoids of diff frequencies to a Tensor, with timing position given.
Args:
x: a Tensor ... | python | def add_timing_signal_1d_given_position(x,
position,
min_timescale=1.0,
max_timescale=1.0e4):
"""Adds sinusoids of diff frequencies to a Tensor, with timing position given.
Args:
x: a Tensor ... | [
"def",
"add_timing_signal_1d_given_position",
"(",
"x",
",",
"position",
",",
"min_timescale",
"=",
"1.0",
",",
"max_timescale",
"=",
"1.0e4",
")",
":",
"channels",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"[",
"2",
"]",
"num_timescales",
"=",
... | Adds sinusoids of diff frequencies to a Tensor, with timing position given.
Args:
x: a Tensor with shape [batch, length, channels]
position: a Tensor with shape [batch, length]
min_timescale: a float
max_timescale: a float
Returns:
a Tensor the same shape as x. | [
"Adds",
"sinusoids",
"of",
"diff",
"frequencies",
"to",
"a",
"Tensor",
"with",
"timing",
"position",
"given",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L578-L606 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_timing_signal_nd | def add_timing_signal_nd(x, min_timescale=1.0, max_timescale=1.0e4):
"""Adds a bunch of sinusoids of different frequencies to a Tensor.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency and phase in one of the positional dimensions.
This allows attention to learn to use ab... | python | def add_timing_signal_nd(x, min_timescale=1.0, max_timescale=1.0e4):
"""Adds a bunch of sinusoids of different frequencies to a Tensor.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency and phase in one of the positional dimensions.
This allows attention to learn to use ab... | [
"def",
"add_timing_signal_nd",
"(",
"x",
",",
"min_timescale",
"=",
"1.0",
",",
"max_timescale",
"=",
"1.0e4",
")",
":",
"num_dims",
"=",
"len",
"(",
"x",
".",
"get_shape",
"(",
")",
".",
"as_list",
"(",
")",
")",
"-",
"2",
"channels",
"=",
"common_lay... | Adds a bunch of sinusoids of different frequencies to a Tensor.
Each channel of the input Tensor is incremented by a sinusoid of a different
frequency and phase in one of the positional dimensions.
This allows attention to learn to use absolute and relative positions.
Timing signals should be added to some pr... | [
"Adds",
"a",
"bunch",
"of",
"sinusoids",
"of",
"different",
"frequencies",
"to",
"a",
"Tensor",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L610-L663 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_positional_embedding | def add_positional_embedding(x, max_length, name=None, positions=None):
"""Adds positional embedding.
Args:
x: Tensor with shape [batch, length, depth].
max_length: int representing static maximum size of any dimension.
name: str representing name of the embedding tf.Variable.
positions: Tensor wit... | python | def add_positional_embedding(x, max_length, name=None, positions=None):
"""Adds positional embedding.
Args:
x: Tensor with shape [batch, length, depth].
max_length: int representing static maximum size of any dimension.
name: str representing name of the embedding tf.Variable.
positions: Tensor wit... | [
"def",
"add_positional_embedding",
"(",
"x",
",",
"max_length",
",",
"name",
"=",
"None",
",",
"positions",
"=",
"None",
")",
":",
"with",
"tf",
".",
"name_scope",
"(",
"\"add_positional_embedding\"",
")",
":",
"_",
",",
"length",
",",
"depth",
"=",
"commo... | Adds positional embedding.
Args:
x: Tensor with shape [batch, length, depth].
max_length: int representing static maximum size of any dimension.
name: str representing name of the embedding tf.Variable.
positions: Tensor with shape [batch, length].
Returns:
Tensor of same shape as x. | [
"Adds",
"positional",
"embedding",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L666-L689 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | add_positional_embedding_nd | def add_positional_embedding_nd(x, max_length, name=None):
"""Adds n-dimensional positional embedding.
The embeddings add to all positional dimensions of the tensor.
Args:
x: Tensor with shape [batch, p1 ... pn, depth]. It has n positional
dimensions, i.e., 1 for text, 2 for images, 3 for video, etc.
... | python | def add_positional_embedding_nd(x, max_length, name=None):
"""Adds n-dimensional positional embedding.
The embeddings add to all positional dimensions of the tensor.
Args:
x: Tensor with shape [batch, p1 ... pn, depth]. It has n positional
dimensions, i.e., 1 for text, 2 for images, 3 for video, etc.
... | [
"def",
"add_positional_embedding_nd",
"(",
"x",
",",
"max_length",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"name_scope",
"(",
"\"add_positional_embedding_nd\"",
")",
":",
"x_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"num_di... | Adds n-dimensional positional embedding.
The embeddings add to all positional dimensions of the tensor.
Args:
x: Tensor with shape [batch, p1 ... pn, depth]. It has n positional
dimensions, i.e., 1 for text, 2 for images, 3 for video, etc.
max_length: int representing static maximum size of any dime... | [
"Adds",
"n",
"-",
"dimensional",
"positional",
"embedding",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L692-L725 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | make_edge_vectors | def make_edge_vectors(adjacency_matrix, num_edge_types, depth, name=None):
"""Gets edge vectors for the edge types in the adjacency matrix.
Args:
adjacency_matrix: A [batch, num_nodes, num_nodes] tensor of ints.
num_edge_types: Number of different edge types
depth: Number of channels
name: a string... | python | def make_edge_vectors(adjacency_matrix, num_edge_types, depth, name=None):
"""Gets edge vectors for the edge types in the adjacency matrix.
Args:
adjacency_matrix: A [batch, num_nodes, num_nodes] tensor of ints.
num_edge_types: Number of different edge types
depth: Number of channels
name: a string... | [
"def",
"make_edge_vectors",
"(",
"adjacency_matrix",
",",
"num_edge_types",
",",
"depth",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
",",
"default_name",
"=",
"\"edge_vectors\"",
")",
":",
"att_adj_vectors_shape",
"=",
... | Gets edge vectors for the edge types in the adjacency matrix.
Args:
adjacency_matrix: A [batch, num_nodes, num_nodes] tensor of ints.
num_edge_types: Number of different edge types
depth: Number of channels
name: a string
Returns:
A [batch, num_nodes, num_nodes, depth] vector of tensors | [
"Gets",
"edge",
"vectors",
"for",
"the",
"edge",
"types",
"in",
"the",
"adjacency",
"matrix",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L728-L759 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | padding_to_length | def padding_to_length(padding):
"""Calculate the length of mask based on padding.
Args:
padding: a Tensor with shape [..., length].
Returns:
a Tensor with shape [...].
"""
non_padding = 1.0 - padding
return tf.to_int32(tf.reduce_sum(non_padding, axis=-1)) | python | def padding_to_length(padding):
"""Calculate the length of mask based on padding.
Args:
padding: a Tensor with shape [..., length].
Returns:
a Tensor with shape [...].
"""
non_padding = 1.0 - padding
return tf.to_int32(tf.reduce_sum(non_padding, axis=-1)) | [
"def",
"padding_to_length",
"(",
"padding",
")",
":",
"non_padding",
"=",
"1.0",
"-",
"padding",
"return",
"tf",
".",
"to_int32",
"(",
"tf",
".",
"reduce_sum",
"(",
"non_padding",
",",
"axis",
"=",
"-",
"1",
")",
")"
] | Calculate the length of mask based on padding.
Args:
padding: a Tensor with shape [..., length].
Returns:
a Tensor with shape [...]. | [
"Calculate",
"the",
"length",
"of",
"mask",
"based",
"on",
"padding",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L860-L869 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_local | def attention_bias_local(length, max_backward, max_forward):
"""Create an bias tensor to be added to attention logits.
A position may attend to positions at most max_distance from it,
forward and backwards.
This does not actually save any computation.
Args:
length: int
max_backward: int, maximum di... | python | def attention_bias_local(length, max_backward, max_forward):
"""Create an bias tensor to be added to attention logits.
A position may attend to positions at most max_distance from it,
forward and backwards.
This does not actually save any computation.
Args:
length: int
max_backward: int, maximum di... | [
"def",
"attention_bias_local",
"(",
"length",
",",
"max_backward",
",",
"max_forward",
")",
":",
"band",
"=",
"common_layers",
".",
"ones_matrix_band_part",
"(",
"length",
",",
"length",
",",
"max_backward",
",",
"max_forward",
",",
"out_shape",
"=",
"[",
"1",
... | Create an bias tensor to be added to attention logits.
A position may attend to positions at most max_distance from it,
forward and backwards.
This does not actually save any computation.
Args:
length: int
max_backward: int, maximum distance backward to attend. Negative values
indicate unlimite... | [
"Create",
"an",
"bias",
"tensor",
"to",
"be",
"added",
"to",
"attention",
"logits",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L873-L897 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_same_segment | def attention_bias_same_segment(query_segment_id, memory_segment_id):
"""Create an bias tensor to be added to attention logits.
Positions with the same segment_ids can see each other.
Args:
query_segment_id: a float `Tensor` with shape [batch, query_length].
memory_segment_id: a float `Tensor` with shap... | python | def attention_bias_same_segment(query_segment_id, memory_segment_id):
"""Create an bias tensor to be added to attention logits.
Positions with the same segment_ids can see each other.
Args:
query_segment_id: a float `Tensor` with shape [batch, query_length].
memory_segment_id: a float `Tensor` with shap... | [
"def",
"attention_bias_same_segment",
"(",
"query_segment_id",
",",
"memory_segment_id",
")",
":",
"ret",
"=",
"(",
"tf",
".",
"to_float",
"(",
"tf",
".",
"not_equal",
"(",
"tf",
".",
"expand_dims",
"(",
"query_segment_id",
",",
"2",
")",
",",
"tf",
".",
"... | Create an bias tensor to be added to attention logits.
Positions with the same segment_ids can see each other.
Args:
query_segment_id: a float `Tensor` with shape [batch, query_length].
memory_segment_id: a float `Tensor` with shape [batch, memory_length].
Returns:
a `Tensor` with shape [batch, 1, ... | [
"Create",
"an",
"bias",
"tensor",
"to",
"be",
"added",
"to",
"attention",
"logits",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L916-L933 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_ignore_padding | def attention_bias_ignore_padding(memory_padding):
"""Create an bias tensor to be added to attention logits.
Args:
memory_padding: a float `Tensor` with shape [batch, memory_length].
Returns:
a `Tensor` with shape [batch, 1, 1, memory_length].
"""
ret = memory_padding * large_compatible_negative(mem... | python | def attention_bias_ignore_padding(memory_padding):
"""Create an bias tensor to be added to attention logits.
Args:
memory_padding: a float `Tensor` with shape [batch, memory_length].
Returns:
a `Tensor` with shape [batch, 1, 1, memory_length].
"""
ret = memory_padding * large_compatible_negative(mem... | [
"def",
"attention_bias_ignore_padding",
"(",
"memory_padding",
")",
":",
"ret",
"=",
"memory_padding",
"*",
"large_compatible_negative",
"(",
"memory_padding",
".",
"dtype",
")",
"return",
"tf",
".",
"expand_dims",
"(",
"tf",
".",
"expand_dims",
"(",
"ret",
",",
... | Create an bias tensor to be added to attention logits.
Args:
memory_padding: a float `Tensor` with shape [batch, memory_length].
Returns:
a `Tensor` with shape [batch, 1, 1, memory_length]. | [
"Create",
"an",
"bias",
"tensor",
"to",
"be",
"added",
"to",
"attention",
"logits",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L937-L947 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_to_padding | def attention_bias_to_padding(attention_bias, cast_fn=tf.to_float):
"""Inverse of attention_bias_ignore_padding().
Args:
attention_bias: a `Tensor` with shape [batch, 1, 1, memory_length], as
returned by attention_bias_ignore_padding().
cast_fn: function used to cast to output type.
Returns:
a... | python | def attention_bias_to_padding(attention_bias, cast_fn=tf.to_float):
"""Inverse of attention_bias_ignore_padding().
Args:
attention_bias: a `Tensor` with shape [batch, 1, 1, memory_length], as
returned by attention_bias_ignore_padding().
cast_fn: function used to cast to output type.
Returns:
a... | [
"def",
"attention_bias_to_padding",
"(",
"attention_bias",
",",
"cast_fn",
"=",
"tf",
".",
"to_float",
")",
":",
"# `attention_bias` is a large negative number in padding positions and 0.0",
"# elsewhere.",
"return",
"tf",
".",
"squeeze",
"(",
"cast_fn",
"(",
"tf",
".",
... | Inverse of attention_bias_ignore_padding().
Args:
attention_bias: a `Tensor` with shape [batch, 1, 1, memory_length], as
returned by attention_bias_ignore_padding().
cast_fn: function used to cast to output type.
Returns:
a Tensor with shape [batch, memory_length] with 1.0 in padding positions
... | [
"Inverse",
"of",
"attention_bias_ignore_padding",
"()",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L951-L965 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_prepend_inputs_full_attention | def attention_bias_prepend_inputs_full_attention(padding):
"""Create a bias tensor for prepend_mode="prepend_inputs_full_attention".
See prepend_inputs in common_hparams.py.
Produces a bias tensor to be used in self-attention.
This bias tensor allows for full connectivity in the "inputs" part of
the sequen... | python | def attention_bias_prepend_inputs_full_attention(padding):
"""Create a bias tensor for prepend_mode="prepend_inputs_full_attention".
See prepend_inputs in common_hparams.py.
Produces a bias tensor to be used in self-attention.
This bias tensor allows for full connectivity in the "inputs" part of
the sequen... | [
"def",
"attention_bias_prepend_inputs_full_attention",
"(",
"padding",
")",
":",
"# Everything past the first padding position is part of the target.",
"# This Tensor has zeros for the source portion and separator,",
"# and ones for the target portion.",
"in_target",
"=",
"tf",
".",
"cumsu... | Create a bias tensor for prepend_mode="prepend_inputs_full_attention".
See prepend_inputs in common_hparams.py.
Produces a bias tensor to be used in self-attention.
This bias tensor allows for full connectivity in the "inputs" part of
the sequence and masked connectivity in the targets part.
Args:
pad... | [
"Create",
"a",
"bias",
"tensor",
"for",
"prepend_mode",
"=",
"prepend_inputs_full_attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L969-L999 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_proximal | def attention_bias_proximal(length):
"""Bias for self-attention to encourage attention to close positions.
Args:
length: an integer scalar.
Returns:
a Tensor with shape [1, 1, length, length]
"""
r = tf.to_float(tf.range(length))
diff = tf.expand_dims(r, 0) - tf.expand_dims(r, 1)
return tf.expan... | python | def attention_bias_proximal(length):
"""Bias for self-attention to encourage attention to close positions.
Args:
length: an integer scalar.
Returns:
a Tensor with shape [1, 1, length, length]
"""
r = tf.to_float(tf.range(length))
diff = tf.expand_dims(r, 0) - tf.expand_dims(r, 1)
return tf.expan... | [
"def",
"attention_bias_proximal",
"(",
"length",
")",
":",
"r",
"=",
"tf",
".",
"to_float",
"(",
"tf",
".",
"range",
"(",
"length",
")",
")",
"diff",
"=",
"tf",
".",
"expand_dims",
"(",
"r",
",",
"0",
")",
"-",
"tf",
".",
"expand_dims",
"(",
"r",
... | Bias for self-attention to encourage attention to close positions.
Args:
length: an integer scalar.
Returns:
a Tensor with shape [1, 1, length, length] | [
"Bias",
"for",
"self",
"-",
"attention",
"to",
"encourage",
"attention",
"to",
"close",
"positions",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1003-L1014 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_bias_batch | def attention_bias_batch(batch_coordinates_q,
batch_coordinates_k=None,
condition_fn=None):
"""Generate a mask to prevent the batch to attend to each others.
Args:
batch_coordinates_q: Int-like Tensor of shape [length_q, 1] containing the
coordinates of t... | python | def attention_bias_batch(batch_coordinates_q,
batch_coordinates_k=None,
condition_fn=None):
"""Generate a mask to prevent the batch to attend to each others.
Args:
batch_coordinates_q: Int-like Tensor of shape [length_q, 1] containing the
coordinates of t... | [
"def",
"attention_bias_batch",
"(",
"batch_coordinates_q",
",",
"batch_coordinates_k",
"=",
"None",
",",
"condition_fn",
"=",
"None",
")",
":",
"if",
"batch_coordinates_k",
"is",
"None",
":",
"batch_coordinates_k",
"=",
"batch_coordinates_q",
"# Convert to float first bec... | Generate a mask to prevent the batch to attend to each others.
Args:
batch_coordinates_q: Int-like Tensor of shape [length_q, 1] containing the
coordinates of the batches
batch_coordinates_k: Int-like Tensor of shape [length_k, 1] containing the
coordinates of the batches. If None, do self-attent... | [
"Generate",
"a",
"mask",
"to",
"prevent",
"the",
"batch",
"to",
"attend",
"to",
"each",
"others",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1018-L1049 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | split_last_dimension | def split_last_dimension(x, n):
"""Reshape x so that the last dimension becomes two dimensions.
The first of these two dimensions is n.
Args:
x: a Tensor with shape [..., m]
n: an integer.
Returns:
a Tensor with shape [..., n, m/n]
"""
x_shape = common_layers.shape_list(x)
m = x_shape[-1]
... | python | def split_last_dimension(x, n):
"""Reshape x so that the last dimension becomes two dimensions.
The first of these two dimensions is n.
Args:
x: a Tensor with shape [..., m]
n: an integer.
Returns:
a Tensor with shape [..., n, m/n]
"""
x_shape = common_layers.shape_list(x)
m = x_shape[-1]
... | [
"def",
"split_last_dimension",
"(",
"x",
",",
"n",
")",
":",
"x_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"m",
"=",
"x_shape",
"[",
"-",
"1",
"]",
"if",
"isinstance",
"(",
"m",
",",
"int",
")",
"and",
"isinstance",
"(",
"n",
"... | Reshape x so that the last dimension becomes two dimensions.
The first of these two dimensions is n.
Args:
x: a Tensor with shape [..., m]
n: an integer.
Returns:
a Tensor with shape [..., n, m/n] | [
"Reshape",
"x",
"so",
"that",
"the",
"last",
"dimension",
"becomes",
"two",
"dimensions",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1069-L1085 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | combine_last_two_dimensions | def combine_last_two_dimensions(x):
"""Reshape x so that the last two dimension become one.
Args:
x: a Tensor with shape [..., a, b]
Returns:
a Tensor with shape [..., ab]
"""
x_shape = common_layers.shape_list(x)
a, b = x_shape[-2:]
return tf.reshape(x, x_shape[:-2] + [a * b]) | python | def combine_last_two_dimensions(x):
"""Reshape x so that the last two dimension become one.
Args:
x: a Tensor with shape [..., a, b]
Returns:
a Tensor with shape [..., ab]
"""
x_shape = common_layers.shape_list(x)
a, b = x_shape[-2:]
return tf.reshape(x, x_shape[:-2] + [a * b]) | [
"def",
"combine_last_two_dimensions",
"(",
"x",
")",
":",
"x_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"a",
",",
"b",
"=",
"x_shape",
"[",
"-",
"2",
":",
"]",
"return",
"tf",
".",
"reshape",
"(",
"x",
",",
"x_shape",
"[",
":",
... | Reshape x so that the last two dimension become one.
Args:
x: a Tensor with shape [..., a, b]
Returns:
a Tensor with shape [..., ab] | [
"Reshape",
"x",
"so",
"that",
"the",
"last",
"two",
"dimension",
"become",
"one",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1089-L1100 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | combine_first_two_dimensions | def combine_first_two_dimensions(x):
"""Reshape x so that the first two dimension become one.
Args:
x: a Tensor with shape [a, b, ...]
Returns:
a Tensor with shape [ab, ...]
"""
ret = tf.reshape(x, tf.concat([[-1], common_layers.shape_list(x)[2:]], 0))
old_shape = x.get_shape().dims
a, b = old_s... | python | def combine_first_two_dimensions(x):
"""Reshape x so that the first two dimension become one.
Args:
x: a Tensor with shape [a, b, ...]
Returns:
a Tensor with shape [ab, ...]
"""
ret = tf.reshape(x, tf.concat([[-1], common_layers.shape_list(x)[2:]], 0))
old_shape = x.get_shape().dims
a, b = old_s... | [
"def",
"combine_first_two_dimensions",
"(",
"x",
")",
":",
"ret",
"=",
"tf",
".",
"reshape",
"(",
"x",
",",
"tf",
".",
"concat",
"(",
"[",
"[",
"-",
"1",
"]",
",",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"[",
"2",
":",
"]",
"]",
",",
... | Reshape x so that the first two dimension become one.
Args:
x: a Tensor with shape [a, b, ...]
Returns:
a Tensor with shape [ab, ...] | [
"Reshape",
"x",
"so",
"that",
"the",
"first",
"two",
"dimension",
"become",
"one",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1104-L1118 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | attention_image_summary | def attention_image_summary(attn, image_shapes=None):
"""Compute color image summary.
Args:
attn: a Tensor with shape [batch, num_heads, query_length, memory_length]
image_shapes: optional tuple of integer scalars.
If the query positions and memory positions represent the
pixels of flattened im... | python | def attention_image_summary(attn, image_shapes=None):
"""Compute color image summary.
Args:
attn: a Tensor with shape [batch, num_heads, query_length, memory_length]
image_shapes: optional tuple of integer scalars.
If the query positions and memory positions represent the
pixels of flattened im... | [
"def",
"attention_image_summary",
"(",
"attn",
",",
"image_shapes",
"=",
"None",
")",
":",
"attn",
"=",
"tf",
".",
"cast",
"(",
"attn",
",",
"tf",
".",
"float32",
")",
"num_heads",
"=",
"common_layers",
".",
"shape_list",
"(",
"attn",
")",
"[",
"1",
"]... | Compute color image summary.
Args:
attn: a Tensor with shape [batch, num_heads, query_length, memory_length]
image_shapes: optional tuple of integer scalars.
If the query positions and memory positions represent the
pixels of flattened images, then pass in their dimensions:
(query_rows, q... | [
"Compute",
"color",
"image",
"summary",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1176-L1217 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | grouped_attention_multihead | def grouped_attention_multihead(query_antecedent,
memory_antecedent,
total_key_depth,
total_value_depth,
output_depth,
num_heads,
... | python | def grouped_attention_multihead(query_antecedent,
memory_antecedent,
total_key_depth,
total_value_depth,
output_depth,
num_heads,
... | [
"def",
"grouped_attention_multihead",
"(",
"query_antecedent",
",",
"memory_antecedent",
",",
"total_key_depth",
",",
"total_value_depth",
",",
"output_depth",
",",
"num_heads",
",",
"num_groups",
",",
"memory_target_density",
"=",
"2.0",
",",
"multiplicative_overhead",
"... | Multi-head dot-product attention with sparsity.
For each attention head, the queries are partitioned into groups.
For each group, only a subset of the key-value pairs are considered.
The choices of groups are selected based on trained predictors of
the total attention given the group inclusion.
memory_targ... | [
"Multi",
"-",
"head",
"dot",
"-",
"product",
"attention",
"with",
"sparsity",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1220-L1472 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | harden_attention_weights | def harden_attention_weights(weights, hard_attention_k):
"""Make attention weights non-0 only on the top-hard_attention_k ones."""
# Subtract the top-kth weight and zero-out all lower ones.
# Note that currently in case of numerical ties it will retain more
# than k elements. In the future, we may want to avoid... | python | def harden_attention_weights(weights, hard_attention_k):
"""Make attention weights non-0 only on the top-hard_attention_k ones."""
# Subtract the top-kth weight and zero-out all lower ones.
# Note that currently in case of numerical ties it will retain more
# than k elements. In the future, we may want to avoid... | [
"def",
"harden_attention_weights",
"(",
"weights",
",",
"hard_attention_k",
")",
":",
"# Subtract the top-kth weight and zero-out all lower ones.",
"# Note that currently in case of numerical ties it will retain more",
"# than k elements. In the future, we may want to avoid this.",
"weights",
... | Make attention weights non-0 only on the top-hard_attention_k ones. | [
"Make",
"attention",
"weights",
"non",
"-",
"0",
"only",
"on",
"the",
"top",
"-",
"hard_attention_k",
"ones",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1475-L1486 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_attention | def dot_product_attention(q,
k,
v,
bias,
dropout_rate=0.0,
image_shapes=None,
name=None,
make_image_summary=True,
... | python | def dot_product_attention(q,
k,
v,
bias,
dropout_rate=0.0,
image_shapes=None,
name=None,
make_image_summary=True,
... | [
"def",
"dot_product_attention",
"(",
"q",
",",
"k",
",",
"v",
",",
"bias",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"None",
",",
"name",
"=",
"None",
",",
"make_image_summary",
"=",
"True",
",",
"save_weights_to",
"=",
"None",
",",
"dro... | Dot-product attention.
Args:
q: Tensor with shape [..., length_q, depth_k].
k: Tensor with shape [..., length_kv, depth_k]. Leading dimensions must
match with q.
v: Tensor with shape [..., length_kv, depth_v] Leading dimensions must
match with q.
bias: bias Tensor (see attention_bias())
... | [
"Dot",
"-",
"product",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1489-L1549 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _generate_relative_positions_matrix | def _generate_relative_positions_matrix(length_q, length_k,
max_relative_position,
cache=False):
"""Generates matrix of relative positions between inputs."""
if not cache:
if length_q == length_k:
range_vec_q = range_vec_k = t... | python | def _generate_relative_positions_matrix(length_q, length_k,
max_relative_position,
cache=False):
"""Generates matrix of relative positions between inputs."""
if not cache:
if length_q == length_k:
range_vec_q = range_vec_k = t... | [
"def",
"_generate_relative_positions_matrix",
"(",
"length_q",
",",
"length_k",
",",
"max_relative_position",
",",
"cache",
"=",
"False",
")",
":",
"if",
"not",
"cache",
":",
"if",
"length_q",
"==",
"length_k",
":",
"range_vec_q",
"=",
"range_vec_k",
"=",
"tf",
... | Generates matrix of relative positions between inputs. | [
"Generates",
"matrix",
"of",
"relative",
"positions",
"between",
"inputs",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1552-L1570 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _generate_relative_positions_embeddings | def _generate_relative_positions_embeddings(length_q, length_k, depth,
max_relative_position, name,
cache=False):
"""Generates tensor of size [1 if cache else length_q, length_k, depth]."""
with tf.variable_scope(name):
rela... | python | def _generate_relative_positions_embeddings(length_q, length_k, depth,
max_relative_position, name,
cache=False):
"""Generates tensor of size [1 if cache else length_q, length_k, depth]."""
with tf.variable_scope(name):
rela... | [
"def",
"_generate_relative_positions_embeddings",
"(",
"length_q",
",",
"length_k",
",",
"depth",
",",
"max_relative_position",
",",
"name",
",",
"cache",
"=",
"False",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
")",
":",
"relative_positions_matri... | Generates tensor of size [1 if cache else length_q, length_k, depth]. | [
"Generates",
"tensor",
"of",
"size",
"[",
"1",
"if",
"cache",
"else",
"length_q",
"length_k",
"depth",
"]",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1573-L1584 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _relative_attention_inner | def _relative_attention_inner(x, y, z, transpose):
"""Relative position-aware dot-product attention inner calculation.
This batches matrix multiply calculations to avoid unnecessary broadcasting.
Args:
x: Tensor with shape [batch_size, heads, length or 1, length or depth].
y: Tensor with shape [batch_si... | python | def _relative_attention_inner(x, y, z, transpose):
"""Relative position-aware dot-product attention inner calculation.
This batches matrix multiply calculations to avoid unnecessary broadcasting.
Args:
x: Tensor with shape [batch_size, heads, length or 1, length or depth].
y: Tensor with shape [batch_si... | [
"def",
"_relative_attention_inner",
"(",
"x",
",",
"y",
",",
"z",
",",
"transpose",
")",
":",
"batch_size",
"=",
"tf",
".",
"shape",
"(",
"x",
")",
"[",
"0",
"]",
"heads",
"=",
"x",
".",
"get_shape",
"(",
")",
".",
"as_list",
"(",
")",
"[",
"1",
... | Relative position-aware dot-product attention inner calculation.
This batches matrix multiply calculations to avoid unnecessary broadcasting.
Args:
x: Tensor with shape [batch_size, heads, length or 1, length or depth].
y: Tensor with shape [batch_size, heads, length or 1, depth].
z: Tensor with shape... | [
"Relative",
"position",
"-",
"aware",
"dot",
"-",
"product",
"attention",
"inner",
"calculation",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1587-L1618 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_attention_relative | def dot_product_attention_relative(q,
k,
v,
bias,
max_relative_position,
dropout_rate=0.0,
image_shapes=None,
... | python | def dot_product_attention_relative(q,
k,
v,
bias,
max_relative_position,
dropout_rate=0.0,
image_shapes=None,
... | [
"def",
"dot_product_attention_relative",
"(",
"q",
",",
"k",
",",
"v",
",",
"bias",
",",
"max_relative_position",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"None",
",",
"save_weights_to",
"=",
"None",
",",
"name",
"=",
"None",
",",
"make_ima... | Calculate relative position-aware dot-product self-attention.
The attention calculation is augmented with learned representations for the
relative position between each element in q and each element in k and v.
Args:
q: a Tensor with shape [batch, heads, length, depth].
k: a Tensor with shape [batch, he... | [
"Calculate",
"relative",
"position",
"-",
"aware",
"dot",
"-",
"product",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1621-L1702 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _relative_position_to_absolute_position_masked | def _relative_position_to_absolute_position_masked(x):
"""Helper to dot_product_self_attention_relative_v2.
Rearrange an attention logits or weights Tensor.
The dimensions of the input represent:
[batch, heads, query_position, memory_position - query_position + length - 1]
The dimensions of the output repr... | python | def _relative_position_to_absolute_position_masked(x):
"""Helper to dot_product_self_attention_relative_v2.
Rearrange an attention logits or weights Tensor.
The dimensions of the input represent:
[batch, heads, query_position, memory_position - query_position + length - 1]
The dimensions of the output repr... | [
"def",
"_relative_position_to_absolute_position_masked",
"(",
"x",
")",
":",
"batch",
",",
"heads",
",",
"length",
",",
"_",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"x",
"=",
"tf",
".",
"pad",
"(",
"x",
",",
"[",
"[",
"0",
",",
"0",
"... | Helper to dot_product_self_attention_relative_v2.
Rearrange an attention logits or weights Tensor.
The dimensions of the input represent:
[batch, heads, query_position, memory_position - query_position + length - 1]
The dimensions of the output represent:
[batch, heads, query_position, memory_position]
... | [
"Helper",
"to",
"dot_product_self_attention_relative_v2",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1705-L1729 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_self_attention_relative_v2 | def dot_product_self_attention_relative_v2(q,
k,
v,
bias,
max_relative_position=None,
dropout_rate=0.0,
... | python | def dot_product_self_attention_relative_v2(q,
k,
v,
bias,
max_relative_position=None,
dropout_rate=0.0,
... | [
"def",
"dot_product_self_attention_relative_v2",
"(",
"q",
",",
"k",
",",
"v",
",",
"bias",
",",
"max_relative_position",
"=",
"None",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"None",
",",
"name",
"=",
"None",
",",
"make_image_summary",
"=",
... | Calculate relative position-aware dot-product self-attention.
Only works for masked self-attention (no looking forward).
The attention calculation is augmented with learned representations for the
relative position between each element in q and each element in k and v.
Args:
q: a Tensor with shape [batch... | [
"Calculate",
"relative",
"position",
"-",
"aware",
"dot",
"-",
"product",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1809-L1899 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _absolute_position_to_relative_position_unmasked | def _absolute_position_to_relative_position_unmasked(x):
"""Helper function for dot_product_unmasked_self_attention_relative_v2.
Rearrange an attention logits or weights Tensor.
The dimensions of the input represent:
[batch, heads, query_position, memory_position]
The dimensions of the output represent:
... | python | def _absolute_position_to_relative_position_unmasked(x):
"""Helper function for dot_product_unmasked_self_attention_relative_v2.
Rearrange an attention logits or weights Tensor.
The dimensions of the input represent:
[batch, heads, query_position, memory_position]
The dimensions of the output represent:
... | [
"def",
"_absolute_position_to_relative_position_unmasked",
"(",
"x",
")",
":",
"batch",
",",
"heads",
",",
"length",
",",
"_",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"# padd along column",
"x",
"=",
"tf",
".",
"pad",
"(",
"x",
",",
"[",
"[... | Helper function for dot_product_unmasked_self_attention_relative_v2.
Rearrange an attention logits or weights Tensor.
The dimensions of the input represent:
[batch, heads, query_position, memory_position]
The dimensions of the output represent:
[batch, heads, query_position, memory_position - query_positio... | [
"Helper",
"function",
"for",
"dot_product_unmasked_self_attention_relative_v2",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1902-L1930 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_relative_embeddings_left_right | def get_relative_embeddings_left_right(max_relative_position, length, depth,
num_heads,
heads_share_relative_embedding,
name):
"""Instantiate or retrieve relative embeddings, sliced according to length... | python | def get_relative_embeddings_left_right(max_relative_position, length, depth,
num_heads,
heads_share_relative_embedding,
name):
"""Instantiate or retrieve relative embeddings, sliced according to length... | [
"def",
"get_relative_embeddings_left_right",
"(",
"max_relative_position",
",",
"length",
",",
"depth",
",",
"num_heads",
",",
"heads_share_relative_embedding",
",",
"name",
")",
":",
"initializer_stddev",
"=",
"depth",
"**",
"-",
"0.5",
"max_relative_position_unmasked",
... | Instantiate or retrieve relative embeddings, sliced according to length.
Use for unmasked case where the relative attention looks both left and right.
Args:
max_relative_position: an Integer for the number of entries in the relative
embedding, which corresponds to the max relative distance that is
... | [
"Instantiate",
"or",
"retrieve",
"relative",
"embeddings",
"sliced",
"according",
"to",
"length",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1933-L1982 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_unmasked_self_attention_relative_v2 | def dot_product_unmasked_self_attention_relative_v2(
q, k, v, bias, max_relative_position=None, dropout_rate=0.0,
image_shapes=None, name=None, make_image_summary=True,
dropout_broadcast_dims=None, heads_share_relative_embedding=False,
add_relative_to_values=False):
"""Calculate relative position-awar... | python | def dot_product_unmasked_self_attention_relative_v2(
q, k, v, bias, max_relative_position=None, dropout_rate=0.0,
image_shapes=None, name=None, make_image_summary=True,
dropout_broadcast_dims=None, heads_share_relative_embedding=False,
add_relative_to_values=False):
"""Calculate relative position-awar... | [
"def",
"dot_product_unmasked_self_attention_relative_v2",
"(",
"q",
",",
"k",
",",
"v",
",",
"bias",
",",
"max_relative_position",
"=",
"None",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"None",
",",
"name",
"=",
"None",
",",
"make_image_summary"... | Calculate relative position-aware dot-product self-attention.
The attention calculation is augmented with learned representations for the
relative position between each element in q and each element in k and v.
Args:
q: a Tensor with shape [batch, heads, length, depth].
k: a Tensor with shape [batch, he... | [
"Calculate",
"relative",
"position",
"-",
"aware",
"dot",
"-",
"product",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L1985-L2074 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _matmul_with_relative_keys_2d | def _matmul_with_relative_keys_2d(x, y, heads_share_relative_embedding):
"""Helper function for dot_product_unmasked_self_attention_relative_2d."""
if heads_share_relative_embedding:
ret = tf.einsum("bhxyd,md->bhxym", x, y)
else:
ret = tf.einsum("bhxyd,hmd->bhxym", x, y)
return ret | python | def _matmul_with_relative_keys_2d(x, y, heads_share_relative_embedding):
"""Helper function for dot_product_unmasked_self_attention_relative_2d."""
if heads_share_relative_embedding:
ret = tf.einsum("bhxyd,md->bhxym", x, y)
else:
ret = tf.einsum("bhxyd,hmd->bhxym", x, y)
return ret | [
"def",
"_matmul_with_relative_keys_2d",
"(",
"x",
",",
"y",
",",
"heads_share_relative_embedding",
")",
":",
"if",
"heads_share_relative_embedding",
":",
"ret",
"=",
"tf",
".",
"einsum",
"(",
"\"bhxyd,md->bhxym\"",
",",
"x",
",",
"y",
")",
"else",
":",
"ret",
... | Helper function for dot_product_unmasked_self_attention_relative_2d. | [
"Helper",
"function",
"for",
"dot_product_unmasked_self_attention_relative_2d",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2077-L2083 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_unmasked_self_attention_relative_2d | def dot_product_unmasked_self_attention_relative_2d(
q, k, v, bias, max_relative_position=None, dropout_rate=0.0,
image_shapes=None, name=None, make_image_summary=True,
dropout_broadcast_dims=None, heads_share_relative_embedding=False,
add_relative_to_values=False):
"""Calculate relative position unma... | python | def dot_product_unmasked_self_attention_relative_2d(
q, k, v, bias, max_relative_position=None, dropout_rate=0.0,
image_shapes=None, name=None, make_image_summary=True,
dropout_broadcast_dims=None, heads_share_relative_embedding=False,
add_relative_to_values=False):
"""Calculate relative position unma... | [
"def",
"dot_product_unmasked_self_attention_relative_2d",
"(",
"q",
",",
"k",
",",
"v",
",",
"bias",
",",
"max_relative_position",
"=",
"None",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"None",
",",
"name",
"=",
"None",
",",
"make_image_summary"... | Calculate relative position unmasked dot-product self-attention 2d.
The attention calculation is augmented with learned representations for the
relative position between each element in q and each element in k and v in
height and width dimensions. for query index (i,j) and key index (l, m),
the logit is q_i k... | [
"Calculate",
"relative",
"position",
"unmasked",
"dot",
"-",
"product",
"self",
"-",
"attention",
"2d",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2086-L2225 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _split_along_width | def _split_along_width(x_left_right_blocks):
"""Helper function for local 2d attention.
Takes a tensor of [batch, heads, num_h_blocks, num_w_blocks,
height, width, depth] and returns two tensors which contain every alternate
position along the width
Args:
x_left_right_blocks: A [batch, num_h_blocks, nu... | python | def _split_along_width(x_left_right_blocks):
"""Helper function for local 2d attention.
Takes a tensor of [batch, heads, num_h_blocks, num_w_blocks,
height, width, depth] and returns two tensors which contain every alternate
position along the width
Args:
x_left_right_blocks: A [batch, num_h_blocks, nu... | [
"def",
"_split_along_width",
"(",
"x_left_right_blocks",
")",
":",
"(",
"_",
",",
"x_num_h_blocks",
",",
"x_num_outer_w_blocks",
",",
"x_memory_flange_h",
",",
"x_memory_flange_w",
",",
"depth",
")",
"=",
"common_layers",
".",
"shape_list",
"(",
"x_left_right_blocks",... | Helper function for local 2d attention.
Takes a tensor of [batch, heads, num_h_blocks, num_w_blocks,
height, width, depth] and returns two tensors which contain every alternate
position along the width
Args:
x_left_right_blocks: A [batch, num_h_blocks, num_w_blocks,
height, wi... | [
"Helper",
"function",
"for",
"local",
"2d",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2228-L2265 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _get_left_right_blocks | def _get_left_right_blocks(x):
"""Helper function. Assumes that memory_flange is half of query sizes.
This function splits the tensor of width 'n' into two halves, where the
first half gets the width indices 0, 2, 4.. and the second half gets the
width indices 3, 5, ... We also fuse two blocks along the h dime... | python | def _get_left_right_blocks(x):
"""Helper function. Assumes that memory_flange is half of query sizes.
This function splits the tensor of width 'n' into two halves, where the
first half gets the width indices 0, 2, 4.. and the second half gets the
width indices 3, 5, ... We also fuse two blocks along the h dime... | [
"def",
"_get_left_right_blocks",
"(",
"x",
")",
":",
"(",
"_",
",",
"x_num_outer_h_blocks",
",",
"x_num_outer_w_blocks",
",",
"x_memory_flange_h",
",",
"x_memory_flange_w",
",",
"depth",
")",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"x_left_right_bl... | Helper function. Assumes that memory_flange is half of query sizes.
This function splits the tensor of width 'n' into two halves, where the
first half gets the width indices 0, 2, 4.. and the second half gets the
width indices 3, 5, ... We also fuse two blocks along the h dimension.
Args:
x: a 6-d tensor.... | [
"Helper",
"function",
".",
"Assumes",
"that",
"memory_flange",
"is",
"half",
"of",
"query",
"sizes",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2268-L2303 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _extract_blocks | def _extract_blocks(x, block_h, block_w):
"""Helper function for local 2d attention.
Args:
x: a [batch, height, width, depth] tensor
block_h: An integer. block height
block_w: An inteter. block width
returns:
a [batch, num_heads, height/block_h, width/block_w, depth] tensor
"""
(_, height, w... | python | def _extract_blocks(x, block_h, block_w):
"""Helper function for local 2d attention.
Args:
x: a [batch, height, width, depth] tensor
block_h: An integer. block height
block_w: An inteter. block width
returns:
a [batch, num_heads, height/block_h, width/block_w, depth] tensor
"""
(_, height, w... | [
"def",
"_extract_blocks",
"(",
"x",
",",
"block_h",
",",
"block_w",
")",
":",
"(",
"_",
",",
"height",
",",
"width",
",",
"depth",
")",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"assert",
"height",
"%",
"block_h",
"==",
"0",
"assert",
"... | Helper function for local 2d attention.
Args:
x: a [batch, height, width, depth] tensor
block_h: An integer. block height
block_w: An inteter. block width
returns:
a [batch, num_heads, height/block_h, width/block_w, depth] tensor | [
"Helper",
"function",
"for",
"local",
"2d",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2307-L2323 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_2d_local_memory | def get_2d_local_memory(x, query_shape, memory_flange):
"""Stitches together the local 2d memory blocks.
Args:
x: a [batch, height, width, depth tensor]
query_shape: 2-d integer list of query shape
memory_flange: 2-d integer list of memory flanges
Returns:
x: A [batch, num_h_blocks, num_w_blocks... | python | def get_2d_local_memory(x, query_shape, memory_flange):
"""Stitches together the local 2d memory blocks.
Args:
x: a [batch, height, width, depth tensor]
query_shape: 2-d integer list of query shape
memory_flange: 2-d integer list of memory flanges
Returns:
x: A [batch, num_h_blocks, num_w_blocks... | [
"def",
"get_2d_local_memory",
"(",
"x",
",",
"query_shape",
",",
"memory_flange",
")",
":",
"(",
"_",
",",
"height",
",",
"width",
",",
"depth_x",
")",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"x_center_blocks",
"=",
"_extract_blocks",
"(",
... | Stitches together the local 2d memory blocks.
Args:
x: a [batch, height, width, depth tensor]
query_shape: 2-d integer list of query shape
memory_flange: 2-d integer list of memory flanges
Returns:
x: A [batch, num_h_blocks, num_w_blocks,
query_shape[0]+2*memory_flange[0],query_shape[1]+... | [
"Stitches",
"together",
"the",
"local",
"2d",
"memory",
"blocks",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2326-L2404 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_2d_local_memory_v2 | def get_2d_local_memory_v2(x, query_shape, memory_flange):
"""Gathering memory blocks around query blocks. flange is half of query .
Only works if memory flanges are half of query sizes.
Args:
x: a [batch, height, width, depth tensor]
query_shape: 2-d integer list of query shape
memory_flange: 2-d... | python | def get_2d_local_memory_v2(x, query_shape, memory_flange):
"""Gathering memory blocks around query blocks. flange is half of query .
Only works if memory flanges are half of query sizes.
Args:
x: a [batch, height, width, depth tensor]
query_shape: 2-d integer list of query shape
memory_flange: 2-d... | [
"def",
"get_2d_local_memory_v2",
"(",
"x",
",",
"query_shape",
",",
"memory_flange",
")",
":",
"(",
"_",
",",
"height",
",",
"width",
",",
"depth_x",
")",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"# add extra padding to x so that we can extract the ... | Gathering memory blocks around query blocks. flange is half of query .
Only works if memory flanges are half of query sizes.
Args:
x: a [batch, height, width, depth tensor]
query_shape: 2-d integer list of query shape
memory_flange: 2-d integer list of memory flanges
Returns:
x: A [batch, num... | [
"Gathering",
"memory",
"blocks",
"around",
"query",
"blocks",
".",
"flange",
"is",
"half",
"of",
"query",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2407-L2445 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_unmasked_attention_local_2d_tpu | def dot_product_unmasked_attention_local_2d_tpu(
q, k, v, bias, max_relative_position=None, query_shape=(8, 8),
dropout_rate=0.0, image_shapes=None, name=None, make_image_summary=False,
dropout_broadcast_dims=None):
"""Calculate unmasked dot-product local self-attention 2d on tpu.
Args:
q: a Tensor... | python | def dot_product_unmasked_attention_local_2d_tpu(
q, k, v, bias, max_relative_position=None, query_shape=(8, 8),
dropout_rate=0.0, image_shapes=None, name=None, make_image_summary=False,
dropout_broadcast_dims=None):
"""Calculate unmasked dot-product local self-attention 2d on tpu.
Args:
q: a Tensor... | [
"def",
"dot_product_unmasked_attention_local_2d_tpu",
"(",
"q",
",",
"k",
",",
"v",
",",
"bias",
",",
"max_relative_position",
"=",
"None",
",",
"query_shape",
"=",
"(",
"8",
",",
"8",
")",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"None",
... | Calculate unmasked dot-product local self-attention 2d on tpu.
Args:
q: a Tensor with shape [batch, heads, height, width, depth].
k: a Tensor with shape [batch, heads, height, width, depth].
v: a Tensor with shape [batch, heads, height, width, depth].
bias: bias Tensor.
max_relative_position: an ... | [
"Calculate",
"unmasked",
"dot",
"-",
"product",
"local",
"self",
"-",
"attention",
"2d",
"on",
"tpu",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2448-L2537 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dot_product_unmasked_attention_local_2d_tpu_simple | def dot_product_unmasked_attention_local_2d_tpu_simple(
x, bias, total_key_depth, total_value_depth, num_heads,
query_shape=(8, 8),
dropout_rate=0.0, image_shapes=None, make_image_summary=False,
dropout_broadcast_dims=None):
"""Calculate simple unmasked dot-product local self-attention 2d on tpu.
... | python | def dot_product_unmasked_attention_local_2d_tpu_simple(
x, bias, total_key_depth, total_value_depth, num_heads,
query_shape=(8, 8),
dropout_rate=0.0, image_shapes=None, make_image_summary=False,
dropout_broadcast_dims=None):
"""Calculate simple unmasked dot-product local self-attention 2d on tpu.
... | [
"def",
"dot_product_unmasked_attention_local_2d_tpu_simple",
"(",
"x",
",",
"bias",
",",
"total_key_depth",
",",
"total_value_depth",
",",
"num_heads",
",",
"query_shape",
"=",
"(",
"8",
",",
"8",
")",
",",
"dropout_rate",
"=",
"0.0",
",",
"image_shapes",
"=",
"... | Calculate simple unmasked dot-product local self-attention 2d on tpu.
The query, key, and value blocks are the same. We do not do a second linear
transformation after computing the values
Args:
x: a Tensor with shape [batch, height, width, depth].
bias: bias Tensor.
total_key_depth: the dimensions o... | [
"Calculate",
"simple",
"unmasked",
"dot",
"-",
"product",
"local",
"self",
"-",
"attention",
"2d",
"on",
"tpu",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2540-L2615 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | masked_within_block_local_attention_1d | def masked_within_block_local_attention_1d(q, k, v, block_length=64, name=None):
"""Attention to the source and a neighborhood to the left within a block.
The sequence is divided into blocks of length block_length. Attention for a
given query position can only see memory positions less than or equal to the
que... | python | def masked_within_block_local_attention_1d(q, k, v, block_length=64, name=None):
"""Attention to the source and a neighborhood to the left within a block.
The sequence is divided into blocks of length block_length. Attention for a
given query position can only see memory positions less than or equal to the
que... | [
"def",
"masked_within_block_local_attention_1d",
"(",
"q",
",",
"k",
",",
"v",
",",
"block_length",
"=",
"64",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
",",
"default_name",
"=",
"\"within_local_attention_1d\"",
",",... | Attention to the source and a neighborhood to the left within a block.
The sequence is divided into blocks of length block_length. Attention for a
given query position can only see memory positions less than or equal to the
query position in the corresponding block.
Args:
q: a Tensor with shape [batch, he... | [
"Attention",
"to",
"the",
"source",
"and",
"a",
"neighborhood",
"to",
"the",
"left",
"within",
"a",
"block",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2618-L2671 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _relative_position_to_absolute_position_unmasked | def _relative_position_to_absolute_position_unmasked(x):
"""Converts tensor from relative to aboslute indexing for local attention.
Args:
x: a Tensor of shape [batch (or batch*num_blocks), heads,
length, 2 * length - 1]
Returns:
A Tensor of shape [batch (or batch*num_blocks), h... | python | def _relative_position_to_absolute_position_unmasked(x):
"""Converts tensor from relative to aboslute indexing for local attention.
Args:
x: a Tensor of shape [batch (or batch*num_blocks), heads,
length, 2 * length - 1]
Returns:
A Tensor of shape [batch (or batch*num_blocks), h... | [
"def",
"_relative_position_to_absolute_position_unmasked",
"(",
"x",
")",
":",
"x_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"batch",
"=",
"x_shape",
"[",
"0",
"]",
"heads",
"=",
"x_shape",
"[",
"1",
"]",
"length",
"=",
"x_shape",
"[",
... | Converts tensor from relative to aboslute indexing for local attention.
Args:
x: a Tensor of shape [batch (or batch*num_blocks), heads,
length, 2 * length - 1]
Returns:
A Tensor of shape [batch (or batch*num_blocks), heads, length, length-1] | [
"Converts",
"tensor",
"from",
"relative",
"to",
"aboslute",
"indexing",
"for",
"local",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2674-L2701 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | masked_local_attention_1d | def masked_local_attention_1d(q,
k,
v,
block_length=128,
make_image_summary=False,
dropout_rate=0.,
name=None):
"""Attention to the source... | python | def masked_local_attention_1d(q,
k,
v,
block_length=128,
make_image_summary=False,
dropout_rate=0.,
name=None):
"""Attention to the source... | [
"def",
"masked_local_attention_1d",
"(",
"q",
",",
"k",
",",
"v",
",",
"block_length",
"=",
"128",
",",
"make_image_summary",
"=",
"False",
",",
"dropout_rate",
"=",
"0.",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"nam... | Attention to the source position and a neighborhood to the left of it.
The sequence is divided into blocks of length block_length. Attention for a
given query position can only see memory positions less than or equal to the
query position, in the corresponding block and the previous block.
Args:
q: a Tens... | [
"Attention",
"to",
"the",
"source",
"position",
"and",
"a",
"neighborhood",
"to",
"the",
"left",
"of",
"it",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2704-L2812 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | _make_local_block | def _make_local_block(x, depth, batch, heads, num_blocks, block_length):
"""Helper function to create a local version of the keys or values for 1d."""
prev_block = tf.slice(x, [0, 0, 0, 0, 0],
[-1, -1, num_blocks - 1, -1, -1])
cur_block = tf.slice(x, [0, 0, 1, 0, 0], [-1, -1, -1, -1, -1])
... | python | def _make_local_block(x, depth, batch, heads, num_blocks, block_length):
"""Helper function to create a local version of the keys or values for 1d."""
prev_block = tf.slice(x, [0, 0, 0, 0, 0],
[-1, -1, num_blocks - 1, -1, -1])
cur_block = tf.slice(x, [0, 0, 1, 0, 0], [-1, -1, -1, -1, -1])
... | [
"def",
"_make_local_block",
"(",
"x",
",",
"depth",
",",
"batch",
",",
"heads",
",",
"num_blocks",
",",
"block_length",
")",
":",
"prev_block",
"=",
"tf",
".",
"slice",
"(",
"x",
",",
"[",
"0",
",",
"0",
",",
"0",
",",
"0",
",",
"0",
"]",
",",
... | Helper function to create a local version of the keys or values for 1d. | [
"Helper",
"function",
"to",
"create",
"a",
"local",
"version",
"of",
"the",
"keys",
"or",
"values",
"for",
"1d",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2815-L2822 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | masked_relative_local_attention_1d | def masked_relative_local_attention_1d(q,
k,
v,
block_length=128,
make_image_summary=False,
dropout_rate=0.,
... | python | def masked_relative_local_attention_1d(q,
k,
v,
block_length=128,
make_image_summary=False,
dropout_rate=0.,
... | [
"def",
"masked_relative_local_attention_1d",
"(",
"q",
",",
"k",
",",
"v",
",",
"block_length",
"=",
"128",
",",
"make_image_summary",
"=",
"False",
",",
"dropout_rate",
"=",
"0.",
",",
"heads_share_relative_embedding",
"=",
"False",
",",
"add_relative_to_values",
... | Masked local 1d attention with relative positions.
The sequence is divided into blocks of length block_size.
Attention for a given query position can only see memory positions
less than or equal to the query position, in the corresponding block
and the previous block.
If mask_right is True, then a target po... | [
"Masked",
"local",
"1d",
"attention",
"with",
"relative",
"positions",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L2825-L3033 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | local_attention_1d | def local_attention_1d(q, k, v, block_length=128, filter_width=100, name=None):
"""Strided block local self-attention.
The sequence is divided into blocks of length block_length. Attention for a
given query position can see all memory positions in the corresponding block
and filter_width many positions to the ... | python | def local_attention_1d(q, k, v, block_length=128, filter_width=100, name=None):
"""Strided block local self-attention.
The sequence is divided into blocks of length block_length. Attention for a
given query position can see all memory positions in the corresponding block
and filter_width many positions to the ... | [
"def",
"local_attention_1d",
"(",
"q",
",",
"k",
",",
"v",
",",
"block_length",
"=",
"128",
",",
"filter_width",
"=",
"100",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
",",
"default_name",
"=",
"\"local_self_att... | Strided block local self-attention.
The sequence is divided into blocks of length block_length. Attention for a
given query position can see all memory positions in the corresponding block
and filter_width many positions to the left and right of the block.
Args:
q: a Tensor with shape [batch, heads, lengt... | [
"Strided",
"block",
"local",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3052-L3154 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | reshape_by_blocks | def reshape_by_blocks(x, x_shape, memory_block_size):
"""Reshapes input by splitting its length over blocks of memory_block_size.
Args:
x: a Tensor with shape [batch, heads, length, depth]
x_shape: tf.TensorShape of x.
memory_block_size: Integer which divides length.
Returns:
Tensor with shape
... | python | def reshape_by_blocks(x, x_shape, memory_block_size):
"""Reshapes input by splitting its length over blocks of memory_block_size.
Args:
x: a Tensor with shape [batch, heads, length, depth]
x_shape: tf.TensorShape of x.
memory_block_size: Integer which divides length.
Returns:
Tensor with shape
... | [
"def",
"reshape_by_blocks",
"(",
"x",
",",
"x_shape",
",",
"memory_block_size",
")",
":",
"x",
"=",
"tf",
".",
"reshape",
"(",
"x",
",",
"[",
"x_shape",
"[",
"0",
"]",
",",
"x_shape",
"[",
"1",
"]",
",",
"x_shape",
"[",
"2",
"]",
"//",
"memory_bloc... | Reshapes input by splitting its length over blocks of memory_block_size.
Args:
x: a Tensor with shape [batch, heads, length, depth]
x_shape: tf.TensorShape of x.
memory_block_size: Integer which divides length.
Returns:
Tensor with shape
[batch, heads, length // memory_block_size, memory_block... | [
"Reshapes",
"input",
"by",
"splitting",
"its",
"length",
"over",
"blocks",
"of",
"memory_block_size",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3157-L3173 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | dilated_self_attention_1d | def dilated_self_attention_1d(q,
k,
v,
query_block_size=128,
memory_block_size=128,
gap_size=2,
num_memory_blocks=2,
... | python | def dilated_self_attention_1d(q,
k,
v,
query_block_size=128,
memory_block_size=128,
gap_size=2,
num_memory_blocks=2,
... | [
"def",
"dilated_self_attention_1d",
"(",
"q",
",",
"k",
",",
"v",
",",
"query_block_size",
"=",
"128",
",",
"memory_block_size",
"=",
"128",
",",
"gap_size",
"=",
"2",
",",
"num_memory_blocks",
"=",
"2",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
... | Dilated self-attention.
Args:
q: a Tensor with shape [batch, heads, length, depth]
k: a Tensor with shape [batch, heads, length, depth]
v: a Tensor with shape [batch, heads, length, depth]
query_block_size: an integer indicating size of query block
memory_block_size: an integer indicating the siz... | [
"Dilated",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3176-L3293 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | gather_dilated_memory_blocks | def gather_dilated_memory_blocks(x,
num_memory_blocks,
gap_size,
query_block_size,
memory_block_size,
gather_indices,
dire... | python | def gather_dilated_memory_blocks(x,
num_memory_blocks,
gap_size,
query_block_size,
memory_block_size,
gather_indices,
dire... | [
"def",
"gather_dilated_memory_blocks",
"(",
"x",
",",
"num_memory_blocks",
",",
"gap_size",
",",
"query_block_size",
",",
"memory_block_size",
",",
"gather_indices",
",",
"direction",
"=",
"\"left\"",
")",
":",
"gathered_blocks",
"=",
"[",
"]",
"# gathering memory blo... | Gathers blocks with gaps in between.
Args:
x: Tensor of shape [length, batch, heads, depth]
num_memory_blocks: how many memory blocks to look in "direction". Each will
be separated by gap_size.
gap_size: an integer indicating the gap size
query_block_size: an integer indicating size of query bl... | [
"Gathers",
"blocks",
"with",
"gaps",
"in",
"between",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3296-L3339 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | masked_dilated_self_attention_1d | def masked_dilated_self_attention_1d(q,
k,
v,
query_block_size=64,
memory_block_size=64,
gap_size=2,
... | python | def masked_dilated_self_attention_1d(q,
k,
v,
query_block_size=64,
memory_block_size=64,
gap_size=2,
... | [
"def",
"masked_dilated_self_attention_1d",
"(",
"q",
",",
"k",
",",
"v",
",",
"query_block_size",
"=",
"64",
",",
"memory_block_size",
"=",
"64",
",",
"gap_size",
"=",
"2",
",",
"num_memory_blocks",
"=",
"2",
",",
"name",
"=",
"None",
")",
":",
"with",
"... | Dilated self-attention. TODO(avaswani): Try it and write a paper on it.
Args:
q: a Tensor with shape [batch, heads, length, depth]
k: a Tensor with shape [batch, heads, length, depth]
v: a Tensor with shape [batch, heads, length, depth]
query_block_size: an integer
memory_block_size: an integer i... | [
"Dilated",
"self",
"-",
"attention",
".",
"TODO",
"(",
"avaswani",
")",
":",
"Try",
"it",
"and",
"write",
"a",
"paper",
"on",
"it",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3342-L3452 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | local_attention_2d | def local_attention_2d(q,
k,
v,
query_shape=(8, 16),
memory_flange=(8, 16),
name=None):
"""Strided block local self-attention.
The 2-D sequence is divided into 2-D blocks of shape query_shape. Attenti... | python | def local_attention_2d(q,
k,
v,
query_shape=(8, 16),
memory_flange=(8, 16),
name=None):
"""Strided block local self-attention.
The 2-D sequence is divided into 2-D blocks of shape query_shape. Attenti... | [
"def",
"local_attention_2d",
"(",
"q",
",",
"k",
",",
"v",
",",
"query_shape",
"=",
"(",
"8",
",",
"16",
")",
",",
"memory_flange",
"=",
"(",
"8",
",",
"16",
")",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name... | Strided block local self-attention.
The 2-D sequence is divided into 2-D blocks of shape query_shape. Attention
for a given query position can only see memory positions less than or equal to
the query position. The memory positions are the corresponding block with
memory_flange many positions to add to the hei... | [
"Strided",
"block",
"local",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3455-L3523 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | pad_to_multiple_2d | def pad_to_multiple_2d(x, block_shape):
"""Making sure x is a multiple of shape.
Args:
x: a [batch, heads, h, w, depth] or [batch, h, w, depth] tensor
block_shape: a 2-d list of integer shapes
Returns:
padded_x: a [batch, heads, h, w, depth] or [batch, h, w, depth] tensor
"""
old_shape = x.get_s... | python | def pad_to_multiple_2d(x, block_shape):
"""Making sure x is a multiple of shape.
Args:
x: a [batch, heads, h, w, depth] or [batch, h, w, depth] tensor
block_shape: a 2-d list of integer shapes
Returns:
padded_x: a [batch, heads, h, w, depth] or [batch, h, w, depth] tensor
"""
old_shape = x.get_s... | [
"def",
"pad_to_multiple_2d",
"(",
"x",
",",
"block_shape",
")",
":",
"old_shape",
"=",
"x",
".",
"get_shape",
"(",
")",
".",
"dims",
"last",
"=",
"old_shape",
"[",
"-",
"1",
"]",
"if",
"len",
"(",
"old_shape",
")",
"==",
"4",
":",
"height_padding",
"... | Making sure x is a multiple of shape.
Args:
x: a [batch, heads, h, w, depth] or [batch, h, w, depth] tensor
block_shape: a 2-d list of integer shapes
Returns:
padded_x: a [batch, heads, h, w, depth] or [batch, h, w, depth] tensor | [
"Making",
"sure",
"x",
"is",
"a",
"multiple",
"of",
"shape",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3526-L3551 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | reshape_range | def reshape_range(tensor, i, j, shape):
"""Reshapes a tensor between dimensions i and j."""
t_shape = common_layers.shape_list(tensor)
target_shape = t_shape[:i] + shape + t_shape[j:]
return tf.reshape(tensor, target_shape) | python | def reshape_range(tensor, i, j, shape):
"""Reshapes a tensor between dimensions i and j."""
t_shape = common_layers.shape_list(tensor)
target_shape = t_shape[:i] + shape + t_shape[j:]
return tf.reshape(tensor, target_shape) | [
"def",
"reshape_range",
"(",
"tensor",
",",
"i",
",",
"j",
",",
"shape",
")",
":",
"t_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"tensor",
")",
"target_shape",
"=",
"t_shape",
"[",
":",
"i",
"]",
"+",
"shape",
"+",
"t_shape",
"[",
"j",
":"... | Reshapes a tensor between dimensions i and j. | [
"Reshapes",
"a",
"tensor",
"between",
"dimensions",
"i",
"and",
"j",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3554-L3558 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | gather_blocks_2d | def gather_blocks_2d(x, indices):
"""Gathers flattened blocks from x."""
x_shape = common_layers.shape_list(x)
x = reshape_range(x, 2, 4, [tf.reduce_prod(x_shape[2:4])])
# [length, batch, heads, dim]
x_t = tf.transpose(x, [2, 0, 1, 3])
x_new = tf.gather(x_t, indices)
# returns [batch, heads, num_blocks, b... | python | def gather_blocks_2d(x, indices):
"""Gathers flattened blocks from x."""
x_shape = common_layers.shape_list(x)
x = reshape_range(x, 2, 4, [tf.reduce_prod(x_shape[2:4])])
# [length, batch, heads, dim]
x_t = tf.transpose(x, [2, 0, 1, 3])
x_new = tf.gather(x_t, indices)
# returns [batch, heads, num_blocks, b... | [
"def",
"gather_blocks_2d",
"(",
"x",
",",
"indices",
")",
":",
"x_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"x",
"=",
"reshape_range",
"(",
"x",
",",
"2",
",",
"4",
",",
"[",
"tf",
".",
"reduce_prod",
"(",
"x_shape",
"[",
"2",
... | Gathers flattened blocks from x. | [
"Gathers",
"flattened",
"blocks",
"from",
"x",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3561-L3569 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | scatter_blocks_2d | def scatter_blocks_2d(x, indices, shape):
"""scatters blocks from x into shape with indices."""
x_shape = common_layers.shape_list(x)
# [length, batch, heads, dim]
x_t = tf.transpose(
tf.reshape(x, [x_shape[0], x_shape[1], -1, x_shape[-1]]), [2, 0, 1, 3])
x_t_shape = common_layers.shape_list(x_t)
indi... | python | def scatter_blocks_2d(x, indices, shape):
"""scatters blocks from x into shape with indices."""
x_shape = common_layers.shape_list(x)
# [length, batch, heads, dim]
x_t = tf.transpose(
tf.reshape(x, [x_shape[0], x_shape[1], -1, x_shape[-1]]), [2, 0, 1, 3])
x_t_shape = common_layers.shape_list(x_t)
indi... | [
"def",
"scatter_blocks_2d",
"(",
"x",
",",
"indices",
",",
"shape",
")",
":",
"x_shape",
"=",
"common_layers",
".",
"shape_list",
"(",
"x",
")",
"# [length, batch, heads, dim]",
"x_t",
"=",
"tf",
".",
"transpose",
"(",
"tf",
".",
"reshape",
"(",
"x",
",",
... | scatters blocks from x into shape with indices. | [
"scatters",
"blocks",
"from",
"x",
"into",
"shape",
"with",
"indices",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3572-L3582 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | gather_indices_2d | def gather_indices_2d(x, block_shape, block_stride):
"""Getting gather indices."""
# making an identity matrix kernel
kernel = tf.eye(block_shape[0] * block_shape[1])
kernel = reshape_range(kernel, 0, 1, [block_shape[0], block_shape[1], 1])
# making indices [1, h, w, 1] to appy convs
x_shape = common_layers... | python | def gather_indices_2d(x, block_shape, block_stride):
"""Getting gather indices."""
# making an identity matrix kernel
kernel = tf.eye(block_shape[0] * block_shape[1])
kernel = reshape_range(kernel, 0, 1, [block_shape[0], block_shape[1], 1])
# making indices [1, h, w, 1] to appy convs
x_shape = common_layers... | [
"def",
"gather_indices_2d",
"(",
"x",
",",
"block_shape",
",",
"block_stride",
")",
":",
"# making an identity matrix kernel",
"kernel",
"=",
"tf",
".",
"eye",
"(",
"block_shape",
"[",
"0",
"]",
"*",
"block_shape",
"[",
"1",
"]",
")",
"kernel",
"=",
"reshape... | Getting gather indices. | [
"Getting",
"gather",
"indices",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3585-L3606 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | make_2d_block_raster_mask | def make_2d_block_raster_mask(query_shape, memory_flange):
"""Creates a mask for 2d block raster scan.
The query mask can look to the left, top left, top, and top right, but
not to the right. Inside the query, we have the standard raster scan
masking.
Args:
query_shape: A tuple of ints (query_height, que... | python | def make_2d_block_raster_mask(query_shape, memory_flange):
"""Creates a mask for 2d block raster scan.
The query mask can look to the left, top left, top, and top right, but
not to the right. Inside the query, we have the standard raster scan
masking.
Args:
query_shape: A tuple of ints (query_height, que... | [
"def",
"make_2d_block_raster_mask",
"(",
"query_shape",
",",
"memory_flange",
")",
":",
"# mask inside the query block",
"query_triangle",
"=",
"common_layers",
".",
"ones_matrix_band_part",
"(",
"np",
".",
"prod",
"(",
"query_shape",
")",
",",
"np",
".",
"prod",
"(... | Creates a mask for 2d block raster scan.
The query mask can look to the left, top left, top, and top right, but
not to the right. Inside the query, we have the standard raster scan
masking.
Args:
query_shape: A tuple of ints (query_height, query_width)
memory_flange: A tuple of ints
(memory_flang... | [
"Creates",
"a",
"mask",
"for",
"2d",
"block",
"raster",
"scan",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3609-L3646 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_memory_region | def get_memory_region(x, query_block_shape, memory_flange, q_indices):
"""Get the memory regions that surround a 2d query.
The memory regions will be the left and top right.
Args:
x: A tensor with shape [batch, heads, height, width, depth]
query_block_shape: a 2-d tuple of integers
memory_flange: ... | python | def get_memory_region(x, query_block_shape, memory_flange, q_indices):
"""Get the memory regions that surround a 2d query.
The memory regions will be the left and top right.
Args:
x: A tensor with shape [batch, heads, height, width, depth]
query_block_shape: a 2-d tuple of integers
memory_flange: ... | [
"def",
"get_memory_region",
"(",
"x",
",",
"query_block_shape",
",",
"memory_flange",
",",
"q_indices",
")",
":",
"# Padding x to be multiple of query_shape and then",
"# extracting the memory blocks from the same regions as the query blocks",
"x_query_padded",
"=",
"pad_to_multiple_... | Get the memory regions that surround a 2d query.
The memory regions will be the left and top right.
Args:
x: A tensor with shape [batch, heads, height, width, depth]
query_block_shape: a 2-d tuple of integers
memory_flange: a 2-d tuple of integers
q_indices: a tensor of indices for each of the c... | [
"Get",
"the",
"memory",
"regions",
"that",
"surround",
"a",
"2d",
"query",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3649-L3700 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | get_shifted_center_blocks | def get_shifted_center_blocks(x, indices):
"""Get right shifted blocks for masked local attention 2d.
Args:
x: A tensor with shape [batch, heads, height, width, depth]
indices: The indices to gather blocks
Returns:
x_shifted: a tensor of extracted blocks, each block right shifted along
length.... | python | def get_shifted_center_blocks(x, indices):
"""Get right shifted blocks for masked local attention 2d.
Args:
x: A tensor with shape [batch, heads, height, width, depth]
indices: The indices to gather blocks
Returns:
x_shifted: a tensor of extracted blocks, each block right shifted along
length.... | [
"def",
"get_shifted_center_blocks",
"(",
"x",
",",
"indices",
")",
":",
"center_x",
"=",
"gather_blocks_2d",
"(",
"x",
",",
"indices",
")",
"# Shift right along the length dimension",
"def",
"shift_right_2d_blocks",
"(",
"x",
")",
":",
"\"\"\"Shift the second to last di... | Get right shifted blocks for masked local attention 2d.
Args:
x: A tensor with shape [batch, heads, height, width, depth]
indices: The indices to gather blocks
Returns:
x_shifted: a tensor of extracted blocks, each block right shifted along
length. | [
"Get",
"right",
"shifted",
"blocks",
"for",
"masked",
"local",
"attention",
"2d",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3703-L3724 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | right_shift_blockwise | def right_shift_blockwise(x, query_shape, name=None):
"""Right shifts once in every block.
Args:
x: a tensor of shape [batch, height, width, depth]
query_shape: A 2d tuple of ints
name: a string
Returns:
output: a tensor of the same shape as x
"""
with tf.variable_scope(
name, default_... | python | def right_shift_blockwise(x, query_shape, name=None):
"""Right shifts once in every block.
Args:
x: a tensor of shape [batch, height, width, depth]
query_shape: A 2d tuple of ints
name: a string
Returns:
output: a tensor of the same shape as x
"""
with tf.variable_scope(
name, default_... | [
"def",
"right_shift_blockwise",
"(",
"x",
",",
"query_shape",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
",",
"default_name",
"=",
"\"right_shift_blockwise\"",
",",
"values",
"=",
"[",
"x",
"]",
")",
":",
"x_list_... | Right shifts once in every block.
Args:
x: a tensor of shape [batch, height, width, depth]
query_shape: A 2d tuple of ints
name: a string
Returns:
output: a tensor of the same shape as x | [
"Right",
"shifts",
"once",
"in",
"every",
"block",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3727-L3757 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | masked_local_attention_2d | def masked_local_attention_2d(q,
k,
v,
query_shape=(8, 16),
memory_flange=(8, 16),
name=None):
"""Strided block local self-attention.
Each position in a query block ... | python | def masked_local_attention_2d(q,
k,
v,
query_shape=(8, 16),
memory_flange=(8, 16),
name=None):
"""Strided block local self-attention.
Each position in a query block ... | [
"def",
"masked_local_attention_2d",
"(",
"q",
",",
"k",
",",
"v",
",",
"query_shape",
"=",
"(",
"8",
",",
"16",
")",
",",
"memory_flange",
"=",
"(",
"8",
",",
"16",
")",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
... | Strided block local self-attention.
Each position in a query block can attend to all the generated queries in
the query block, which are generated in raster scan, and positions that are
generated to the left and top. The shapes are specified by query shape and
memory flange. Note that if you're using this func... | [
"Strided",
"block",
"local",
"self",
"-",
"attention",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3760-L3850 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | compute_attention_component | def compute_attention_component(antecedent,
total_depth,
filter_width=1,
padding="VALID",
name="c",
vars_3d_num_heads=0,
layer_c... | python | def compute_attention_component(antecedent,
total_depth,
filter_width=1,
padding="VALID",
name="c",
vars_3d_num_heads=0,
layer_c... | [
"def",
"compute_attention_component",
"(",
"antecedent",
",",
"total_depth",
",",
"filter_width",
"=",
"1",
",",
"padding",
"=",
"\"VALID\"",
",",
"name",
"=",
"\"c\"",
",",
"vars_3d_num_heads",
"=",
"0",
",",
"layer_collection",
"=",
"None",
")",
":",
"if",
... | Computes attention compoenent (query, key or value).
Args:
antecedent: a Tensor with shape [batch, length, channels]
total_depth: an integer
filter_width: An integer specifying how wide you want the attention
component to be.
padding: One of "VALID", "SAME" or "LEFT". Default is VALID: No paddi... | [
"Computes",
"attention",
"compoenent",
"(",
"query",
"key",
"or",
"value",
")",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3853-L3903 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | compute_qkv | def compute_qkv(query_antecedent,
memory_antecedent,
total_key_depth,
total_value_depth,
q_filter_width=1,
kv_filter_width=1,
q_padding="VALID",
kv_padding="VALID",
vars_3d_num_heads=0,
... | python | def compute_qkv(query_antecedent,
memory_antecedent,
total_key_depth,
total_value_depth,
q_filter_width=1,
kv_filter_width=1,
q_padding="VALID",
kv_padding="VALID",
vars_3d_num_heads=0,
... | [
"def",
"compute_qkv",
"(",
"query_antecedent",
",",
"memory_antecedent",
",",
"total_key_depth",
",",
"total_value_depth",
",",
"q_filter_width",
"=",
"1",
",",
"kv_filter_width",
"=",
"1",
",",
"q_padding",
"=",
"\"VALID\"",
",",
"kv_padding",
"=",
"\"VALID\"",
"... | Computes query, key and value.
Args:
query_antecedent: a Tensor with shape [batch, length_q, channels]
memory_antecedent: a Tensor with shape [batch, length_m, channels]
total_key_depth: an integer
total_value_depth: an integer
q_filter_width: An integer specifying how wide you want the query to ... | [
"Computes",
"query",
"key",
"and",
"value",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3906-L3961 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | multihead_attention | def multihead_attention(query_antecedent,
memory_antecedent,
bias,
total_key_depth,
total_value_depth,
output_depth,
num_heads,
dropout_rate,
... | python | def multihead_attention(query_antecedent,
memory_antecedent,
bias,
total_key_depth,
total_value_depth,
output_depth,
num_heads,
dropout_rate,
... | [
"def",
"multihead_attention",
"(",
"query_antecedent",
",",
"memory_antecedent",
",",
"bias",
",",
"total_key_depth",
",",
"total_value_depth",
",",
"output_depth",
",",
"num_heads",
",",
"dropout_rate",
",",
"attention_type",
"=",
"\"dot_product\"",
",",
"max_relative_... | Multihead scaled-dot-product attention with input/output transformations.
Args:
query_antecedent: a Tensor with shape [batch, length_q, channels]
memory_antecedent: a Tensor with shape [batch, length_m, channels] or None
bias: bias Tensor (see attention_bias())
total_key_depth: an integer
total_v... | [
"Multihead",
"scaled",
"-",
"dot",
"-",
"product",
"attention",
"with",
"input",
"/",
"output",
"transformations",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L3964-L4299 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | multihead_attention_2d | def multihead_attention_2d(query_antecedent,
memory_antecedent,
total_key_depth,
total_value_depth,
output_depth,
num_heads,
attention_type="local_attention_2... | python | def multihead_attention_2d(query_antecedent,
memory_antecedent,
total_key_depth,
total_value_depth,
output_depth,
num_heads,
attention_type="local_attention_2... | [
"def",
"multihead_attention_2d",
"(",
"query_antecedent",
",",
"memory_antecedent",
",",
"total_key_depth",
",",
"total_value_depth",
",",
"output_depth",
",",
"num_heads",
",",
"attention_type",
"=",
"\"local_attention_2d\"",
",",
"query_shape",
"=",
"(",
"8",
",",
"... | 2d Multihead scaled-dot-product attention with inp/output transformations.
Args:
query_antecedent: a Tensor with shape [batch, h, w, depth_k]
memory_antecedent: a Tensor with shape [batch, h, w, depth_k]
total_key_depth: an integer
total_value_depth: an integer
output_depth: an integer
num_he... | [
"2d",
"Multihead",
"scaled",
"-",
"dot",
"-",
"product",
"attention",
"with",
"inp",
"/",
"output",
"transformations",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L4302-L4365 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | ffn_self_attention_layer | def ffn_self_attention_layer(x,
filter_depth,
output_depth,
num_parts,
dropout_rate,
share_kv=False,
name=None):
"""Self-attention feedforward l... | python | def ffn_self_attention_layer(x,
filter_depth,
output_depth,
num_parts,
dropout_rate,
share_kv=False,
name=None):
"""Self-attention feedforward l... | [
"def",
"ffn_self_attention_layer",
"(",
"x",
",",
"filter_depth",
",",
"output_depth",
",",
"num_parts",
",",
"dropout_rate",
",",
"share_kv",
"=",
"False",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
",",
"default_n... | Self-attention feedforward layer.
We use self-attention to do feedforward computations. We apply this function
positionwise where for each position, we linearly transform the output to have
depth filter_depth, and break up the result depth-wise into num_parts
contiguous parts. The parts self-attend, we concate... | [
"Self",
"-",
"attention",
"feedforward",
"layer",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L4368-L4430 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | parameter_attention | def parameter_attention(x,
total_key_depth,
total_value_depth,
output_depth,
memory_rows,
num_heads,
dropout_rate,
name=None):
"""Attention over param... | python | def parameter_attention(x,
total_key_depth,
total_value_depth,
output_depth,
memory_rows,
num_heads,
dropout_rate,
name=None):
"""Attention over param... | [
"def",
"parameter_attention",
"(",
"x",
",",
"total_key_depth",
",",
"total_value_depth",
",",
"output_depth",
",",
"memory_rows",
",",
"num_heads",
",",
"dropout_rate",
",",
"name",
"=",
"None",
")",
":",
"with",
"tf",
".",
"variable_scope",
"(",
"name",
",",... | Attention over parameters.
We use the same multi-headed attention as in the other layers, but the memory
keys and values are model parameters. There are no linear transformation on
the keys or values.
We are also a bit more careful about memory usage, since the number of
memory positions may be very large.
... | [
"Attention",
"over",
"parameters",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L4433-L4502 | train |
tensorflow/tensor2tensor | tensor2tensor/layers/common_attention.py | coordinate_tensor | def coordinate_tensor(shape, axis):
"""Return a tensor with given shape containing coordinate along given axis.
Args:
shape: a Tensor representing the shape of the output Tensor
axis: an integer
Returns:
A tensor with shape shape and type tf.int32, where each elements its
coordinate along the gi... | python | def coordinate_tensor(shape, axis):
"""Return a tensor with given shape containing coordinate along given axis.
Args:
shape: a Tensor representing the shape of the output Tensor
axis: an integer
Returns:
A tensor with shape shape and type tf.int32, where each elements its
coordinate along the gi... | [
"def",
"coordinate_tensor",
"(",
"shape",
",",
"axis",
")",
":",
"if",
"axis",
"<",
"0",
":",
"axis",
"=",
"tf",
".",
"size",
"(",
"shape",
")",
"+",
"axis",
"# Convert to positive for the one_hot indice",
"r",
"=",
"tf",
".",
"range",
"(",
"shape",
"[",... | Return a tensor with given shape containing coordinate along given axis.
Args:
shape: a Tensor representing the shape of the output Tensor
axis: an integer
Returns:
A tensor with shape shape and type tf.int32, where each elements its
coordinate along the given axis. | [
"Return",
"a",
"tensor",
"with",
"given",
"shape",
"containing",
"coordinate",
"along",
"given",
"axis",
"."
] | 272500b6efe353aeb638d2745ed56e519462ca31 | https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_attention.py#L4506-L4523 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.