All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.util.BundleEntryProtoOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/tensor_bundle.proto

package org.tensorflow.util;

public interface BundleEntryProtoOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tensorflow.BundleEntryProto)
    org.nd4j.shade.protobuf.MessageOrBuilder {

  /**
   * 
   * The tensor dtype and shape.
   * 
* * .tensorflow.DataType dtype = 1; * @return The enum numeric value on the wire for dtype. */ int getDtypeValue(); /** *
   * The tensor dtype and shape.
   * 
* * .tensorflow.DataType dtype = 1; * @return The dtype. */ org.tensorflow.framework.DataType getDtype(); /** * .tensorflow.TensorShapeProto shape = 2; * @return Whether the shape field is set. */ boolean hasShape(); /** * .tensorflow.TensorShapeProto shape = 2; * @return The shape. */ org.tensorflow.framework.TensorShapeProto getShape(); /** * .tensorflow.TensorShapeProto shape = 2; */ org.tensorflow.framework.TensorShapeProtoOrBuilder getShapeOrBuilder(); /** *
   * The binary content of the tensor lies in:
   *   File "shard_id": bytes [offset, offset + size).
   * 
* * int32 shard_id = 3; * @return The shardId. */ int getShardId(); /** * int64 offset = 4; * @return The offset. */ long getOffset(); /** * int64 size = 5; * @return The size. */ long getSize(); /** *
   * The CRC32C checksum of the tensor bytes.
   * 
* * fixed32 crc32c = 6; * @return The crc32c. */ int getCrc32C(); /** *
   * Iff present, this entry represents a partitioned tensor.  The previous
   * fields are interpreted as follows:
   *   "dtype", "shape": describe the full tensor.
   *   "shard_id", "offset", "size", "crc32c": all IGNORED.
   *      These information for each slice can be looked up in their own
   *      BundleEntryProto, keyed by each "slice_name".
   * 
* * repeated .tensorflow.TensorSliceProto slices = 7; */ java.util.List getSlicesList(); /** *
   * Iff present, this entry represents a partitioned tensor.  The previous
   * fields are interpreted as follows:
   *   "dtype", "shape": describe the full tensor.
   *   "shard_id", "offset", "size", "crc32c": all IGNORED.
   *      These information for each slice can be looked up in their own
   *      BundleEntryProto, keyed by each "slice_name".
   * 
* * repeated .tensorflow.TensorSliceProto slices = 7; */ org.tensorflow.framework.TensorSliceProto getSlices(int index); /** *
   * Iff present, this entry represents a partitioned tensor.  The previous
   * fields are interpreted as follows:
   *   "dtype", "shape": describe the full tensor.
   *   "shard_id", "offset", "size", "crc32c": all IGNORED.
   *      These information for each slice can be looked up in their own
   *      BundleEntryProto, keyed by each "slice_name".
   * 
* * repeated .tensorflow.TensorSliceProto slices = 7; */ int getSlicesCount(); /** *
   * Iff present, this entry represents a partitioned tensor.  The previous
   * fields are interpreted as follows:
   *   "dtype", "shape": describe the full tensor.
   *   "shard_id", "offset", "size", "crc32c": all IGNORED.
   *      These information for each slice can be looked up in their own
   *      BundleEntryProto, keyed by each "slice_name".
   * 
* * repeated .tensorflow.TensorSliceProto slices = 7; */ java.util.List getSlicesOrBuilderList(); /** *
   * Iff present, this entry represents a partitioned tensor.  The previous
   * fields are interpreted as follows:
   *   "dtype", "shape": describe the full tensor.
   *   "shard_id", "offset", "size", "crc32c": all IGNORED.
   *      These information for each slice can be looked up in their own
   *      BundleEntryProto, keyed by each "slice_name".
   * 
* * repeated .tensorflow.TensorSliceProto slices = 7; */ org.tensorflow.framework.TensorSliceProtoOrBuilder getSlicesOrBuilder( int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy