Package org.tensorflow.framework
Interface VerifierConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VerifierConfig,VerifierConfig.Builder
public interface VerifierConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VerifierConfig.TogglegetStructureVerifier()Perform structural validation on a tensorflow graph.intgetStructureVerifierValue()Perform structural validation on a tensorflow graph.longgetVerificationTimeoutInMs()Deadline for completion of all verification i.e.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVerificationTimeoutInMs
long getVerificationTimeoutInMs()
Deadline for completion of all verification i.e. all the Toggle ON verifiers must complete execution within this time.
int64 verification_timeout_in_ms = 1;- Returns:
- The verificationTimeoutInMs.
-
getStructureVerifierValue
int getStructureVerifierValue()
Perform structural validation on a tensorflow graph. Default is OFF.
.tensorflow.VerifierConfig.Toggle structure_verifier = 2;- Returns:
- The enum numeric value on the wire for structureVerifier.
-
getStructureVerifier
VerifierConfig.Toggle getStructureVerifier()
Perform structural validation on a tensorflow graph. Default is OFF.
.tensorflow.VerifierConfig.Toggle structure_verifier = 2;- Returns:
- The structureVerifier.
-
-