Share via


InferenceInput.GetData Method

Definition

A byte array that holds input data.

[Android.Runtime.Register("getData", "()[B", "", ApiSince=36)]
public byte[] GetData();
[<Android.Runtime.Register("getData", "()[B", "", ApiSince=36)>]
member this.GetData : unit -> byte[]

Returns

Byte[]
Attributes

Remarks

A byte array that holds input data. The inputs should be in the same order as inputs of the model.

For LiteRT, this field is mapped to inputs of runForMultipleInputsOutputs: https://www.tensorflow.org/lite/api_docs/java/org/tensorflow/lite/InterpreterApi#parameters_9

{@code
            String[] input0 = {"foo", "bar"}; // string tensor shape is [2].
            int[] input1 = new int[]{3, 2, 1}; // int tensor shape is [3].
            Object[] inputData = {input0, input1, ...};
            byte[] data = serializeObject(inputData);
            }

For Executorch model, this field is a serialized EValue array.

Java documentation for android.adservices.ondevicepersonalization.InferenceInput.getData().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to