Class Model (2.0.0) Stay organized with collections Save and categorize content based on your preferences.
- 3.39.0 (latest)
- 3.38.0
- 3.37.0
- 3.36.0
- 3.35.1
- 3.34.0
- 3.33.0
- 3.31.0
- 3.30.0
- 3.29.0
- 3.27.0
- 3.26.0
- 3.25.0
- 3.24.0
- 3.23.1
- 3.22.0
- 3.21.0
- 3.20.1
- 3.19.0
- 3.18.0
- 3.17.2
- 3.16.0
- 3.15.0
- 3.14.1
- 3.13.0
- 3.12.0
- 3.11.4
- 3.4.0
- 3.3.6
- 3.2.0
- 3.1.0
- 3.0.1
- 2.34.4
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.1
- 2.29.0
- 2.28.1
- 2.27.1
- 2.26.0
- 2.25.2
- 2.24.1
- 2.23.3
- 2.22.1
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.1
- 2.15.0
- 2.14.0
- 2.13.1
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.2
- 2.5.0
- 2.4.0
- 2.3.1
- 2.2.0
- 2.1.0
- 2.0.0
- 1.28.2
- 1.27.2
- 1.26.1
- 1.25.0
- 1.24.0
- 1.23.1
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
Model(mapping=None,*,ignore_unknown_fields=False,**kwargs)Attributes
| Name | Description |
| etag | strOutput only. A hash of this resource. |
| model_reference | `.gcb_model_reference.ModelReference`Required. Unique identifier for this model. |
| creation_time | intOutput only. The time when this model was created, in millisecs since the epoch. |
| last_modified_time | intOutput only. The time when this model was last modified, in millisecs since the epoch. |
| description | strOptional. A user-friendly description of this model. |
| friendly_name | strOptional. A descriptive name for this model. |
| labels | Sequence[`.gcb_model.Model.LabelsEntry`]The labels associated with this model. You can use these to organize and group your models. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key. |
| expiration_time | intOptional. The time when this model expires, in milliseconds since the epoch. If not present, the model will persist indefinitely. Expired models will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created models. |
| location | strOutput only. The geographic location where the model resides. This value is inherited from the dataset. |
| encryption_configuration | `.encryption_config.EncryptionConfiguration`Custom encryption configuration (e.g., Cloud KMS keys). This shows the encryption configuration of the model data while stored in BigQuery storage. |
| model_type | `.gcb_model.Model.ModelType`Output only. Type of the model resource. |
| training_runs | Sequence[`.gcb_model.Model.TrainingRun`]Output only. Information for all training runs in increasing order of start_time. |
| feature_columns | Sequence[`.standard_sql.StandardSqlField`]Output only. Input feature columns that were used to train this model. |
| label_columns | Sequence[`.standard_sql.StandardSqlField`]Output only. Label columns that were used to train this model. The output of the model will have a `predicted_` prefix to these columns. |
Inheritance
builtins.object >proto.message.Message >ModelClasses
AggregateClassificationMetrics
AggregateClassificationMetrics(mapping=None,*,ignore_unknown_fields=False,**kwargs)Aggregate metrics for classification/classifier models. Formulti-class models, the metrics are either macro-averaged ormicro-averaged. When macro-averaged, the metrics are calculatedfor each label and then an unweighted average is taken of thosevalues. When micro-averaged, the metric is calculated globallyby counting the total number of correctly predicted rows.
BinaryClassificationMetrics
BinaryClassificationMetrics(mapping=None,*,ignore_unknown_fields=False,**kwargs)Evaluation metrics for binary classification/classifiermodels.
ClusteringMetrics
ClusteringMetrics(mapping=None,*,ignore_unknown_fields=False,**kwargs)Evaluation metrics for clustering models.
DataSplitMethod
DataSplitMethod(value)Indicates the method to split input data into multipletables.
DistanceType
DistanceType(value)Distance metric used to compute the distance between twopoints.
EvaluationMetrics
EvaluationMetrics(mapping=None,*,ignore_unknown_fields=False,**kwargs)Evaluation metrics of a model. These are either computed onall training data or just the eval data based on whether evaldata was used during training. These are not present forimported models.
LabelsEntry
LabelsEntry(mapping=None,*,ignore_unknown_fields=False,**kwargs)The abstract base class for a message.
| Name | Description |
| kwargs | dictKeys and values corresponding to the fields of the message. |
| mapping | Union[dict, `.Message`]A dictionary or message to be used to determine the values for this message. |
| ignore_unknown_fields | Optional(bool)If True, do not raise errors for unknown fields. Only applied if |
LearnRateStrategy
LearnRateStrategy(value)Indicates the learning rate optimization strategy to use.
LossType
LossType(value)Loss metric to evaluate model training performance.
ModelType
ModelType(value)Indicates the type of the Model.
MultiClassClassificationMetrics
MultiClassClassificationMetrics(mapping=None,*,ignore_unknown_fields=False,**kwargs)Evaluation metrics for multi-class classification/classifiermodels.
OptimizationStrategy
OptimizationStrategy(value)Indicates the optimization strategy used for training.
RegressionMetrics
RegressionMetrics(mapping=None,*,ignore_unknown_fields=False,**kwargs)Evaluation metrics for regression and explicit feedback typematrix factorization models.
TrainingRun
TrainingRun(mapping=None,*,ignore_unknown_fields=False,**kwargs)Information about a single training query run for the model.
Methods
__delattr__
__delattr__(key)Delete the value on the given field.
This is generally equivalent to setting a falsy value.
__eq__
__eq__(other)Return True if the messages are equal, False otherwise.
__ne__
__ne__(other)Return True if the messages are unequal, False otherwise.
__setattr__
__setattr__(key,value)Set the value on the given field.
For well-known protocol buffer types which are marshalled, eitherthe protocol buffer object or the Python equivalent is accepted.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-16 UTC.