org.tensorflow.metadata.v0.SequenceLengthConstraintsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/schema.proto
// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;
public interface SequenceLengthConstraintsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.SequenceLengthConstraints)
com.google.protobuf.MessageOrBuilder {
/**
*
* Token values (int and string) that are excluded when calculating sequence
* length.
*
*
* repeated int64 excluded_int_value = 1;
* @return A list containing the excludedIntValue.
*/
java.util.List getExcludedIntValueList();
/**
*
* Token values (int and string) that are excluded when calculating sequence
* length.
*
*
* repeated int64 excluded_int_value = 1;
* @return The count of excludedIntValue.
*/
int getExcludedIntValueCount();
/**
*
* Token values (int and string) that are excluded when calculating sequence
* length.
*
*
* repeated int64 excluded_int_value = 1;
* @param index The index of the element to return.
* @return The excludedIntValue at the given index.
*/
long getExcludedIntValue(int index);
/**
* repeated string excluded_string_value = 2;
* @return A list containing the excludedStringValue.
*/
java.util.List
getExcludedStringValueList();
/**
* repeated string excluded_string_value = 2;
* @return The count of excludedStringValue.
*/
int getExcludedStringValueCount();
/**
* repeated string excluded_string_value = 2;
* @param index The index of the element to return.
* @return The excludedStringValue at the given index.
*/
java.lang.String getExcludedStringValue(int index);
/**
* repeated string excluded_string_value = 2;
* @param index The index of the value to return.
* @return The bytes of the excludedStringValue at the given index.
*/
com.google.protobuf.ByteString
getExcludedStringValueBytes(int index);
/**
*
* Min / max sequence length.
*
*
* optional int64 min_sequence_length = 3;
* @return Whether the minSequenceLength field is set.
*/
boolean hasMinSequenceLength();
/**
*
* Min / max sequence length.
*
*
* optional int64 min_sequence_length = 3;
* @return The minSequenceLength.
*/
long getMinSequenceLength();
/**
* optional int64 max_sequence_length = 4;
* @return Whether the maxSequenceLength field is set.
*/
boolean hasMaxSequenceLength();
/**
* optional int64 max_sequence_length = 4;
* @return The maxSequenceLength.
*/
long getMaxSequenceLength();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy