TfLiteModelArgs

data class TfLiteModelArgs(val automlModel: Output<String>? = null, val gcsTfliteUri: Output<String>? = null) : ConvertibleToJava<TfLiteModelArgs>

Information that is specific to TfLite models.

Constructors

Link copied to clipboard
constructor(automlModel: Output<String>? = null, gcsTfliteUri: Output<String>? = null)

Properties

Link copied to clipboard
val automlModel: Output<String>? = null

The AutoML model id referencing a model you created with the AutoML API. The name should have format 'projects//locations//models/' (This is the model resource name returned from the AutoML API)

Link copied to clipboard
val gcsTfliteUri: Output<String>? = null

The TfLite file containing the model. (Stored in Google Cloud). The gcs_tflite_uri should have form: gs://some-bucket/some-model.tflite Note: If you update the file in the original location, it is necessary to call UpdateModel for ML to pick up and validate the updated file.

Functions

Link copied to clipboard
open override fun toJava(): TfLiteModelArgs