Saves input tensors slices to disk.
tf.raw_ops.SaveSlices( filename, tensor_names, shapes_and_slices, data, name=None )
This is like Save
except that tensors can be listed in the saved file as being a slice of a larger tensor. shapes_and_slices
specifies the shape of the larger tensor and the slice that this tensor covers. shapes_and_slices
must have as many elements as tensor_names
.
Elements of the shapes_and_slices
input must either be:
- The empty string, in which case the corresponding tensor is saved normally.
- A string of the form
dim0 dim1 ... dimN-1 slice-spec
where thedimI
are the dimensions of the larger tensor andslice-spec
specifies what part is covered by the tensor to save.
slice-spec
itself is a :
-separated list: slice0:slice1:...:sliceN-1
where each sliceI
is either:
- The string
-
meaning that the slice covers all indices of this dimension start,length
wherestart
andlength
are integers. In that case the slice coverslength
indices starting atstart
.
See also Save
.
Returns | |
---|---|
The created Operation. |