Home
last modified time | relevance | path

Searched refs:InputSpec (Results 1 – 25 of 34) sorted by relevance

12

/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.layers.-input-spec.pbtxt1 path: "tensorflow.layers.InputSpec"
3 is_instance: "<class \'tensorflow.python.keras.engine.input_spec.InputSpec\'>"
Dtensorflow.keras.layers.-input-spec.pbtxt1 path: "tensorflow.keras.layers.InputSpec"
3 is_instance: "<class \'tensorflow.python.keras.engine.input_spec.InputSpec\'>"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.keras.layers.-input-spec.pbtxt1 path: "tensorflow.keras.layers.InputSpec"
3 is_instance: "<class \'tensorflow.python.keras.engine.input_spec.InputSpec\'>"
/external/tensorflow/tensorflow/python/keras/layers/
Dpooling.py26 from tensorflow.python.keras.engine.input_spec import InputSpec
70 self.input_spec = InputSpec(ndim=3)
234 self.input_spec = InputSpec(ndim=4)
421 self.input_spec = InputSpec(ndim=5)
582 self.input_spec = InputSpec(ndim=3)
691 self.input_spec = InputSpec(ndim=4)
782 self.input_spec = InputSpec(ndim=5)
Dlocal.py27 from tensorflow.python.keras.engine.input_spec import InputSpec
156 self.input_spec = InputSpec(ndim=3)
220 self.input_spec = InputSpec(ndim=3, axes={1: input_dim})
222 self.input_spec = InputSpec(ndim=3, axes={-1: input_dim})
431 self.input_spec = InputSpec(ndim=4)
503 self.input_spec = InputSpec(ndim=4, axes={1: input_filter})
505 self.input_spec = InputSpec(ndim=4, axes={-1: input_filter})
Dcore.py39 from tensorflow.python.keras.engine.input_spec import InputSpec
211 self.input_spec = InputSpec(ndim=3)
268 self.input_spec = InputSpec(ndim=4)
326 self.input_spec = InputSpec(ndim=5)
513 self.input_spec = InputSpec(ndim=len(self.dims) + 1)
567 self.input_spec = InputSpec(min_ndim=1)
631 self.input_spec = InputSpec(ndim=2)
977 self.input_spec = InputSpec(min_ndim=2)
989 self.input_spec = InputSpec(min_ndim=2,
Dconvolutional.py30 from tensorflow.python.keras.engine.input_spec import InputSpec
144 self.input_spec = InputSpec(ndim=self.rank + 2)
177 self.input_spec = InputSpec(ndim=self.rank + 2,
754 self.input_spec = InputSpec(ndim=4, axes={channel_axis: input_dim})
1028 self.input_spec = InputSpec(ndim=5, axes={channel_axis: input_dim})
1287 self.input_spec = InputSpec(ndim=self.rank + 2,
1804 self.input_spec = InputSpec(ndim=4, axes={channel_axis: input_dim})
1884 self.input_spec = InputSpec(ndim=3)
1950 self.input_spec = InputSpec(ndim=4)
2019 self.input_spec = InputSpec(ndim=5)
[all …]
Dconvolutional_recurrent.py30 from tensorflow.python.keras.engine.input_spec import InputSpec
180 self.input_spec = [InputSpec(ndim=5)]
238 self.input_spec[0] = InputSpec(shape=(batch_size, None) + input_shape[2:5])
269 self.state_spec = [InputSpec(shape=(None, dim, None, None))
272 self.state_spec = [InputSpec(shape=(None, None, None, dim))
313 self.state_spec.append(InputSpec(shape=shape))
319 self.constants_spec = [InputSpec(shape=K.int_shape(constant))
Dwrappers.py27 from tensorflow.python.keras.engine.input_spec import InputSpec
198 self.input_spec = InputSpec(shape=[None, None] + input_shape[2:])
463 state_specs = [InputSpec(shape=K.int_shape(state))
471 constants_spec = [InputSpec(shape=K.int_shape(constant))
Dadvanced_activations.py26 from tensorflow.python.keras.engine.input_spec import InputSpec
138 self.input_spec = InputSpec(ndim=len(input_shape), axes=axes)
Dcudnn_recurrent.py28 from tensorflow.python.keras.engine.input_spec import InputSpec
72 self.input_spec = [InputSpec(ndim=3)]
77 self.state_spec = [InputSpec(shape=(None, dim)) for dim in state_size]
Drecurrent.py34 from tensorflow.python.keras.engine.input_spec import InputSpec
518 return InputSpec(shape=tuple(input_spec_shape))
570 InputSpec(shape=[None] + tensor_shape.as_shape(dim).as_list())
650 InputSpec(shape=K.int_shape(state)) for state in initial_state
656 InputSpec(shape=K.int_shape(constant)) for constant in constants
1406 self.input_spec = [InputSpec(ndim=3)]
1926 self.input_spec = [InputSpec(ndim=3)]
2538 self.input_spec = [InputSpec(ndim=3)]
Dkernelized.py168 self.input_spec = input_spec.InputSpec(
Drecurrent_v2.py30 from tensorflow.python.keras.engine.input_spec import InputSpec
576 InputSpec(shape=(None, dim)) for dim in (self.units, self.units)
/external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
Dcore_layers.py123 self.input_spec = input_spec.InputSpec(ndim=self.rank + 2)
175 self.input_spec = input_spec.InputSpec(
397 self.input_spec = input_spec.InputSpec(min_ndim=2)
404 self.input_spec = input_spec.InputSpec(
/external/tensorflow/tensorflow/python/layers/
Dbase_test.py271 self.input_spec = input_spec.InputSpec(ndim=2)
298 self.input_spec = input_spec.InputSpec(min_ndim=2)
326 self.input_spec = input_spec.InputSpec(max_ndim=2)
354 self.input_spec = input_spec.InputSpec(dtype='float32')
374 self.input_spec = input_spec.InputSpec(axes={-1: 2})
396 self.input_spec = input_spec.InputSpec(shape=(None, 3))
Dlayers.py27 from tensorflow.python.keras.engine.input_spec import InputSpec
Dbase.py37 InputSpec = base_layer.InputSpec # pylint: disable=invalid-name variable
/external/tensorflow/tensorflow/python/keras/engine/
D__init__.py26 from tensorflow.python.keras.engine.input_spec import InputSpec
Dinput_spec.py30 class InputSpec(object): class
/external/tensorflow/tensorflow/lite/experimental/examples/lstm/
Drnn_cell.py77 self.input_spec = base_layer.InputSpec(ndim=2)
255 self.input_spec = base_layer.InputSpec(ndim=2)
/external/tensorflow/tensorflow/contrib/rnn/python/ops/
Dgru_ops.py168 self.input_spec = input_spec.InputSpec(ndim=2)
Dlstm_ops.py389 self.input_spec = input_spec.InputSpec(ndim=2)
632 self.input_spec = input_spec.InputSpec(ndim=3)
/external/tensorflow/tensorflow/python/ops/
Drnn_cell_impl.py427 self.input_spec = input_spec.InputSpec(ndim=2)
526 self.input_spec = input_spec.InputSpec(ndim=2)
704 self.input_spec = input_spec.InputSpec(ndim=2)
895 self.input_spec = input_spec.InputSpec(ndim=2)
/external/tensorflow/tensorflow/contrib/keras/api/keras/layers/
D__init__.py23 from tensorflow.python.keras.engine.input_spec import InputSpec

12