Class XPSImageClassificationTrainResponse
Inheritance
XPSImageClassificationTrainResponse
Assembly: Google.Apis.CloudNaturalLanguage.v2.dll
Syntax
public class XPSImageClassificationTrainResponse : IDirectResponseSchema
Properties
ClassCount
Declaration
[JsonProperty("classCount")]
public virtual long? ClassCount { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
ExportModelSpec
Information of downloadable models that are pre-generated as part of training flow and will be persisted in
AutoMl backend. Populated for AutoMl requests.
Declaration
[JsonProperty("exportModelSpec")]
public virtual XPSImageExportModelSpec ExportModelSpec { get; set; }
Property Value
ModelArtifactSpec
The fields below are only populated under uCAIP request scope.
Declaration
[JsonProperty("modelArtifactSpec")]
public virtual XPSImageModelArtifactSpec ModelArtifactSpec { get; set; }
Property Value
ModelServingSpec
Declaration
[JsonProperty("modelServingSpec")]
public virtual XPSImageModelServingSpec ModelServingSpec { get; set; }
Property Value
StopReason
Stop reason for training job, e.g. 'TRAIN_BUDGET_REACHED', 'MODEL_CONVERGED', 'MODEL_EARLY_STOPPED'.
Declaration
[JsonProperty("stopReason")]
public virtual string StopReason { get; set; }
Property Value
TrainCostInNodeTime
The actual cost to create this model. - For edge type model, the cost is expressed in node hour. - For cloud
type model,the cost is expressed in compute hour. - Populated for models created before GA. To be deprecated
after GA.
Declaration
[JsonProperty("trainCostInNodeTime")]
public virtual object TrainCostInNodeTime { get; set; }
Property Value
TrainCostNodeSeconds
The actual training cost, expressed in node seconds. Populated for models trained in node time.
Declaration
[JsonProperty("trainCostNodeSeconds")]
public virtual long? TrainCostNodeSeconds { get; set; }
Property Value
Implements