StructuredValueOrBuilder

interface pública StructuredValueOrBuilder
Subclasses indiretas conhecidas

Métodos Públicos

booleano abstrato
getBoolValue ()
 Represents a boolean value.
abstrato BoundedTensorSpecProto
getBoundedTensorSpecValue ()
 Represents a value for tf.BoundedTensorSpec.
abstrato BoundedTensorSpecProtoOrBuilder
getBoundedTensorSpecValueOrBuilder ()
 Represents a value for tf.BoundedTensorSpec.
DictValue abstrato
getDictValue ()
 Represents a dict `Value`.
DictValueOrBuilder abstrato
getDictValueOrBuilder ()
 Represents a dict `Value`.
duplo abstrato
getFloat64Value ()
 Represents a double-precision floating-point value (a Python `float`).
abstrato longo
getInt64Value ()
 Represents a signed integer value, limited to 64 bits.
abstract StructuredValue.KindCase
ListValue abstrato
getListValue ()
 Represents a list of `Value`.
ListValueOrBuilder abstrato
getListValueOrBuilder ()
 Represents a list of `Value`.
abstrato NamedTupleValue
getNamedTupleValue ()
 Represents Python's namedtuple.
abstrato NamedTupleValueOrBuilder
getNamedTupleValueOrBuilder ()
 Represents Python's namedtuple.
abstrato NoneValue
getNoneValue ()
 Represents None.
abstrato NoneValueOrBuilder
getNoneValueOrBuilder ()
 Represents None.
String abstrata
getStringValue ()
 Represents a string of Unicode characters stored in a Python `str`.
abstract com.google.protobuf.ByteString
getStringValueBytes ()
 Represents a string of Unicode characters stored in a Python `str`.
DataType abstrato
getTensorDtypeValue ()
 Represents an enum value for dtype.
abstrato int
getTensorDtypeValueValue ()
 Represents an enum value for dtype.
TensorShapeProto abstrato
getTensorShapeValue ()
 Represents a TensorShape.
TensorShapeProtoOrBuilder abstrato
getTensorShapeValueOrBuilder ()
 Represents a TensorShape.
TensorSpecProto abstrato
getTensorSpecValue ()
 Represents a value for tf.TensorSpec.
TensorSpecProtoOrBuilder abstrato
getTensorSpecValueOrBuilder ()
 Represents a value for tf.TensorSpec.
TupleValue abstrato
getTupleValue ()
 Represents a tuple of `Value`.
resumo TupleValueOrBuilder
getTupleValueOrBuilder ()
 Represents a tuple of `Value`.
abstrato TypeSpecProto
getTypeSpecValue ()
 Represents a value for tf.TypeSpec.
abstrato TypeSpecProtoOrBuilder
getTypeSpecValueOrBuilder ()
 Represents a value for tf.TypeSpec.
booleano abstrato
hasBoundedTensorSpecValue ()
 Represents a value for tf.BoundedTensorSpec.
booleano abstrato
hasDictValue ()
 Represents a dict `Value`.
booleano abstrato
hasListValue ()
 Represents a list of `Value`.
booleano abstrato
hasNamedTupleValue ()
 Represents Python's namedtuple.
booleano abstrato
hasNoneValue ()
 Represents None.
booleano abstrato
hasTensorShapeValue ()
 Represents a TensorShape.
booleano abstrato
hasTensorSpecValue ()
 Represents a value for tf.TensorSpec.
booleano abstrato
hasTupleValue ()
 Represents a tuple of `Value`.
booleano abstrato
hasTypeSpecValue ()
 Represents a value for tf.TypeSpec.

Métodos Públicos

public abstract boolean getBoolValue ()

 Represents a boolean value.
 
bool bool_value = 14;

public abstract BoundedTensorSpecProto getBoundedTensorSpecValue ()

 Represents a value for tf.BoundedTensorSpec.
 
.tensorflow.BoundedTensorSpecProto bounded_tensor_spec_value = 35;

public abstract BoundedTensorSpecProtoOrBuilder getBoundedTensorSpecValueOrBuilder ()

 Represents a value for tf.BoundedTensorSpec.
 
.tensorflow.BoundedTensorSpecProto bounded_tensor_spec_value = 35;

public abstract DictValue getDictValue ()

 Represents a dict `Value`.
 
.tensorflow.DictValue dict_value = 53;

public abstract DictValueOrBuilder getDictValueOrBuilder ()

 Represents a dict `Value`.
 
.tensorflow.DictValue dict_value = 53;

public abstract double getFloat64Value ()

 Represents a double-precision floating-point value (a Python `float`).
 
double float64_value = 11;

public abstract long getInt64Value ()

 Represents a signed integer value, limited to 64 bits.
 Larger values from Python's arbitrary-precision integers are unsupported.
 
sint64 int64_value = 12;

public abstract StructuredValue.KindCase getKindCase ()

public abstract ListValue getListValue ()

 Represents a list of `Value`.
 
.tensorflow.ListValue list_value = 51;

public abstract ListValueOrBuilder getListValueOrBuilder ()

 Represents a list of `Value`.
 
.tensorflow.ListValue list_value = 51;

public abstract NamedTupleValue getNamedTupleValue ()

 Represents Python's namedtuple.
 
.tensorflow.NamedTupleValue named_tuple_value = 54;

public abstract NamedTupleValueOrBuilder getNamedTupleValueOrBuilder ()

 Represents Python's namedtuple.
 
.tensorflow.NamedTupleValue named_tuple_value = 54;

public abstract NoneValue getNoneValue ()

 Represents None.
 
.tensorflow.NoneValue none_value = 1;

public abstract NoneValueOrBuilder getNoneValueOrBuilder ()

 Represents None.
 
.tensorflow.NoneValue none_value = 1;

public abstract String getStringValue ()

 Represents a string of Unicode characters stored in a Python `str`.
 In Python 3, this is exactly what type `str` is.
 In Python 2, this is the UTF-8 encoding of the characters.
 For strings with ASCII characters only (as often used in TensorFlow code)
 there is effectively no difference between the language versions.
 The obsolescent `unicode` type of Python 2 is not supported here.
 
string string_value = 13;

public abstract com.google.protobuf.ByteString getStringValueBytes ()

 Represents a string of Unicode characters stored in a Python `str`.
 In Python 3, this is exactly what type `str` is.
 In Python 2, this is the UTF-8 encoding of the characters.
 For strings with ASCII characters only (as often used in TensorFlow code)
 there is effectively no difference between the language versions.
 The obsolescent `unicode` type of Python 2 is not supported here.
 
string string_value = 13;

public abstract DataType getTensorDtypeValue ()

 Represents an enum value for dtype.
 
.tensorflow.DataType tensor_dtype_value = 32;

public abstract int getTensorDtypeValueValue ()

 Represents an enum value for dtype.
 
.tensorflow.DataType tensor_dtype_value = 32;

public abstract TensorShapeProto getTensorShapeValue ()

 Represents a TensorShape.
 
.tensorflow.TensorShapeProto tensor_shape_value = 31;

public abstract TensorShapeProtoOrBuilder getTensorShapeValueOrBuilder ()

 Represents a TensorShape.
 
.tensorflow.TensorShapeProto tensor_shape_value = 31;

public abstract TensorSpecProto getTensorSpecValue ()

 Represents a value for tf.TensorSpec.
 
.tensorflow.TensorSpecProto tensor_spec_value = 33;

public abstract TensorSpecProtoOrBuilder getTensorSpecValueOrBuilder ()

 Represents a value for tf.TensorSpec.
 
.tensorflow.TensorSpecProto tensor_spec_value = 33;

public abstract TupleValue getTupleValue ()

 Represents a tuple of `Value`.
 
.tensorflow.TupleValue tuple_value = 52;

public abstract TupleValueOrBuilder getTupleValueOrBuilder ()

 Represents a tuple of `Value`.
 
.tensorflow.TupleValue tuple_value = 52;

public abstract TypeSpecProto getTypeSpecValue ()

 Represents a value for tf.TypeSpec.
 
.tensorflow.TypeSpecProto type_spec_value = 34;

public abstract TypeSpecProtoOrBuilder getTypeSpecValueOrBuilder ()

 Represents a value for tf.TypeSpec.
 
.tensorflow.TypeSpecProto type_spec_value = 34;

public abstract boolean hasBoundedTensorSpecValue ()

 Represents a value for tf.BoundedTensorSpec.
 
.tensorflow.BoundedTensorSpecProto bounded_tensor_spec_value = 35;

public abstract boolean hasDictValue ()

 Represents a dict `Value`.
 
.tensorflow.DictValue dict_value = 53;

public abstract boolean hasListValue ()

 Represents a list of `Value`.
 
.tensorflow.ListValue list_value = 51;

public abstract boolean hasNamedTupleValue ()

 Represents Python's namedtuple.
 
.tensorflow.NamedTupleValue named_tuple_value = 54;

public abstract boolean hasNoneValue ()

 Represents None.
 
.tensorflow.NoneValue none_value = 1;

public abstract boolean hasTensorShapeValue ()

 Represents a TensorShape.
 
.tensorflow.TensorShapeProto tensor_shape_value = 31;

public abstract boolean hasTensorSpecValue ()

 Represents a value for tf.TensorSpec.
 
.tensorflow.TensorSpecProto tensor_spec_value = 33;

public abstract boolean hasTupleValue ()

 Represents a tuple of `Value`.
 
.tensorflow.TupleValue tuple_value = 52;

public abstract boolean hasTypeSpecValue ()

 Represents a value for tf.TypeSpec.
 
.tensorflow.TypeSpecProto type_spec_value = 34;