Searched refs:build_input_shape (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/keras/saving/saved_model/ |
D | load.py | 541 build_input_shape = metadata.get('build_input_shape') 542 built = self._try_build_layer(obj, node_id, build_input_shape) 563 build_input_shape = metadata.get('build_input_shape') 564 if build_input_shape is not None and hasattr(obj, '_build'): 565 obj._build(build_input_shape) # pylint: disable=protected-access 569 def _try_build_layer(self, obj, node_id, build_input_shape): argument 575 if build_input_shape is None: 576 build_input_shape = self._infer_inputs(node_id, convert_to_shapes=True) 578 if build_input_shape is not None: 579 obj.build(build_input_shape) [all …]
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | sequential.py | 493 build_input_shape = config.get('build_input_shape') 497 build_input_shape = None 504 if (not model.inputs and build_input_shape and 505 isinstance(build_input_shape, (tuple, list))): 506 model.build(build_input_shape)
|
/external/llvm-project/llvm/unittests/Analysis/Inputs/ir2native_x86_64_model/ |
D | saved_model.pbtxt | 8465 …build_input_shape\": {\"class_name\": \"__tuple__\", \"items\": [null, 214]}}, \"input_spec\": {\"… 8507 …, \"max_ndim\": null, \"min_ndim\": 2, \"axes\": {\"-1\": 214}}}, \"build_input_shape\": {\"class_… 8549 …, \"max_ndim\": null, \"min_ndim\": 2, \"axes\": {\"-1\": 100}}}, \"build_input_shape\": {\"class_…
|
/external/llvm-project/llvm/lib/Analysis/models/inliner/ |
D | saved_model.pbtxt | 25214 …l, \"max_ndim\": null, \"min_ndim\": 2, \"axes\": {\"-1\": 40}}}, \"build_input_shape\": {\"class_… 25451 …te\", \"trainable\": true, \"dtype\": \"float32\", \"axis\": -1}, \"build_input_shape\": [{\"class… 26297 …l, \"max_ndim\": null, \"min_ndim\": 2, \"axes\": {\"-1\": 34}}}, \"build_input_shape\": {\"class_… 26339 …, \"max_ndim\": null, \"min_ndim\": 2, \"axes\": {\"-1\": 100}}}, \"build_input_shape\": {\"class_…
|