StructuredValueOrBuilder

giao diện công cộng StructuredValueOrBuilder
Các lớp con gián tiếp đã biết

Phương pháp công khai

trừu tượng boolean
getBoolValue ()
 Represents a boolean value.
trừu tượng BoundedTensorSpecProto
getBoundedTensorSpecValue ()
 Represents a value for tf.BoundedTensorSpec.
trừu tượng BoundedTensorSpecProtoOrBuilder
getBoundedTensorSpecValueOrBuilder ()
 Represents a value for tf.BoundedTensorSpec.
trừu tượng DictValue
getDictValue ()
 Represents a dict `Value`.
trừu tượng DictValueOrBuilder
getDictValueOrBuilder ()
 Represents a dict `Value`.
trừu tượng đôi
getFloat64Value ()
 Represents a double-precision floating-point value (a Python `float`).
trừu tượng dài
getInt64Value ()
 Represents a signed integer value, limited to 64 bits.
trừu tượng StructuredValue.KindCase
Danh sách trừu tượngValue
getListValue ()
 Represents a list of `Value`.
trừu tượng ListValueOrBuilder
getListValueOrBuilder ()
 Represents a list of `Value`.
tóm tắt NamedTupleValue
getNamedTupleValue ()
 Represents Python's namedtuple.
tóm tắt NamedTupleValueOrBuilder
getNamedTupleValueOrBuilder ()
 Represents Python's namedtuple.
trừu tượng Không có giá trị
getNoneValue ()
 Represents None.
trừu tượng NoneValueOrBuilder
getNoneValueOrBuilder ()
 Represents None.
chuỗi trừu tượng
getStringValue ()
 Represents a string of Unicode characters stored in a Python `str`.
tóm tắt com.google.protobuf.ByteString
getStringValueBytes ()
 Represents a string of Unicode characters stored in a Python `str`.
kiểu dữ liệu trừu tượng
getTensorDtypeValue ()
 Represents an enum value for dtype.
int trừu tượng
getTensorDtypeValueValue ()
 Represents an enum value for dtype.
trừu tượng TensorShapeProto
getTensorShapeValue ()
 Represents a TensorShape.
trừu tượng TensorShapeProtoOrBuilder
getTensorShapeValueOrBuilder ()
 Represents a TensorShape.
trừu tượng TensorSpecProto
getTensorSpecValue ()
 Represents a value for tf.TensorSpec.
trừu tượng TensorSpecProtoOrBuilder
getTensorSpecValueOrBuilder ()
 Represents a value for tf.TensorSpec.
trừu tượng TupleValue
getTupleValue ()
 Represents a tuple of `Value`.
trừu tượng TupleValueOrBuilder
getTupleValueOrBuilder ()
 Represents a tuple of `Value`.
trừu tượng TypeSpecProto
getTypeSpecValue ()
 Represents a value for tf.TypeSpec.
trừu tượng TypeSpecProtoOrBuilder
getTypeSpecValueOrBuilder ()
 Represents a value for tf.TypeSpec.
trừu tượng boolean
hasBoundedTensorSpecValue ()
 Represents a value for tf.BoundedTensorSpec.
trừu tượng boolean
hasDictValue ()
 Represents a dict `Value`.
trừu tượng boolean
hasListValue ()
 Represents a list of `Value`.
trừu tượng boolean
hasNamedTupleValue ()
 Represents Python's namedtuple.
trừu tượng boolean
hasNoneValue ()
 Represents None.
trừu tượng boolean
hasTensorShapeValue ()
 Represents a TensorShape.
trừu tượng boolean
hasTensorSpecValue ()
 Represents a value for tf.TensorSpec.
trừu tượng boolean
hasTupleValue ()
 Represents a tuple of `Value`.
trừu tượng boolean
hasTypeSpecValue ()
 Represents a value for tf.TypeSpec.

Phương pháp công khai

boolean trừu tượng công khai getBoolValue ()

 Represents a boolean value.
 
bool bool_value = 14;

tóm tắt công khai BoundedTensorSpecProto getBoundedTensorSpecValue ()

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

tóm tắt công khai BoundedTensorSpecProtoOrBuilder getBoundedTensorSpecValueOrBuilder ()

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

tóm tắt công khai DictValue getDictValue ()

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

tóm tắt công khai DictValueOrBuilder getDictValueOrBuilder ()

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

tóm tắt công khai đôi getFloat64Value ()

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

tóm tắt công khai dài getInt64Value ()

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

tóm tắt công khai StructuredValue.KindCase getKindCase ()

Tóm tắt công khai ListValue getListValue ()

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

tóm tắt công khai ListValueOrBuilder getListValueOrBuilder ()

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

tóm tắt công khai NamedTupleValue getNamedTupleValue ()

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

tóm tắt công khai NamedTupleValueOrBuilder getNamedTupleValueOrBuilder ()

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

tóm tắt công khai NoneValue getNoneValue ()

 Represents None.
 
.tensorflow.NoneValue none_value = 1;

tóm tắt công khai NoneValueOrBuilder getNoneValueOrBuilder ()

 Represents None.
 
.tensorflow.NoneValue none_value = 1;

Chuỗi trừu tượng công khai 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;

tóm tắt công khai 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;

Tóm tắt công khai DataType getTensorDtypeValue ()

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

tóm tắt công khai int getTensorDtypeValueValue ()

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

tóm tắt công khai TensorShapeProto getTensorShapeValue ()

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

tóm tắt công khai TensorShapeProtoOrBuilder getTensorShapeValueOrBuilder ()

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

tóm tắt công khai TensorSpecProto getTensorSpecValue ()

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

tóm tắt công khai TensorSpecProtoOrBuilder getTensorSpecValueOrBuilder ()

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

tóm tắt công khai TupleValue getTupleValue ()

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

tóm tắt công khai TupleValueOrBuilder getTupleValueOrBuilder ()

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

tóm tắt công khai TypeSpecProto getTypeSpecValue ()

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

tóm tắt công khai TypeSpecProtoOrBuilder getTypeSpecValueOrBuilder ()

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

boolean trừu tượng công khai hasBoundedTensorSpecValue ()

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

boolean trừu tượng công khai hasDictValue ()

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

boolean trừu tượng công khai hasListValue ()

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

boolean trừu tượng công khai hasNamedTupleValue ()

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

boolean trừu tượng công khai hasNoneValue ()

 Represents None.
 
.tensorflow.NoneValue none_value = 1;

boolean trừu tượng công khai hasTensorShapeValue ()

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

boolean trừu tượng công khai hasTensorSpecValue ()

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

boolean trừu tượng công khai hasTupleValue ()

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

boolean trừu tượng công khai hasTypeSpecValue ()

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