Class ModelState
State common to all model types. Includes publishing and validation information.
Implements
Inherited Members
Namespace: Google.Apis.FirebaseML.v1beta2.Data
Assembly: Google.Apis.FirebaseML.v1beta2.dll
Syntax
public class ModelState : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Published
Indicates if this model has been published.
Declaration
[JsonProperty("published")]
public virtual bool? Published { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ValidationError
Output only. Indicates the latest validation error on the model if any. A model may have validation errors if there were problems during the model creation/update. e.g. in the case of a TfLiteModel, if a tflite model file was missing or in the wrong format. This field will be empty for valid models.
Declaration
[JsonProperty("validationError")]
public virtual Status ValidationError { get; set; }
Property Value
Type | Description |
---|---|
Status |