TfModelUpdateReport

data class TfModelUpdateReport(    val attemptedEndpoint: EndpointData? = null,     val attemptedModelDescription: AttemptedModelDescription? = null,     val errorReport: ErrorReport? = null,     val loadedModelInfo: ModelInfo? = null,     val fallbackModelInfo: ModelInfo? = null)

A report on the outcome of TensorFlow neural model loading operation.

Constructors

Link copied to clipboard
fun TfModelUpdateReport(    attemptedEndpoint: EndpointData? = null,     attemptedModelDescription: AttemptedModelDescription? = null,     errorReport: ErrorReport? = null,     loadedModelInfo: ModelInfo? = null,     fallbackModelInfo: ModelInfo? = null)

Properties

Link copied to clipboard
val attemptedEndpoint: EndpointData? = null

Server API endpoint requested for model data.

Link copied to clipboard
val attemptedModelDescription: AttemptedModelDescription? = null

Model description received from the API Server (if available).

Link copied to clipboard
val errorReport: ErrorReport? = null

The report on the error encountered (if any).

Link copied to clipboard
val fallbackModelInfo: ModelInfo? = null

The info on the model loaded as a fallback during an operation (if any).

Link copied to clipboard
val loadedModelInfo: ModelInfo? = null

The info on the model loaded as a result of an operation (if any).