Home
last modified time | relevance | path

Searched refs:shape_key (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/contrib/slim/python/slim/data/
Dtfexample_decoder.py287 shape_key=None, argument
310 self._shape_key = shape_key
315 if shape_key:
316 keys.append(shape_key)
Dtfexample_decoder_test.py547 'labels': tfexample_decoder.SparseTensor(shape_key='shape'),
/external/tensorflow/tensorflow/python/keras/engine/
Dnetwork.py892 shape_key = layer.name + '_0_0'
893 layers_to_output_shapes[shape_key] = shape
927 shape_key = layer.name + '_%s_%s' % (node_index, j)
928 layers_to_output_shapes[shape_key] = shape
934 shape_key = layer.name + '_%s_%s' % (node_index, tensor_index)
935 output_shapes.append(layers_to_output_shapes[shape_key])
/external/tensorflow/tensorflow/contrib/tpu/python/tpu/
Dkeras_support.py1179 shape_key = tuple([tuple(spec.shape.as_list()) for spec in input_specs])
1180 if shape_key not in self._compilation_cache:
1187 self._compilation_cache[shape_key] = new_tpu_model_ops
1190 return self._compilation_cache[shape_key]