Skip to content

docs: fix ML.EVALUATE spelling #749

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bigframes/ml/decomposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,5 +190,5 @@ def score(
if not self._bqml_model:
raise RuntimeError("A model must be fitted before score")

# TODO(b/291973741): X param is ignored. Update BQML supports input in ML.EVALUTE.
# TODO(b/291973741): X param is ignored. Update BQML supports input in ML.EVALUATE.
return self._bqml_model.evaluate()
4 changes: 2 additions & 2 deletions bigframes/ml/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def score(

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#regression_models
for the outputs relevant to this model type.

Expand Down Expand Up @@ -616,7 +616,7 @@ def score(

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#classification_models
for the outputs relevant to this model type.

Expand Down
2 changes: 1 addition & 1 deletion bigframes/ml/forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def score(

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#time_series_models
for the outputs relevant to this model type.

Expand Down
4 changes: 2 additions & 2 deletions bigframes/ml/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def score(

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#remote-model-llm
for the outputs relevant to this model type.

Expand Down Expand Up @@ -751,7 +751,7 @@ def score(

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#remote-model-llm
for the outputs relevant to this model type.

Expand Down
4 changes: 2 additions & 2 deletions third_party/bigframes_vendored/sklearn/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def score(self, X, y):

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#classification_models
for the outputs relevant to this model type.

Expand Down Expand Up @@ -115,7 +115,7 @@ def score(self, X, y):

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#regression_models
for the outputs relevant to this model type.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def score(

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#k-means_models
for the outputs relevant to this model type.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def score(self, X=None, y=None):

.. note::

Output matches that of the BigQuery ML.EVALUTE function.
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#pca_models
for the outputs relevant to this model type.

Expand Down