Package org.tensorflow.distruntime
Interface RunCallableResponseOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder
,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RunCallableResponse
,RunCallableResponse.Builder
public interface RunCallableResponseOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TensorProto
getFetch(int index)
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.int
getFetchCount()
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.List<TensorProto>
getFetchList()
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.TensorProtoOrBuilder
getFetchOrBuilder(int index)
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.List<? extends TensorProtoOrBuilder>
getFetchOrBuilderList()
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.RunMetadata
getMetadata()
Returned metadata if requested in the options.RunMetadataOrBuilder
getMetadataOrBuilder()
Returned metadata if requested in the options.boolean
hasMetadata()
Returned metadata if requested in the options.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFetchList
List<TensorProto> getFetchList()
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.
repeated .tensorflow.TensorProto fetch = 1;
-
getFetch
TensorProto getFetch(int index)
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.
repeated .tensorflow.TensorProto fetch = 1;
-
getFetchCount
int getFetchCount()
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.
repeated .tensorflow.TensorProto fetch = 1;
-
getFetchOrBuilderList
List<? extends TensorProtoOrBuilder> getFetchOrBuilderList()
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.
repeated .tensorflow.TensorProto fetch = 1;
-
getFetchOrBuilder
TensorProtoOrBuilder getFetchOrBuilder(int index)
Values of the tensors returned by the callable, in the order defined in the CallableOptions.fetch field passed to MakeCallable.
repeated .tensorflow.TensorProto fetch = 1;
-
hasMetadata
boolean hasMetadata()
Returned metadata if requested in the options.
.tensorflow.RunMetadata metadata = 2;
- Returns:
- Whether the metadata field is set.
-
getMetadata
RunMetadata getMetadata()
Returned metadata if requested in the options.
.tensorflow.RunMetadata metadata = 2;
- Returns:
- The metadata.
-
getMetadataOrBuilder
RunMetadataOrBuilder getMetadataOrBuilder()
Returned metadata if requested in the options.
.tensorflow.RunMetadata metadata = 2;
-
-