Move legacy TF RNN cells to Keras and export there.
PiperOrigin-RevId: 302523110 Change-Id: Ifd9b6a2ee82bfaa9ca054dfda754257227bb5789
This commit is contained in:
parent
79b8c700d4
commit
083fc9754e
@ -4043,7 +4043,6 @@ py_library(
|
|||||||
":nn_ops",
|
":nn_ops",
|
||||||
":nn_ops_gen",
|
":nn_ops_gen",
|
||||||
":platform_device_context",
|
":platform_device_context",
|
||||||
":rnn",
|
|
||||||
":sparse_ops",
|
":sparse_ops",
|
||||||
":util",
|
":util",
|
||||||
":variables",
|
":variables",
|
||||||
@ -4245,6 +4244,8 @@ py_library(
|
|||||||
":util",
|
":util",
|
||||||
":variable_scope",
|
":variable_scope",
|
||||||
":variables",
|
":variables",
|
||||||
|
"//tensorflow/python/keras/layers/legacy_rnn:rnn_cell_impl",
|
||||||
|
"//tensorflow/python/keras/layers/legacy_rnn:rnn_cell_wrapper_impl",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
54
tensorflow/python/keras/layers/legacy_rnn/BUILD
Normal file
54
tensorflow/python/keras/layers/legacy_rnn/BUILD
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# Description:
|
||||||
|
# Contains the legacy TF RNN APIs (internal TensorFlow version).
|
||||||
|
|
||||||
|
package(
|
||||||
|
default_visibility = ["//tensorflow:__subpackages__"],
|
||||||
|
licenses = ["notice"], # Apache 2.0
|
||||||
|
)
|
||||||
|
|
||||||
|
py_library(
|
||||||
|
name = "rnn_cell_impl",
|
||||||
|
srcs = ["rnn_cell_impl.py"],
|
||||||
|
deps = [
|
||||||
|
":rnn_cell_wrapper_impl",
|
||||||
|
"//tensorflow/python:array_ops",
|
||||||
|
"//tensorflow/python:clip_ops",
|
||||||
|
"//tensorflow/python:constant_op",
|
||||||
|
"//tensorflow/python:dtypes",
|
||||||
|
"//tensorflow/python:framework_ops",
|
||||||
|
"//tensorflow/python:init_ops",
|
||||||
|
"//tensorflow/python:layers_base",
|
||||||
|
"//tensorflow/python:math_ops",
|
||||||
|
"//tensorflow/python:nn_ops",
|
||||||
|
"//tensorflow/python:partitioned_variables",
|
||||||
|
"//tensorflow/python:platform",
|
||||||
|
"//tensorflow/python:tensor_shape",
|
||||||
|
"//tensorflow/python:tensor_util",
|
||||||
|
"//tensorflow/python:util",
|
||||||
|
"//tensorflow/python:variable_scope",
|
||||||
|
"//tensorflow/python:variables",
|
||||||
|
"//tensorflow/python/eager:context",
|
||||||
|
"//tensorflow/python/keras:activations",
|
||||||
|
"//tensorflow/python/keras:initializers",
|
||||||
|
"//tensorflow/python/keras/engine:input_spec",
|
||||||
|
"//tensorflow/python/keras/utils:tf_utils",
|
||||||
|
"//tensorflow/python/training/tracking:base",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
py_library(
|
||||||
|
name = "rnn_cell_wrapper_impl",
|
||||||
|
srcs = ["rnn_cell_wrapper_impl.py"],
|
||||||
|
deps = [
|
||||||
|
"//tensorflow/python:array_ops",
|
||||||
|
"//tensorflow/python:framework_ops",
|
||||||
|
"//tensorflow/python:math_ops",
|
||||||
|
"//tensorflow/python:nn_ops",
|
||||||
|
"//tensorflow/python:random_ops",
|
||||||
|
"//tensorflow/python:tensor_array_ops",
|
||||||
|
"//tensorflow/python:tensor_shape",
|
||||||
|
"//tensorflow/python:tensor_util",
|
||||||
|
"//tensorflow/python:util",
|
||||||
|
"//tensorflow/python/keras/utils:generic_utils",
|
||||||
|
],
|
||||||
|
)
|
1355
tensorflow/python/keras/layers/legacy_rnn/rnn_cell_impl.py
Normal file
1355
tensorflow/python/keras/layers/legacy_rnn/rnn_cell_impl.py
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,516 @@
|
|||||||
|
# Copyright 2019 The TensorFlow Authors. All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
# ==============================================================================
|
||||||
|
"""Module contains the implementation of RNN cell wrappers."""
|
||||||
|
from __future__ import absolute_import
|
||||||
|
from __future__ import division
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import hashlib
|
||||||
|
import numbers
|
||||||
|
import sys
|
||||||
|
import types as python_types
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
from tensorflow.python.framework import ops
|
||||||
|
from tensorflow.python.framework import tensor_shape
|
||||||
|
from tensorflow.python.framework import tensor_util
|
||||||
|
from tensorflow.python.keras.utils import generic_utils
|
||||||
|
from tensorflow.python.ops import array_ops
|
||||||
|
from tensorflow.python.ops import math_ops
|
||||||
|
from tensorflow.python.ops import nn_ops
|
||||||
|
from tensorflow.python.ops import random_ops
|
||||||
|
from tensorflow.python.ops import tensor_array_ops
|
||||||
|
from tensorflow.python.util import nest
|
||||||
|
|
||||||
|
|
||||||
|
class DropoutWrapperBase(object):
|
||||||
|
"""Operator adding dropout to inputs and outputs of the given cell."""
|
||||||
|
|
||||||
|
def __init__(self,
|
||||||
|
cell,
|
||||||
|
input_keep_prob=1.0,
|
||||||
|
output_keep_prob=1.0,
|
||||||
|
state_keep_prob=1.0,
|
||||||
|
variational_recurrent=False,
|
||||||
|
input_size=None,
|
||||||
|
dtype=None,
|
||||||
|
seed=None,
|
||||||
|
dropout_state_filter_visitor=None,
|
||||||
|
**kwargs):
|
||||||
|
"""Create a cell with added input, state, and/or output dropout.
|
||||||
|
|
||||||
|
If `variational_recurrent` is set to `True` (**NOT** the default behavior),
|
||||||
|
then the same dropout mask is applied at every step, as described in:
|
||||||
|
[A Theoretically Grounded Application of Dropout in Recurrent
|
||||||
|
Neural Networks. Y. Gal, Z. Ghahramani](https://arxiv.org/abs/1512.05287).
|
||||||
|
|
||||||
|
Otherwise a different dropout mask is applied at every time step.
|
||||||
|
|
||||||
|
Note, by default (unless a custom `dropout_state_filter` is provided),
|
||||||
|
the memory state (`c` component of any `LSTMStateTuple`) passing through
|
||||||
|
a `DropoutWrapper` is never modified. This behavior is described in the
|
||||||
|
above article.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
cell: an RNNCell, a projection to output_size is added to it.
|
||||||
|
input_keep_prob: unit Tensor or float between 0 and 1, input keep
|
||||||
|
probability; if it is constant and 1, no input dropout will be added.
|
||||||
|
output_keep_prob: unit Tensor or float between 0 and 1, output keep
|
||||||
|
probability; if it is constant and 1, no output dropout will be added.
|
||||||
|
state_keep_prob: unit Tensor or float between 0 and 1, output keep
|
||||||
|
probability; if it is constant and 1, no output dropout will be added.
|
||||||
|
State dropout is performed on the outgoing states of the cell. **Note**
|
||||||
|
the state components to which dropout is applied when `state_keep_prob`
|
||||||
|
is in `(0, 1)` are also determined by the argument
|
||||||
|
`dropout_state_filter_visitor` (e.g. by default dropout is never applied
|
||||||
|
to the `c` component of an `LSTMStateTuple`).
|
||||||
|
variational_recurrent: Python bool. If `True`, then the same dropout
|
||||||
|
pattern is applied across all time steps per run call. If this parameter
|
||||||
|
is set, `input_size` **must** be provided.
|
||||||
|
input_size: (optional) (possibly nested tuple of) `TensorShape` objects
|
||||||
|
containing the depth(s) of the input tensors expected to be passed in to
|
||||||
|
the `DropoutWrapper`. Required and used **iff** `variational_recurrent
|
||||||
|
= True` and `input_keep_prob < 1`.
|
||||||
|
dtype: (optional) The `dtype` of the input, state, and output tensors.
|
||||||
|
Required and used **iff** `variational_recurrent = True`.
|
||||||
|
seed: (optional) integer, the randomness seed.
|
||||||
|
dropout_state_filter_visitor: (optional), default: (see below). Function
|
||||||
|
that takes any hierarchical level of the state and returns a scalar or
|
||||||
|
depth=1 structure of Python booleans describing which terms in the state
|
||||||
|
should be dropped out. In addition, if the function returns `True`,
|
||||||
|
dropout is applied across this sublevel. If the function returns
|
||||||
|
`False`, dropout is not applied across this entire sublevel.
|
||||||
|
Default behavior: perform dropout on all terms except the memory (`c`)
|
||||||
|
state of `LSTMCellState` objects, and don't try to apply dropout to
|
||||||
|
`TensorArray` objects: ```
|
||||||
|
def dropout_state_filter_visitor(s):
|
||||||
|
if isinstance(s, LSTMCellState): # Never perform dropout on the c
|
||||||
|
state. return LSTMCellState(c=False, h=True)
|
||||||
|
elif isinstance(s, TensorArray): return False return True ```
|
||||||
|
**kwargs: dict of keyword arguments for base layer.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
TypeError: if `cell` is not an `RNNCell`, or `keep_state_fn` is provided
|
||||||
|
but not `callable`.
|
||||||
|
ValueError: if any of the keep_probs are not between 0 and 1.
|
||||||
|
"""
|
||||||
|
super(DropoutWrapperBase, self).__init__(cell, dtype=dtype, **kwargs)
|
||||||
|
|
||||||
|
if (dropout_state_filter_visitor is not None and
|
||||||
|
not callable(dropout_state_filter_visitor)):
|
||||||
|
raise TypeError("dropout_state_filter_visitor must be callable")
|
||||||
|
self._dropout_state_filter = (
|
||||||
|
dropout_state_filter_visitor or _default_dropout_state_filter_visitor)
|
||||||
|
with ops.name_scope("DropoutWrapperInit"):
|
||||||
|
|
||||||
|
def tensor_and_const_value(v):
|
||||||
|
tensor_value = ops.convert_to_tensor(v)
|
||||||
|
const_value = tensor_util.constant_value(tensor_value)
|
||||||
|
return (tensor_value, const_value)
|
||||||
|
|
||||||
|
for prob, attr in [(input_keep_prob, "input_keep_prob"),
|
||||||
|
(state_keep_prob, "state_keep_prob"),
|
||||||
|
(output_keep_prob, "output_keep_prob")]:
|
||||||
|
tensor_prob, const_prob = tensor_and_const_value(prob)
|
||||||
|
if const_prob is not None:
|
||||||
|
if const_prob < 0 or const_prob > 1:
|
||||||
|
raise ValueError("Parameter %s must be between 0 and 1: %d" %
|
||||||
|
(attr, const_prob))
|
||||||
|
setattr(self, "_%s" % attr, float(const_prob))
|
||||||
|
else:
|
||||||
|
setattr(self, "_%s" % attr, tensor_prob)
|
||||||
|
|
||||||
|
# Set variational_recurrent, seed before running the code below
|
||||||
|
self._variational_recurrent = variational_recurrent
|
||||||
|
self._input_size = input_size
|
||||||
|
self._seed = seed
|
||||||
|
|
||||||
|
self._recurrent_input_noise = None
|
||||||
|
self._recurrent_state_noise = None
|
||||||
|
self._recurrent_output_noise = None
|
||||||
|
|
||||||
|
if variational_recurrent:
|
||||||
|
if dtype is None:
|
||||||
|
raise ValueError(
|
||||||
|
"When variational_recurrent=True, dtype must be provided")
|
||||||
|
|
||||||
|
def convert_to_batch_shape(s):
|
||||||
|
# Prepend a 1 for the batch dimension; for recurrent
|
||||||
|
# variational dropout we use the same dropout mask for all
|
||||||
|
# batch elements.
|
||||||
|
return array_ops.concat(([1], tensor_shape.TensorShape(s).as_list()), 0)
|
||||||
|
|
||||||
|
def batch_noise(s, inner_seed):
|
||||||
|
shape = convert_to_batch_shape(s)
|
||||||
|
return random_ops.random_uniform(shape, seed=inner_seed, dtype=dtype)
|
||||||
|
|
||||||
|
if (not isinstance(self._input_keep_prob, numbers.Real) or
|
||||||
|
self._input_keep_prob < 1.0):
|
||||||
|
if input_size is None:
|
||||||
|
raise ValueError(
|
||||||
|
"When variational_recurrent=True and input_keep_prob < 1.0 or "
|
||||||
|
"is unknown, input_size must be provided")
|
||||||
|
self._recurrent_input_noise = _enumerated_map_structure_up_to(
|
||||||
|
input_size,
|
||||||
|
lambda i, s: batch_noise(s, inner_seed=self._gen_seed("input", i)),
|
||||||
|
input_size)
|
||||||
|
self._recurrent_state_noise = _enumerated_map_structure_up_to(
|
||||||
|
cell.state_size,
|
||||||
|
lambda i, s: batch_noise(s, inner_seed=self._gen_seed("state", i)),
|
||||||
|
cell.state_size)
|
||||||
|
self._recurrent_output_noise = _enumerated_map_structure_up_to(
|
||||||
|
cell.output_size,
|
||||||
|
lambda i, s: batch_noise(s, inner_seed=self._gen_seed("output", i)),
|
||||||
|
cell.output_size)
|
||||||
|
|
||||||
|
def _gen_seed(self, salt_prefix, index):
|
||||||
|
if self._seed is None:
|
||||||
|
return None
|
||||||
|
salt = "%s_%d" % (salt_prefix, index)
|
||||||
|
string = (str(self._seed) + salt).encode("utf-8")
|
||||||
|
return int(hashlib.md5(string).hexdigest()[:8], 16) & 0x7FFFFFFF
|
||||||
|
|
||||||
|
@property
|
||||||
|
def wrapped_cell(self):
|
||||||
|
return self.cell
|
||||||
|
|
||||||
|
@property
|
||||||
|
def state_size(self):
|
||||||
|
return self.cell.state_size
|
||||||
|
|
||||||
|
@property
|
||||||
|
def output_size(self):
|
||||||
|
return self.cell.output_size
|
||||||
|
|
||||||
|
def build(self, inputs_shape):
|
||||||
|
self.cell.build(inputs_shape)
|
||||||
|
self.built = True
|
||||||
|
|
||||||
|
def zero_state(self, batch_size, dtype):
|
||||||
|
with ops.name_scope(type(self).__name__ + "ZeroState", values=[batch_size]):
|
||||||
|
return self.cell.zero_state(batch_size, dtype)
|
||||||
|
|
||||||
|
def _variational_recurrent_dropout_value(
|
||||||
|
self, unused_index, value, noise, keep_prob):
|
||||||
|
"""Performs dropout given the pre-calculated noise tensor."""
|
||||||
|
# uniform [keep_prob, 1.0 + keep_prob)
|
||||||
|
random_tensor = keep_prob + noise
|
||||||
|
|
||||||
|
# 0. if [keep_prob, 1.0) and 1. if [1.0, 1.0 + keep_prob)
|
||||||
|
binary_tensor = math_ops.floor(random_tensor)
|
||||||
|
ret = math_ops.divide(value, keep_prob) * binary_tensor
|
||||||
|
ret.set_shape(value.get_shape())
|
||||||
|
return ret
|
||||||
|
|
||||||
|
def _dropout(self,
|
||||||
|
values,
|
||||||
|
salt_prefix,
|
||||||
|
recurrent_noise,
|
||||||
|
keep_prob,
|
||||||
|
shallow_filtered_substructure=None):
|
||||||
|
"""Decides whether to perform standard dropout or recurrent dropout."""
|
||||||
|
|
||||||
|
if shallow_filtered_substructure is None:
|
||||||
|
# Put something so we traverse the entire structure; inside the
|
||||||
|
# dropout function we check to see if leafs of this are bool or not.
|
||||||
|
shallow_filtered_substructure = values
|
||||||
|
|
||||||
|
if not self._variational_recurrent:
|
||||||
|
|
||||||
|
def dropout(i, do_dropout, v):
|
||||||
|
if not isinstance(do_dropout, bool) or do_dropout:
|
||||||
|
return nn_ops.dropout_v2(
|
||||||
|
v, rate=1. - keep_prob, seed=self._gen_seed(salt_prefix, i))
|
||||||
|
else:
|
||||||
|
return v
|
||||||
|
|
||||||
|
return _enumerated_map_structure_up_to(
|
||||||
|
shallow_filtered_substructure, dropout,
|
||||||
|
*[shallow_filtered_substructure, values])
|
||||||
|
else:
|
||||||
|
|
||||||
|
def dropout(i, do_dropout, v, n):
|
||||||
|
if not isinstance(do_dropout, bool) or do_dropout:
|
||||||
|
return self._variational_recurrent_dropout_value(i, v, n, keep_prob)
|
||||||
|
else:
|
||||||
|
return v
|
||||||
|
|
||||||
|
return _enumerated_map_structure_up_to(
|
||||||
|
shallow_filtered_substructure, dropout,
|
||||||
|
*[shallow_filtered_substructure, values, recurrent_noise])
|
||||||
|
|
||||||
|
def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs):
|
||||||
|
"""Runs the wrapped cell and applies dropout.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
inputs: A tensor with wrapped cell's input.
|
||||||
|
state: A tensor or tuple of tensors with wrapped cell's state.
|
||||||
|
cell_call_fn: Wrapped cell's method to use for step computation (cell's
|
||||||
|
`__call__` or 'call' method).
|
||||||
|
**kwargs: Additional arguments.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
A pair containing:
|
||||||
|
|
||||||
|
- Output: A tensor with cell's output.
|
||||||
|
- New state: A tensor or tuple of tensors with new wrapped cell's state.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def _should_dropout(p):
|
||||||
|
return (not isinstance(p, float)) or p < 1
|
||||||
|
|
||||||
|
if _should_dropout(self._input_keep_prob):
|
||||||
|
inputs = self._dropout(inputs, "input", self._recurrent_input_noise,
|
||||||
|
self._input_keep_prob)
|
||||||
|
output, new_state = cell_call_fn(inputs, state, **kwargs)
|
||||||
|
if _should_dropout(self._state_keep_prob):
|
||||||
|
# Identify which subsets of the state to perform dropout on and
|
||||||
|
# which ones to keep.
|
||||||
|
shallow_filtered_substructure = nest.get_traverse_shallow_structure(
|
||||||
|
self._dropout_state_filter, new_state)
|
||||||
|
new_state = self._dropout(new_state, "state", self._recurrent_state_noise,
|
||||||
|
self._state_keep_prob,
|
||||||
|
shallow_filtered_substructure)
|
||||||
|
if _should_dropout(self._output_keep_prob):
|
||||||
|
output = self._dropout(output, "output", self._recurrent_output_noise,
|
||||||
|
self._output_keep_prob)
|
||||||
|
return output, new_state
|
||||||
|
|
||||||
|
def get_config(self):
|
||||||
|
"""Returns the config of the dropout wrapper."""
|
||||||
|
config = {
|
||||||
|
"input_keep_prob": self._input_keep_prob,
|
||||||
|
"output_keep_prob": self._output_keep_prob,
|
||||||
|
"state_keep_prob": self._state_keep_prob,
|
||||||
|
"variational_recurrent": self._variational_recurrent,
|
||||||
|
"input_size": self._input_size,
|
||||||
|
"seed": self._seed,
|
||||||
|
}
|
||||||
|
if self._dropout_state_filter != _default_dropout_state_filter_visitor:
|
||||||
|
function, function_type, function_module = _serialize_function_to_config(
|
||||||
|
self._dropout_state_filter)
|
||||||
|
config.update({"dropout_fn": function,
|
||||||
|
"dropout_fn_type": function_type,
|
||||||
|
"dropout_fn_module": function_module})
|
||||||
|
base_config = super(DropoutWrapperBase, self).get_config()
|
||||||
|
return dict(list(base_config.items()) + list(config.items()))
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_config(cls, config, custom_objects=None):
|
||||||
|
if "dropout_fn" in config:
|
||||||
|
config = config.copy()
|
||||||
|
dropout_state_filter = _parse_config_to_function(
|
||||||
|
config, custom_objects, "dropout_fn", "dropout_fn_type",
|
||||||
|
"dropout_fn_module")
|
||||||
|
config.pop("dropout_fn")
|
||||||
|
config["dropout_state_filter_visitor"] = dropout_state_filter
|
||||||
|
return super(DropoutWrapperBase, cls).from_config(
|
||||||
|
config, custom_objects=custom_objects)
|
||||||
|
|
||||||
|
|
||||||
|
class ResidualWrapperBase(object):
|
||||||
|
"""RNNCell wrapper that ensures cell inputs are added to the outputs."""
|
||||||
|
|
||||||
|
def __init__(self, cell, residual_fn=None, **kwargs):
|
||||||
|
"""Constructs a `ResidualWrapper` for `cell`.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
cell: An instance of `RNNCell`.
|
||||||
|
residual_fn: (Optional) The function to map raw cell inputs and raw cell
|
||||||
|
outputs to the actual cell outputs of the residual network.
|
||||||
|
Defaults to calling nest.map_structure on (lambda i, o: i + o), inputs
|
||||||
|
and outputs.
|
||||||
|
**kwargs: dict of keyword arguments for base layer.
|
||||||
|
"""
|
||||||
|
super(ResidualWrapperBase, self).__init__(cell, **kwargs)
|
||||||
|
self._residual_fn = residual_fn
|
||||||
|
|
||||||
|
@property
|
||||||
|
def state_size(self):
|
||||||
|
return self.cell.state_size
|
||||||
|
|
||||||
|
@property
|
||||||
|
def output_size(self):
|
||||||
|
return self.cell.output_size
|
||||||
|
|
||||||
|
def zero_state(self, batch_size, dtype):
|
||||||
|
with ops.name_scope(type(self).__name__ + "ZeroState", values=[batch_size]):
|
||||||
|
return self.cell.zero_state(batch_size, dtype)
|
||||||
|
|
||||||
|
def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs):
|
||||||
|
"""Run the cell and then apply the residual_fn on its inputs to its outputs.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
inputs: cell inputs.
|
||||||
|
state: cell state.
|
||||||
|
cell_call_fn: Wrapped cell's method to use for step computation (cell's
|
||||||
|
`__call__` or 'call' method).
|
||||||
|
**kwargs: Additional arguments passed to the wrapped cell's `call`.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Tuple of cell outputs and new state.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
TypeError: If cell inputs and outputs have different structure (type).
|
||||||
|
ValueError: If cell inputs and outputs have different structure (value).
|
||||||
|
"""
|
||||||
|
outputs, new_state = cell_call_fn(inputs, state, **kwargs)
|
||||||
|
|
||||||
|
# Ensure shapes match
|
||||||
|
def assert_shape_match(inp, out):
|
||||||
|
inp.get_shape().assert_is_compatible_with(out.get_shape())
|
||||||
|
|
||||||
|
def default_residual_fn(inputs, outputs):
|
||||||
|
nest.assert_same_structure(inputs, outputs)
|
||||||
|
nest.map_structure(assert_shape_match, inputs, outputs)
|
||||||
|
return nest.map_structure(lambda inp, out: inp + out, inputs, outputs)
|
||||||
|
|
||||||
|
res_outputs = (self._residual_fn or default_residual_fn)(inputs, outputs)
|
||||||
|
return (res_outputs, new_state)
|
||||||
|
|
||||||
|
def get_config(self):
|
||||||
|
"""Returns the config of the residual wrapper."""
|
||||||
|
if self._residual_fn is not None:
|
||||||
|
function, function_type, function_module = _serialize_function_to_config(
|
||||||
|
self._residual_fn)
|
||||||
|
config = {
|
||||||
|
"residual_fn": function,
|
||||||
|
"residual_fn_type": function_type,
|
||||||
|
"residual_fn_module": function_module
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
config = {}
|
||||||
|
base_config = super(ResidualWrapperBase, self).get_config()
|
||||||
|
return dict(list(base_config.items()) + list(config.items()))
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_config(cls, config, custom_objects=None):
|
||||||
|
if "residual_fn" in config:
|
||||||
|
config = config.copy()
|
||||||
|
residual_function = _parse_config_to_function(config, custom_objects,
|
||||||
|
"residual_fn",
|
||||||
|
"residual_fn_type",
|
||||||
|
"residual_fn_module")
|
||||||
|
config["residual_fn"] = residual_function
|
||||||
|
return super(ResidualWrapperBase, cls).from_config(
|
||||||
|
config, custom_objects=custom_objects)
|
||||||
|
|
||||||
|
|
||||||
|
class DeviceWrapperBase(object):
|
||||||
|
"""Operator that ensures an RNNCell runs on a particular device."""
|
||||||
|
|
||||||
|
def __init__(self, cell, device, **kwargs):
|
||||||
|
"""Construct a `DeviceWrapper` for `cell` with device `device`.
|
||||||
|
|
||||||
|
Ensures the wrapped `cell` is called with `tf.device(device)`.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
cell: An instance of `RNNCell`.
|
||||||
|
device: A device string or function, for passing to `tf.device`.
|
||||||
|
**kwargs: dict of keyword arguments for base layer.
|
||||||
|
"""
|
||||||
|
super(DeviceWrapperBase, self).__init__(cell, **kwargs)
|
||||||
|
self._device = device
|
||||||
|
|
||||||
|
@property
|
||||||
|
def state_size(self):
|
||||||
|
return self.cell.state_size
|
||||||
|
|
||||||
|
@property
|
||||||
|
def output_size(self):
|
||||||
|
return self.cell.output_size
|
||||||
|
|
||||||
|
def zero_state(self, batch_size, dtype):
|
||||||
|
with ops.name_scope(type(self).__name__ + "ZeroState", values=[batch_size]):
|
||||||
|
with ops.device(self._device):
|
||||||
|
return self.cell.zero_state(batch_size, dtype)
|
||||||
|
|
||||||
|
def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs):
|
||||||
|
"""Run the cell on specified device."""
|
||||||
|
with ops.device(self._device):
|
||||||
|
return cell_call_fn(inputs, state, **kwargs)
|
||||||
|
|
||||||
|
def get_config(self):
|
||||||
|
config = {"device": self._device}
|
||||||
|
base_config = super(DeviceWrapperBase, self).get_config()
|
||||||
|
return dict(list(base_config.items()) + list(config.items()))
|
||||||
|
|
||||||
|
|
||||||
|
def _serialize_function_to_config(function):
|
||||||
|
"""Serialize the function for get_config()."""
|
||||||
|
if isinstance(function, python_types.LambdaType):
|
||||||
|
output = generic_utils.func_dump(function)
|
||||||
|
output_type = "lambda"
|
||||||
|
module = function.__module__
|
||||||
|
elif callable(function):
|
||||||
|
output = function.__name__
|
||||||
|
output_type = "function"
|
||||||
|
module = function.__module__
|
||||||
|
else:
|
||||||
|
raise ValueError("Unrecognized function type for input: {}".format(
|
||||||
|
type(function)))
|
||||||
|
|
||||||
|
return output, output_type, module
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_config_to_function(config, custom_objects, func_attr_name,
|
||||||
|
func_type_attr_name, module_attr_name):
|
||||||
|
"""Reconstruct the function from the config."""
|
||||||
|
globs = globals()
|
||||||
|
module = config.pop(module_attr_name, None)
|
||||||
|
if module in sys.modules:
|
||||||
|
globs.update(sys.modules[module].__dict__)
|
||||||
|
elif module is not None:
|
||||||
|
# Note: we don't know the name of the function if it's a lambda.
|
||||||
|
warnings.warn("{} is not loaded, but a layer uses it. "
|
||||||
|
"It may cause errors.".format(module), UserWarning)
|
||||||
|
if custom_objects:
|
||||||
|
globs.update(custom_objects)
|
||||||
|
function_type = config.pop(func_type_attr_name)
|
||||||
|
if function_type == "function":
|
||||||
|
# Simple lookup in custom objects
|
||||||
|
function = generic_utils.deserialize_keras_object(
|
||||||
|
config[func_attr_name],
|
||||||
|
custom_objects=custom_objects,
|
||||||
|
printable_module_name="function in wrapper")
|
||||||
|
elif function_type == "lambda":
|
||||||
|
# Unsafe deserialization from bytecode
|
||||||
|
function = generic_utils.func_load(
|
||||||
|
config[func_attr_name], globs=globs)
|
||||||
|
else:
|
||||||
|
raise TypeError("Unknown function type:", function_type)
|
||||||
|
return function
|
||||||
|
|
||||||
|
|
||||||
|
def _default_dropout_state_filter_visitor(substate):
|
||||||
|
from tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl import LSTMStateTuple # pylint: disable=g-import-not-at-top
|
||||||
|
if isinstance(substate, LSTMStateTuple):
|
||||||
|
# Do not perform dropout on the memory state.
|
||||||
|
return LSTMStateTuple(c=False, h=True)
|
||||||
|
elif isinstance(substate, tensor_array_ops.TensorArray):
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def _enumerated_map_structure_up_to(shallow_structure, map_fn, *args, **kwargs):
|
||||||
|
ix = [0]
|
||||||
|
|
||||||
|
def enumerated_fn(*inner_args, **inner_kwargs):
|
||||||
|
r = map_fn(ix[0], *inner_args, **inner_kwargs)
|
||||||
|
ix[0] += 1
|
||||||
|
return r
|
||||||
|
|
||||||
|
return nest.map_structure_up_to(shallow_structure, enumerated_fn, *args,
|
||||||
|
**kwargs)
|
File diff suppressed because it is too large
Load Diff
@ -17,500 +17,9 @@ from __future__ import absolute_import
|
|||||||
from __future__ import division
|
from __future__ import division
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import hashlib
|
from tensorflow.python.keras.layers.legacy_rnn import rnn_cell_wrapper_impl
|
||||||
import numbers
|
|
||||||
import sys
|
|
||||||
import types as python_types
|
|
||||||
import warnings
|
|
||||||
|
|
||||||
from tensorflow.python.framework import ops
|
|
||||||
from tensorflow.python.framework import tensor_shape
|
|
||||||
from tensorflow.python.framework import tensor_util
|
|
||||||
from tensorflow.python.keras.utils import generic_utils
|
|
||||||
from tensorflow.python.ops import array_ops
|
|
||||||
from tensorflow.python.ops import math_ops
|
|
||||||
from tensorflow.python.ops import nn_ops
|
|
||||||
from tensorflow.python.ops import random_ops
|
|
||||||
from tensorflow.python.ops import tensor_array_ops
|
|
||||||
from tensorflow.python.util import nest
|
|
||||||
|
|
||||||
|
DeviceWrapperBase = rnn_cell_wrapper_impl.DeviceWrapperBase
|
||||||
class DropoutWrapperBase(object):
|
DropoutWrapperBase = rnn_cell_wrapper_impl.DropoutWrapperBase
|
||||||
"""Operator adding dropout to inputs and outputs of the given cell."""
|
ResidualWrapperBase = rnn_cell_wrapper_impl.ResidualWrapperBase
|
||||||
|
|
||||||
def __init__(self,
|
|
||||||
cell,
|
|
||||||
input_keep_prob=1.0,
|
|
||||||
output_keep_prob=1.0,
|
|
||||||
state_keep_prob=1.0,
|
|
||||||
variational_recurrent=False,
|
|
||||||
input_size=None,
|
|
||||||
dtype=None,
|
|
||||||
seed=None,
|
|
||||||
dropout_state_filter_visitor=None,
|
|
||||||
**kwargs):
|
|
||||||
"""Create a cell with added input, state, and/or output dropout.
|
|
||||||
|
|
||||||
If `variational_recurrent` is set to `True` (**NOT** the default behavior),
|
|
||||||
then the same dropout mask is applied at every step, as described in:
|
|
||||||
[A Theoretically Grounded Application of Dropout in Recurrent
|
|
||||||
Neural Networks. Y. Gal, Z. Ghahramani](https://arxiv.org/abs/1512.05287).
|
|
||||||
|
|
||||||
Otherwise a different dropout mask is applied at every time step.
|
|
||||||
|
|
||||||
Note, by default (unless a custom `dropout_state_filter` is provided),
|
|
||||||
the memory state (`c` component of any `LSTMStateTuple`) passing through
|
|
||||||
a `DropoutWrapper` is never modified. This behavior is described in the
|
|
||||||
above article.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
cell: an RNNCell, a projection to output_size is added to it.
|
|
||||||
input_keep_prob: unit Tensor or float between 0 and 1, input keep
|
|
||||||
probability; if it is constant and 1, no input dropout will be added.
|
|
||||||
output_keep_prob: unit Tensor or float between 0 and 1, output keep
|
|
||||||
probability; if it is constant and 1, no output dropout will be added.
|
|
||||||
state_keep_prob: unit Tensor or float between 0 and 1, output keep
|
|
||||||
probability; if it is constant and 1, no output dropout will be added.
|
|
||||||
State dropout is performed on the outgoing states of the cell. **Note**
|
|
||||||
the state components to which dropout is applied when `state_keep_prob`
|
|
||||||
is in `(0, 1)` are also determined by the argument
|
|
||||||
`dropout_state_filter_visitor` (e.g. by default dropout is never applied
|
|
||||||
to the `c` component of an `LSTMStateTuple`).
|
|
||||||
variational_recurrent: Python bool. If `True`, then the same dropout
|
|
||||||
pattern is applied across all time steps per run call. If this parameter
|
|
||||||
is set, `input_size` **must** be provided.
|
|
||||||
input_size: (optional) (possibly nested tuple of) `TensorShape` objects
|
|
||||||
containing the depth(s) of the input tensors expected to be passed in to
|
|
||||||
the `DropoutWrapper`. Required and used **iff** `variational_recurrent
|
|
||||||
= True` and `input_keep_prob < 1`.
|
|
||||||
dtype: (optional) The `dtype` of the input, state, and output tensors.
|
|
||||||
Required and used **iff** `variational_recurrent = True`.
|
|
||||||
seed: (optional) integer, the randomness seed.
|
|
||||||
dropout_state_filter_visitor: (optional), default: (see below). Function
|
|
||||||
that takes any hierarchical level of the state and returns a scalar or
|
|
||||||
depth=1 structure of Python booleans describing which terms in the state
|
|
||||||
should be dropped out. In addition, if the function returns `True`,
|
|
||||||
dropout is applied across this sublevel. If the function returns
|
|
||||||
`False`, dropout is not applied across this entire sublevel.
|
|
||||||
Default behavior: perform dropout on all terms except the memory (`c`)
|
|
||||||
state of `LSTMCellState` objects, and don't try to apply dropout to
|
|
||||||
`TensorArray` objects: ```
|
|
||||||
def dropout_state_filter_visitor(s):
|
|
||||||
if isinstance(s, LSTMCellState): # Never perform dropout on the c
|
|
||||||
state. return LSTMCellState(c=False, h=True)
|
|
||||||
elif isinstance(s, TensorArray): return False return True ```
|
|
||||||
**kwargs: dict of keyword arguments for base layer.
|
|
||||||
|
|
||||||
Raises:
|
|
||||||
TypeError: if `cell` is not an `RNNCell`, or `keep_state_fn` is provided
|
|
||||||
but not `callable`.
|
|
||||||
ValueError: if any of the keep_probs are not between 0 and 1.
|
|
||||||
"""
|
|
||||||
super(DropoutWrapperBase, self).__init__(cell, dtype=dtype, **kwargs)
|
|
||||||
|
|
||||||
if (dropout_state_filter_visitor is not None and
|
|
||||||
not callable(dropout_state_filter_visitor)):
|
|
||||||
raise TypeError("dropout_state_filter_visitor must be callable")
|
|
||||||
self._dropout_state_filter = (
|
|
||||||
dropout_state_filter_visitor or _default_dropout_state_filter_visitor)
|
|
||||||
with ops.name_scope("DropoutWrapperInit"):
|
|
||||||
|
|
||||||
def tensor_and_const_value(v):
|
|
||||||
tensor_value = ops.convert_to_tensor(v)
|
|
||||||
const_value = tensor_util.constant_value(tensor_value)
|
|
||||||
return (tensor_value, const_value)
|
|
||||||
|
|
||||||
for prob, attr in [(input_keep_prob, "input_keep_prob"),
|
|
||||||
(state_keep_prob, "state_keep_prob"),
|
|
||||||
(output_keep_prob, "output_keep_prob")]:
|
|
||||||
tensor_prob, const_prob = tensor_and_const_value(prob)
|
|
||||||
if const_prob is not None:
|
|
||||||
if const_prob < 0 or const_prob > 1:
|
|
||||||
raise ValueError("Parameter %s must be between 0 and 1: %d" %
|
|
||||||
(attr, const_prob))
|
|
||||||
setattr(self, "_%s" % attr, float(const_prob))
|
|
||||||
else:
|
|
||||||
setattr(self, "_%s" % attr, tensor_prob)
|
|
||||||
|
|
||||||
# Set variational_recurrent, seed before running the code below
|
|
||||||
self._variational_recurrent = variational_recurrent
|
|
||||||
self._input_size = input_size
|
|
||||||
self._seed = seed
|
|
||||||
|
|
||||||
self._recurrent_input_noise = None
|
|
||||||
self._recurrent_state_noise = None
|
|
||||||
self._recurrent_output_noise = None
|
|
||||||
|
|
||||||
if variational_recurrent:
|
|
||||||
if dtype is None:
|
|
||||||
raise ValueError(
|
|
||||||
"When variational_recurrent=True, dtype must be provided")
|
|
||||||
|
|
||||||
def convert_to_batch_shape(s):
|
|
||||||
# Prepend a 1 for the batch dimension; for recurrent
|
|
||||||
# variational dropout we use the same dropout mask for all
|
|
||||||
# batch elements.
|
|
||||||
return array_ops.concat(([1], tensor_shape.TensorShape(s).as_list()), 0)
|
|
||||||
|
|
||||||
def batch_noise(s, inner_seed):
|
|
||||||
shape = convert_to_batch_shape(s)
|
|
||||||
return random_ops.random_uniform(shape, seed=inner_seed, dtype=dtype)
|
|
||||||
|
|
||||||
if (not isinstance(self._input_keep_prob, numbers.Real) or
|
|
||||||
self._input_keep_prob < 1.0):
|
|
||||||
if input_size is None:
|
|
||||||
raise ValueError(
|
|
||||||
"When variational_recurrent=True and input_keep_prob < 1.0 or "
|
|
||||||
"is unknown, input_size must be provided")
|
|
||||||
self._recurrent_input_noise = _enumerated_map_structure_up_to(
|
|
||||||
input_size,
|
|
||||||
lambda i, s: batch_noise(s, inner_seed=self._gen_seed("input", i)),
|
|
||||||
input_size)
|
|
||||||
self._recurrent_state_noise = _enumerated_map_structure_up_to(
|
|
||||||
cell.state_size,
|
|
||||||
lambda i, s: batch_noise(s, inner_seed=self._gen_seed("state", i)),
|
|
||||||
cell.state_size)
|
|
||||||
self._recurrent_output_noise = _enumerated_map_structure_up_to(
|
|
||||||
cell.output_size,
|
|
||||||
lambda i, s: batch_noise(s, inner_seed=self._gen_seed("output", i)),
|
|
||||||
cell.output_size)
|
|
||||||
|
|
||||||
def _gen_seed(self, salt_prefix, index):
|
|
||||||
if self._seed is None:
|
|
||||||
return None
|
|
||||||
salt = "%s_%d" % (salt_prefix, index)
|
|
||||||
string = (str(self._seed) + salt).encode("utf-8")
|
|
||||||
return int(hashlib.md5(string).hexdigest()[:8], 16) & 0x7FFFFFFF
|
|
||||||
|
|
||||||
@property
|
|
||||||
def wrapped_cell(self):
|
|
||||||
return self.cell
|
|
||||||
|
|
||||||
@property
|
|
||||||
def state_size(self):
|
|
||||||
return self.cell.state_size
|
|
||||||
|
|
||||||
@property
|
|
||||||
def output_size(self):
|
|
||||||
return self.cell.output_size
|
|
||||||
|
|
||||||
def build(self, inputs_shape):
|
|
||||||
self.cell.build(inputs_shape)
|
|
||||||
self.built = True
|
|
||||||
|
|
||||||
def zero_state(self, batch_size, dtype):
|
|
||||||
with ops.name_scope(type(self).__name__ + "ZeroState", values=[batch_size]):
|
|
||||||
return self.cell.zero_state(batch_size, dtype)
|
|
||||||
|
|
||||||
def _variational_recurrent_dropout_value(
|
|
||||||
self, unused_index, value, noise, keep_prob):
|
|
||||||
"""Performs dropout given the pre-calculated noise tensor."""
|
|
||||||
# uniform [keep_prob, 1.0 + keep_prob)
|
|
||||||
random_tensor = keep_prob + noise
|
|
||||||
|
|
||||||
# 0. if [keep_prob, 1.0) and 1. if [1.0, 1.0 + keep_prob)
|
|
||||||
binary_tensor = math_ops.floor(random_tensor)
|
|
||||||
ret = math_ops.divide(value, keep_prob) * binary_tensor
|
|
||||||
ret.set_shape(value.get_shape())
|
|
||||||
return ret
|
|
||||||
|
|
||||||
def _dropout(self,
|
|
||||||
values,
|
|
||||||
salt_prefix,
|
|
||||||
recurrent_noise,
|
|
||||||
keep_prob,
|
|
||||||
shallow_filtered_substructure=None):
|
|
||||||
"""Decides whether to perform standard dropout or recurrent dropout."""
|
|
||||||
|
|
||||||
if shallow_filtered_substructure is None:
|
|
||||||
# Put something so we traverse the entire structure; inside the
|
|
||||||
# dropout function we check to see if leafs of this are bool or not.
|
|
||||||
shallow_filtered_substructure = values
|
|
||||||
|
|
||||||
if not self._variational_recurrent:
|
|
||||||
|
|
||||||
def dropout(i, do_dropout, v):
|
|
||||||
if not isinstance(do_dropout, bool) or do_dropout:
|
|
||||||
return nn_ops.dropout_v2(
|
|
||||||
v, rate=1. - keep_prob, seed=self._gen_seed(salt_prefix, i))
|
|
||||||
else:
|
|
||||||
return v
|
|
||||||
|
|
||||||
return _enumerated_map_structure_up_to(
|
|
||||||
shallow_filtered_substructure, dropout,
|
|
||||||
*[shallow_filtered_substructure, values])
|
|
||||||
else:
|
|
||||||
|
|
||||||
def dropout(i, do_dropout, v, n):
|
|
||||||
if not isinstance(do_dropout, bool) or do_dropout:
|
|
||||||
return self._variational_recurrent_dropout_value(i, v, n, keep_prob)
|
|
||||||
else:
|
|
||||||
return v
|
|
||||||
|
|
||||||
return _enumerated_map_structure_up_to(
|
|
||||||
shallow_filtered_substructure, dropout,
|
|
||||||
*[shallow_filtered_substructure, values, recurrent_noise])
|
|
||||||
|
|
||||||
def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs):
|
|
||||||
"""Runs the wrapped cell and applies dropout.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
inputs: A tensor with wrapped cell's input.
|
|
||||||
state: A tensor or tuple of tensors with wrapped cell's state.
|
|
||||||
cell_call_fn: Wrapped cell's method to use for step computation (cell's
|
|
||||||
`__call__` or 'call' method).
|
|
||||||
**kwargs: Additional arguments.
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
A pair containing:
|
|
||||||
|
|
||||||
- Output: A tensor with cell's output.
|
|
||||||
- New state: A tensor or tuple of tensors with new wrapped cell's state.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def _should_dropout(p):
|
|
||||||
return (not isinstance(p, float)) or p < 1
|
|
||||||
|
|
||||||
if _should_dropout(self._input_keep_prob):
|
|
||||||
inputs = self._dropout(inputs, "input", self._recurrent_input_noise,
|
|
||||||
self._input_keep_prob)
|
|
||||||
output, new_state = cell_call_fn(inputs, state, **kwargs)
|
|
||||||
if _should_dropout(self._state_keep_prob):
|
|
||||||
# Identify which subsets of the state to perform dropout on and
|
|
||||||
# which ones to keep.
|
|
||||||
shallow_filtered_substructure = nest.get_traverse_shallow_structure(
|
|
||||||
self._dropout_state_filter, new_state)
|
|
||||||
new_state = self._dropout(new_state, "state", self._recurrent_state_noise,
|
|
||||||
self._state_keep_prob,
|
|
||||||
shallow_filtered_substructure)
|
|
||||||
if _should_dropout(self._output_keep_prob):
|
|
||||||
output = self._dropout(output, "output", self._recurrent_output_noise,
|
|
||||||
self._output_keep_prob)
|
|
||||||
return output, new_state
|
|
||||||
|
|
||||||
def get_config(self):
|
|
||||||
"""Returns the config of the dropout wrapper."""
|
|
||||||
config = {
|
|
||||||
"input_keep_prob": self._input_keep_prob,
|
|
||||||
"output_keep_prob": self._output_keep_prob,
|
|
||||||
"state_keep_prob": self._state_keep_prob,
|
|
||||||
"variational_recurrent": self._variational_recurrent,
|
|
||||||
"input_size": self._input_size,
|
|
||||||
"seed": self._seed,
|
|
||||||
}
|
|
||||||
if self._dropout_state_filter != _default_dropout_state_filter_visitor:
|
|
||||||
function, function_type, function_module = _serialize_function_to_config(
|
|
||||||
self._dropout_state_filter)
|
|
||||||
config.update({"dropout_fn": function,
|
|
||||||
"dropout_fn_type": function_type,
|
|
||||||
"dropout_fn_module": function_module})
|
|
||||||
base_config = super(DropoutWrapperBase, self).get_config()
|
|
||||||
return dict(list(base_config.items()) + list(config.items()))
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def from_config(cls, config, custom_objects=None):
|
|
||||||
if "dropout_fn" in config:
|
|
||||||
config = config.copy()
|
|
||||||
dropout_state_filter = _parse_config_to_function(
|
|
||||||
config, custom_objects, "dropout_fn", "dropout_fn_type",
|
|
||||||
"dropout_fn_module")
|
|
||||||
config.pop("dropout_fn")
|
|
||||||
config["dropout_state_filter_visitor"] = dropout_state_filter
|
|
||||||
return super(DropoutWrapperBase, cls).from_config(
|
|
||||||
config, custom_objects=custom_objects)
|
|
||||||
|
|
||||||
|
|
||||||
class ResidualWrapperBase(object):
|
|
||||||
"""RNNCell wrapper that ensures cell inputs are added to the outputs."""
|
|
||||||
|
|
||||||
def __init__(self, cell, residual_fn=None, **kwargs):
|
|
||||||
"""Constructs a `ResidualWrapper` for `cell`.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
cell: An instance of `RNNCell`.
|
|
||||||
residual_fn: (Optional) The function to map raw cell inputs and raw cell
|
|
||||||
outputs to the actual cell outputs of the residual network.
|
|
||||||
Defaults to calling nest.map_structure on (lambda i, o: i + o), inputs
|
|
||||||
and outputs.
|
|
||||||
**kwargs: dict of keyword arguments for base layer.
|
|
||||||
"""
|
|
||||||
super(ResidualWrapperBase, self).__init__(cell, **kwargs)
|
|
||||||
self._residual_fn = residual_fn
|
|
||||||
|
|
||||||
@property
|
|
||||||
def state_size(self):
|
|
||||||
return self.cell.state_size
|
|
||||||
|
|
||||||
@property
|
|
||||||
def output_size(self):
|
|
||||||
return self.cell.output_size
|
|
||||||
|
|
||||||
def zero_state(self, batch_size, dtype):
|
|
||||||
with ops.name_scope(type(self).__name__ + "ZeroState", values=[batch_size]):
|
|
||||||
return self.cell.zero_state(batch_size, dtype)
|
|
||||||
|
|
||||||
def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs):
|
|
||||||
"""Run the cell and then apply the residual_fn on its inputs to its outputs.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
inputs: cell inputs.
|
|
||||||
state: cell state.
|
|
||||||
cell_call_fn: Wrapped cell's method to use for step computation (cell's
|
|
||||||
`__call__` or 'call' method).
|
|
||||||
**kwargs: Additional arguments passed to the wrapped cell's `call`.
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
Tuple of cell outputs and new state.
|
|
||||||
|
|
||||||
Raises:
|
|
||||||
TypeError: If cell inputs and outputs have different structure (type).
|
|
||||||
ValueError: If cell inputs and outputs have different structure (value).
|
|
||||||
"""
|
|
||||||
outputs, new_state = cell_call_fn(inputs, state, **kwargs)
|
|
||||||
|
|
||||||
# Ensure shapes match
|
|
||||||
def assert_shape_match(inp, out):
|
|
||||||
inp.get_shape().assert_is_compatible_with(out.get_shape())
|
|
||||||
|
|
||||||
def default_residual_fn(inputs, outputs):
|
|
||||||
nest.assert_same_structure(inputs, outputs)
|
|
||||||
nest.map_structure(assert_shape_match, inputs, outputs)
|
|
||||||
return nest.map_structure(lambda inp, out: inp + out, inputs, outputs)
|
|
||||||
|
|
||||||
res_outputs = (self._residual_fn or default_residual_fn)(inputs, outputs)
|
|
||||||
return (res_outputs, new_state)
|
|
||||||
|
|
||||||
def get_config(self):
|
|
||||||
"""Returns the config of the residual wrapper."""
|
|
||||||
if self._residual_fn is not None:
|
|
||||||
function, function_type, function_module = _serialize_function_to_config(
|
|
||||||
self._residual_fn)
|
|
||||||
config = {
|
|
||||||
"residual_fn": function,
|
|
||||||
"residual_fn_type": function_type,
|
|
||||||
"residual_fn_module": function_module
|
|
||||||
}
|
|
||||||
else:
|
|
||||||
config = {}
|
|
||||||
base_config = super(ResidualWrapperBase, self).get_config()
|
|
||||||
return dict(list(base_config.items()) + list(config.items()))
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def from_config(cls, config, custom_objects=None):
|
|
||||||
if "residual_fn" in config:
|
|
||||||
config = config.copy()
|
|
||||||
residual_function = _parse_config_to_function(config, custom_objects,
|
|
||||||
"residual_fn",
|
|
||||||
"residual_fn_type",
|
|
||||||
"residual_fn_module")
|
|
||||||
config["residual_fn"] = residual_function
|
|
||||||
return super(ResidualWrapperBase, cls).from_config(
|
|
||||||
config, custom_objects=custom_objects)
|
|
||||||
|
|
||||||
|
|
||||||
class DeviceWrapperBase(object):
|
|
||||||
"""Operator that ensures an RNNCell runs on a particular device."""
|
|
||||||
|
|
||||||
def __init__(self, cell, device, **kwargs):
|
|
||||||
"""Construct a `DeviceWrapper` for `cell` with device `device`.
|
|
||||||
|
|
||||||
Ensures the wrapped `cell` is called with `tf.device(device)`.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
cell: An instance of `RNNCell`.
|
|
||||||
device: A device string or function, for passing to `tf.device`.
|
|
||||||
**kwargs: dict of keyword arguments for base layer.
|
|
||||||
"""
|
|
||||||
super(DeviceWrapperBase, self).__init__(cell, **kwargs)
|
|
||||||
self._device = device
|
|
||||||
|
|
||||||
@property
|
|
||||||
def state_size(self):
|
|
||||||
return self.cell.state_size
|
|
||||||
|
|
||||||
@property
|
|
||||||
def output_size(self):
|
|
||||||
return self.cell.output_size
|
|
||||||
|
|
||||||
def zero_state(self, batch_size, dtype):
|
|
||||||
with ops.name_scope(type(self).__name__ + "ZeroState", values=[batch_size]):
|
|
||||||
with ops.device(self._device):
|
|
||||||
return self.cell.zero_state(batch_size, dtype)
|
|
||||||
|
|
||||||
def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs):
|
|
||||||
"""Run the cell on specified device."""
|
|
||||||
with ops.device(self._device):
|
|
||||||
return cell_call_fn(inputs, state, **kwargs)
|
|
||||||
|
|
||||||
def get_config(self):
|
|
||||||
config = {"device": self._device}
|
|
||||||
base_config = super(DeviceWrapperBase, self).get_config()
|
|
||||||
return dict(list(base_config.items()) + list(config.items()))
|
|
||||||
|
|
||||||
|
|
||||||
def _serialize_function_to_config(function):
|
|
||||||
"""Serialize the function for get_config()."""
|
|
||||||
if isinstance(function, python_types.LambdaType):
|
|
||||||
output = generic_utils.func_dump(function)
|
|
||||||
output_type = "lambda"
|
|
||||||
module = function.__module__
|
|
||||||
elif callable(function):
|
|
||||||
output = function.__name__
|
|
||||||
output_type = "function"
|
|
||||||
module = function.__module__
|
|
||||||
else:
|
|
||||||
raise ValueError("Unrecognized function type for input: {}".format(
|
|
||||||
type(function)))
|
|
||||||
|
|
||||||
return output, output_type, module
|
|
||||||
|
|
||||||
|
|
||||||
def _parse_config_to_function(config, custom_objects, func_attr_name,
|
|
||||||
func_type_attr_name, module_attr_name):
|
|
||||||
"""Reconstruct the function from the config."""
|
|
||||||
globs = globals()
|
|
||||||
module = config.pop(module_attr_name, None)
|
|
||||||
if module in sys.modules:
|
|
||||||
globs.update(sys.modules[module].__dict__)
|
|
||||||
elif module is not None:
|
|
||||||
# Note: we don't know the name of the function if it's a lambda.
|
|
||||||
warnings.warn("{} is not loaded, but a layer uses it. "
|
|
||||||
"It may cause errors.".format(module), UserWarning)
|
|
||||||
if custom_objects:
|
|
||||||
globs.update(custom_objects)
|
|
||||||
function_type = config.pop(func_type_attr_name)
|
|
||||||
if function_type == "function":
|
|
||||||
# Simple lookup in custom objects
|
|
||||||
function = generic_utils.deserialize_keras_object(
|
|
||||||
config[func_attr_name],
|
|
||||||
custom_objects=custom_objects,
|
|
||||||
printable_module_name="function in wrapper")
|
|
||||||
elif function_type == "lambda":
|
|
||||||
# Unsafe deserialization from bytecode
|
|
||||||
function = generic_utils.func_load(
|
|
||||||
config[func_attr_name], globs=globs)
|
|
||||||
else:
|
|
||||||
raise TypeError("Unknown function type:", function_type)
|
|
||||||
return function
|
|
||||||
|
|
||||||
|
|
||||||
def _default_dropout_state_filter_visitor(substate):
|
|
||||||
from tensorflow.python.ops.rnn_cell_impl import LSTMStateTuple # pylint: disable=g-import-not-at-top
|
|
||||||
if isinstance(substate, LSTMStateTuple):
|
|
||||||
# Do not perform dropout on the memory state.
|
|
||||||
return LSTMStateTuple(c=False, h=True)
|
|
||||||
elif isinstance(substate, tensor_array_ops.TensorArray):
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
def _enumerated_map_structure_up_to(shallow_structure, map_fn, *args, **kwargs):
|
|
||||||
ix = [0]
|
|
||||||
|
|
||||||
def enumerated_fn(*inner_args, **inner_kwargs):
|
|
||||||
r = map_fn(ix[0], *inner_args, **inner_kwargs)
|
|
||||||
ix[0] += 1
|
|
||||||
return r
|
|
||||||
|
|
||||||
return nest.map_structure_up_to(shallow_structure, enumerated_fn, *args,
|
|
||||||
**kwargs)
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
path: "tensorflow.lite.experimental.nn.TFLiteLSTMCell"
|
path: "tensorflow.lite.experimental.nn.TFLiteLSTMCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.lite.experimental.examples.lstm.rnn_cell.TFLiteLSTMCell\'>"
|
is_instance: "<class \'tensorflow.lite.experimental.examples.lstm.rnn_cell.TFLiteLSTMCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LayerRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LayerRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
path: "tensorflow.lite.experimental.nn.TfLiteRNNCell"
|
path: "tensorflow.lite.experimental.nn.TfLiteRNNCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.lite.experimental.examples.lstm.rnn_cell.TfLiteRNNCell\'>"
|
is_instance: "<class \'tensorflow.lite.experimental.examples.lstm.rnn_cell.TfLiteRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LayerRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LayerRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.BasicLSTMCell"
|
path: "tensorflow.nn.rnn_cell.BasicLSTMCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.BasicLSTMCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.BasicLSTMCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LayerRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LayerRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.BasicRNNCell"
|
path: "tensorflow.nn.rnn_cell.BasicRNNCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.BasicRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.BasicRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LayerRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LayerRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.DeviceWrapper"
|
path: "tensorflow.nn.rnn_cell.DeviceWrapper"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.DeviceWrapper\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.DeviceWrapper\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_wrapper_impl.DeviceWrapperBase\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_wrapper_impl.DeviceWrapperBase\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl._RNNCellWrapperV1\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl._RNNCellWrapperV1\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.DropoutWrapper"
|
path: "tensorflow.nn.rnn_cell.DropoutWrapper"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.DropoutWrapper\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.DropoutWrapper\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_wrapper_impl.DropoutWrapperBase\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_wrapper_impl.DropoutWrapperBase\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl._RNNCellWrapperV1\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl._RNNCellWrapperV1\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.GRUCell"
|
path: "tensorflow.nn.rnn_cell.GRUCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.GRUCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.GRUCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LayerRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LayerRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.LSTMCell"
|
path: "tensorflow.nn.rnn_cell.LSTMCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LSTMCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LSTMCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LayerRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LayerRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.LSTMStateTuple"
|
path: "tensorflow.nn.rnn_cell.LSTMStateTuple"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LSTMStateTuple\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LSTMStateTuple\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.LSTMStateTuple\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.LSTMStateTuple\'>"
|
||||||
is_instance: "<type \'tuple\'>"
|
is_instance: "<type \'tuple\'>"
|
||||||
member {
|
member {
|
||||||
name: "c"
|
name: "c"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.MultiRNNCell"
|
path: "tensorflow.nn.rnn_cell.MultiRNNCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.MultiRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.MultiRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.RNNCell"
|
path: "tensorflow.nn.rnn_cell.RNNCell"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
path: "tensorflow.nn.rnn_cell.ResidualWrapper"
|
path: "tensorflow.nn.rnn_cell.ResidualWrapper"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.ResidualWrapper\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.ResidualWrapper\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_wrapper_impl.ResidualWrapperBase\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_wrapper_impl.ResidualWrapperBase\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl._RNNCellWrapperV1\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl._RNNCellWrapperV1\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.RNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_impl.RNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.legacy_tf_layers.base.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
is_instance: "<class \'tensorflow.python.module.module.Module\'>"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
path: "tensorflow.nn.RNNCellDeviceWrapper"
|
path: "tensorflow.nn.RNNCellDeviceWrapper"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2.DeviceWrapper\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2.DeviceWrapper\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_wrapper_impl.DeviceWrapperBase\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_wrapper_impl.DeviceWrapperBase\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2._RNNCellWrapperV2\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2._RNNCellWrapperV2\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.recurrent.AbstractRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.recurrent.AbstractRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
path: "tensorflow.nn.RNNCellDropoutWrapper"
|
path: "tensorflow.nn.RNNCellDropoutWrapper"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2.DropoutWrapper\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2.DropoutWrapper\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_wrapper_impl.DropoutWrapperBase\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_wrapper_impl.DropoutWrapperBase\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2._RNNCellWrapperV2\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2._RNNCellWrapperV2\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.recurrent.AbstractRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.recurrent.AbstractRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
path: "tensorflow.nn.RNNCellResidualWrapper"
|
path: "tensorflow.nn.RNNCellResidualWrapper"
|
||||||
tf_class {
|
tf_class {
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2.ResidualWrapper\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2.ResidualWrapper\'>"
|
||||||
is_instance: "<class \'tensorflow.python.ops.rnn_cell_wrapper_impl.ResidualWrapperBase\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.legacy_rnn.rnn_cell_wrapper_impl.ResidualWrapperBase\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2._RNNCellWrapperV2\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.rnn_cell_wrapper_v2._RNNCellWrapperV2\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.layers.recurrent.AbstractRNNCell\'>"
|
is_instance: "<class \'tensorflow.python.keras.layers.recurrent.AbstractRNNCell\'>"
|
||||||
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
is_instance: "<class \'tensorflow.python.keras.engine.base_layer.Layer\'>"
|
||||||
|
Loading…
Reference in New Issue
Block a user