GoogleApi.Retail.V2.Model.GoogleCloudRetailV2Model (google_api_retail v0.20.0)
View SourceMetadata that describes the training and serving parameters of a Model. A Model can be associated with a ServingConfig and then queried through the Predict API.
Attributes
-
createTime(type:DateTime.t, default:nil) - Output only. Timestamp the Recommendation Model was created at. -
dataState(type:String.t, default:nil) - Output only. The state of data requirements for this model:DATA_OKandDATA_ERROR. Recommendation model cannot be trained if the data is inDATA_ERRORstate. Recommendation model can haveDATA_ERRORstate even if serving state isACTIVE: models were trained successfully before, but cannot be refreshed because model no longer has sufficient data for training. -
displayName(type:String.t, default:nil) - Required. The display name of the model. Should be human readable, used to display Recommendation Models in the Retail Cloud Console Dashboard. UTF-8 encoded string with limit of 1024 characters. -
filteringOption(type:String.t, default:nil) - Optional. IfRECOMMENDATIONS_FILTERING_ENABLED, recommendation filtering by attributes is enabled for the model. -
lastTuneTime(type:DateTime.t, default:nil) - Output only. The timestamp when the latest successful tune finished. -
modelFeaturesConfig(type:GoogleApi.Retail.V2.Model.GoogleCloudRetailV2ModelModelFeaturesConfig.t, default:nil) - Optional. Additional model features config. -
name(type:String.t, default:nil) - Required. The fully qualified resource name of the model. Format:projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/models/{model_id}catalog_id has char limit of 50. recommendation_model_id has char limit of 40. -
optimizationObjective(type:String.t, default:nil) - Optional. The optimization objective e.g.cvr. Currently supported values:ctr,cvr,revenue-per-order. If not specified, we choose default based on model type. Default depends on type of recommendation:recommended-for-you=>ctrothers-you-may-like=>ctrfrequently-bought-together=>revenue_per_orderThis field together with optimization_objective describe model metadata to use to control model training and serving. See https://cloud.google.com/retail/docs/models for more details on what the model metadata control and which combination of parameters are valid. For invalid combinations of parameters (e.g. type =frequently-bought-togetherand optimization_objective =ctr), you receive an error 400 if you try to create/update a recommendation with this set of knobs. -
periodicTuningState(type:String.t, default:nil) - Optional. The state of periodic tuning. The period we use is 3 months - to do a one-off tune earlier use theTuneModelmethod. Default value isPERIODIC_TUNING_ENABLED. -
servingConfigLists(type:list(GoogleApi.Retail.V2.Model.GoogleCloudRetailV2ModelServingConfigList.t), default:nil) - Output only. The list of valid serving configs associated with the PageOptimizationConfig. -
servingState(type:String.t, default:nil) - Output only. The serving state of the model:ACTIVE,NOT_ACTIVE. -
trainingState(type:String.t, default:nil) - Optional. The training state that the model is in (e.g.TRAININGorPAUSED). Since part of the cost of running the service is frequency of training - this can be used to determine when to train model in order to control cost. If not specified: the default value forCreateModelmethod isTRAINING. The default value forUpdateModelmethod is to keep the state the same as before. -
tuningOperation(type:String.t, default:nil) - Output only. The tune operation associated with the model. Can be used to determine if there is an ongoing tune for this recommendation. Empty field implies no tune is goig on. -
type(type:String.t, default:nil) - Required. The type of model e.g.home-page. Currently supported values:recommended-for-you,others-you-may-like,frequently-bought-together,page-optimization,similar-items,buy-it-again,on-sale-items, andrecently-viewed(readonly value). This field together with optimization_objective describe model metadata to use to control model training and serving. See https://cloud.google.com/retail/docs/models for more details on what the model metadata control and which combination of parameters are valid. For invalid combinations of parameters (e.g. type =frequently-bought-togetherand optimization_objective =ctr), you receive an error 400 if you try to create/update a recommendation with this set of knobs. -
updateTime(type:DateTime.t, default:nil) - Output only. Timestamp the Recommendation Model was last updated. E.g. if a Recommendation Model was paused - this would be the time the pause was initiated.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Retail.V2.Model.GoogleCloudRetailV2Model{ createTime: DateTime.t() | nil, dataState: String.t() | nil, displayName: String.t() | nil, filteringOption: String.t() | nil, lastTuneTime: DateTime.t() | nil, modelFeaturesConfig: GoogleApi.Retail.V2.Model.GoogleCloudRetailV2ModelModelFeaturesConfig.t() | nil, name: String.t() | nil, optimizationObjective: String.t() | nil, periodicTuningState: String.t() | nil, servingConfigLists: [GoogleApi.Retail.V2.Model.GoogleCloudRetailV2ModelServingConfigList.t()] | nil, servingState: String.t() | nil, trainingState: String.t() | nil, tuningOperation: String.t() | nil, type: String.t() | nil, updateTime: DateTime.t() | nil }