org.tensorflow.util.SaverDefOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/saver.proto
package org.tensorflow.util;
public interface SaverDefOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.SaverDef)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* The name of the tensor in which to specify the filename when saving or
* restoring a model checkpoint.
*
*
* string filename_tensor_name = 1;
*/
java.lang.String getFilenameTensorName();
/**
*
* The name of the tensor in which to specify the filename when saving or
* restoring a model checkpoint.
*
*
* string filename_tensor_name = 1;
*/
org.nd4j.shade.protobuf.ByteString
getFilenameTensorNameBytes();
/**
*
* The operation to run when saving a model checkpoint.
*
*
* string save_tensor_name = 2;
*/
java.lang.String getSaveTensorName();
/**
*
* The operation to run when saving a model checkpoint.
*
*
* string save_tensor_name = 2;
*/
org.nd4j.shade.protobuf.ByteString
getSaveTensorNameBytes();
/**
*
* The operation to run when restoring a model checkpoint.
*
*
* string restore_op_name = 3;
*/
java.lang.String getRestoreOpName();
/**
*
* The operation to run when restoring a model checkpoint.
*
*
* string restore_op_name = 3;
*/
org.nd4j.shade.protobuf.ByteString
getRestoreOpNameBytes();
/**
*
* Maximum number of checkpoints to keep. If 0, no checkpoints are deleted.
*
*
* int32 max_to_keep = 4;
*/
int getMaxToKeep();
/**
*
* Shard the save files, one per device that has Variable nodes.
*
*
* bool sharded = 5;
*/
boolean getSharded();
/**
*
* How often to keep an additional checkpoint. If not specified, only the last
* "max_to_keep" checkpoints are kept; if specified, in addition to keeping
* the last "max_to_keep" checkpoints, an additional checkpoint will be kept
* for every n hours of training.
*
*
* float keep_checkpoint_every_n_hours = 6;
*/
float getKeepCheckpointEveryNHours();
/**
* .tensorflow.SaverDef.CheckpointFormatVersion version = 7;
*/
int getVersionValue();
/**
* .tensorflow.SaverDef.CheckpointFormatVersion version = 7;
*/
org.tensorflow.util.SaverDef.CheckpointFormatVersion getVersion();
}