A TensorFlow Lite Model output object

One of either the gcsTfliteUri or automlModel properties will be defined.

Signature:

export interface TFLiteModel 

Properties

Property Type Description
automlModel string The AutoML model reference from which the model was originally provided to Firebase.
gcsTfliteUri string The URI from which the model was originally provided to Firebase.
sizeBytes number The size of the model.

TFLiteModel.automlModel

The AutoML model reference from which the model was originally provided to Firebase.

Signature:

readonly automlModel?: string;

TFLiteModel.gcsTfliteUri

The URI from which the model was originally provided to Firebase.

Signature:

readonly gcsTfliteUri?: string;

TFLiteModel.sizeBytes

The size of the model.

Signature:

readonly sizeBytes: number;