TrainingExampleRecord.Builder


public static final class TrainingExampleRecord.Builder
extends Object

java.lang.Object
   ↳ android.adservices.ondevicepersonalization.TrainingExampleRecord.Builder


A builder for TrainingExampleRecord

Summary

Public constructors

Builder()

Public methods

TrainingExampleRecord build()

Builds the instance.

TrainingExampleRecord.Builder setResumptionToken(byte... value)

The resumption token byte arrays corresponding to training examples.

TrainingExampleRecord.Builder setTrainingExample(byte... value)

Training example byte arrays.

Inherited methods

Public constructors

Builder

public Builder ()

Public methods

build

public TrainingExampleRecord build ()

Builds the instance. This builder should not be touched after calling this!

Returns
TrainingExampleRecord This value cannot be null.

setResumptionToken

public TrainingExampleRecord.Builder setResumptionToken (byte... value)

The resumption token byte arrays corresponding to training examples. The last processed example's corresponding resumption token will be passed to IsolatedWorker.onTrainingExamples(TrainingExamplesInput, OutcomeReceiver) to support resumption.

Parameters
value byte: This value may be null.

Returns
TrainingExampleRecord.Builder This value cannot be null.

setTrainingExample

public TrainingExampleRecord.Builder setTrainingExample (byte... value)

Training example byte arrays. The format is a binary serialized tensorflow.Example proto. The maximum allowed example size is 50KB.

Parameters
value byte: This value may be null.

Returns
TrainingExampleRecord.Builder This value cannot be null.