Home | History | Annotate | Download | only in training

Lines Matching refs:shapes

70            shapes=None,
98 (i) the `shapes` argument is passed, or (ii) all of the tensors in
99 `tensors` must have fully-defined shapes. `ValueError` will be
113 In addition, all output tensors' static shapes, as accessed via the
133 shapes: (Optional) The shapes for each example. Defaults to the
134 inferred shapes for `tensors`.
135 dynamic_pad: Boolean. Allow variable dimensions in input shapes.
137 batch have the same shapes.
155 ValueError: If the `shapes` are not specified, and cannot be
192 shapes = _shapes([tensor_list], shapes, enqueue_many=False)
206 shapes=shapes,
216 for s in bucket_queues[0].shapes
219 # queues because if we use allow_smaller_final_batch, shapes will
221 # FIFOQueue would die when being passed shapes that are not fully defined.
225 shapes=[tensor_shape.scalar()] + bucket_shapes,
310 shapes=None,
342 shapes: (Optional) The shapes for each example. Defaults to the
343 inferred shapes for `tensors`.
344 dynamic_pad: Boolean. Allow variable dimensions in input shapes.
346 batch have the same shapes.
405 if shapes is not None:
406 shapes = [tensor_shape.scalar()] + shapes
416 shapes=shapes,