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

org.tensorflow.framework.VariableDefOrBuilder Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/framework/variable.proto

package org.tensorflow.framework;

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

  /**
   * 
   * Name of the variable tensor.
   * 
* * string variable_name = 1; * @return The variableName. */ java.lang.String getVariableName(); /** *
   * Name of the variable tensor.
   * 
* * string variable_name = 1; * @return The bytes for variableName. */ org.nd4j.shade.protobuf.ByteString getVariableNameBytes(); /** *
   * Name of the tensor holding the variable's initial value.
   * 
* * string initial_value_name = 6; * @return The initialValueName. */ java.lang.String getInitialValueName(); /** *
   * Name of the tensor holding the variable's initial value.
   * 
* * string initial_value_name = 6; * @return The bytes for initialValueName. */ org.nd4j.shade.protobuf.ByteString getInitialValueNameBytes(); /** *
   * Name of the initializer op.
   * 
* * string initializer_name = 2; * @return The initializerName. */ java.lang.String getInitializerName(); /** *
   * Name of the initializer op.
   * 
* * string initializer_name = 2; * @return The bytes for initializerName. */ org.nd4j.shade.protobuf.ByteString getInitializerNameBytes(); /** *
   * Name of the snapshot tensor.
   * 
* * string snapshot_name = 3; * @return The snapshotName. */ java.lang.String getSnapshotName(); /** *
   * Name of the snapshot tensor.
   * 
* * string snapshot_name = 3; * @return The bytes for snapshotName. */ org.nd4j.shade.protobuf.ByteString getSnapshotNameBytes(); /** *
   * Support for saving variables as slices of a larger variable.
   * 
* * .tensorflow.SaveSliceInfoDef save_slice_info_def = 4; * @return Whether the saveSliceInfoDef field is set. */ boolean hasSaveSliceInfoDef(); /** *
   * Support for saving variables as slices of a larger variable.
   * 
* * .tensorflow.SaveSliceInfoDef save_slice_info_def = 4; * @return The saveSliceInfoDef. */ org.tensorflow.framework.SaveSliceInfoDef getSaveSliceInfoDef(); /** *
   * Support for saving variables as slices of a larger variable.
   * 
* * .tensorflow.SaveSliceInfoDef save_slice_info_def = 4; */ org.tensorflow.framework.SaveSliceInfoDefOrBuilder getSaveSliceInfoDefOrBuilder(); /** *
   * Whether to represent this as a ResourceVariable.
   * 
* * bool is_resource = 5; * @return The isResource. */ boolean getIsResource(); /** *
   * Whether this variable should be trained.
   * 
* * bool trainable = 7; * @return The trainable. */ boolean getTrainable(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy