Skip to content

Commit 7899749

Browse files
authored
docs: fix ML.EVALUATE spelling (#749)
1 parent b2c7d8b commit 7899749

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

bigframes/ml/decomposition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,5 +190,5 @@ def score(
190190
if not self._bqml_model:
191191
raise RuntimeError("A model must be fitted before score")
192192

193-
# TODO(b/291973741): X param is ignored. Update BQML supports input in ML.EVALUTE.
193+
# TODO(b/291973741): X param is ignored. Update BQML supports input in ML.EVALUATE.
194194
return self._bqml_model.evaluate()

bigframes/ml/ensemble.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ def score(
460460
461461
.. note::
462462
463-
Output matches that of the BigQuery ML.EVALUTE function.
463+
Output matches that of the BigQuery ML.EVALUATE function.
464464
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#regression_models
465465
for the outputs relevant to this model type.
466466
@@ -616,7 +616,7 @@ def score(
616616
617617
.. note::
618618
619-
Output matches that of the BigQuery ML.EVALUTE function.
619+
Output matches that of the BigQuery ML.EVALUATE function.
620620
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#classification_models
621621
for the outputs relevant to this model type.
622622

bigframes/ml/forecasting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def score(
313313
314314
.. note::
315315
316-
Output matches that of the BigQuery ML.EVALUTE function.
316+
Output matches that of the BigQuery ML.EVALUATE function.
317317
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#time_series_models
318318
for the outputs relevant to this model type.
319319

bigframes/ml/llm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def score(
329329
330330
.. note::
331331
332-
Output matches that of the BigQuery ML.EVALUTE function.
332+
Output matches that of the BigQuery ML.EVALUATE function.
333333
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#remote-model-llm
334334
for the outputs relevant to this model type.
335335
@@ -751,7 +751,7 @@ def score(
751751
752752
.. note::
753753
754-
Output matches that of the BigQuery ML.EVALUTE function.
754+
Output matches that of the BigQuery ML.EVALUATE function.
755755
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#remote-model-llm
756756
for the outputs relevant to this model type.
757757

third_party/bigframes_vendored/sklearn/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def score(self, X, y):
8787
8888
.. note::
8989
90-
Output matches that of the BigQuery ML.EVALUTE function.
90+
Output matches that of the BigQuery ML.EVALUATE function.
9191
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#classification_models
9292
for the outputs relevant to this model type.
9393
@@ -115,7 +115,7 @@ def score(self, X, y):
115115
116116
.. note::
117117
118-
Output matches that of the BigQuery ML.EVALUTE function.
118+
Output matches that of the BigQuery ML.EVALUATE function.
119119
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#regression_models
120120
for the outputs relevant to this model type.
121121

third_party/bigframes_vendored/sklearn/cluster/_kmeans.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def score(
103103
104104
.. note::
105105
106-
Output matches that of the BigQuery ML.EVALUTE function.
106+
Output matches that of the BigQuery ML.EVALUATE function.
107107
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#k-means_models
108108
for the outputs relevant to this model type.
109109

third_party/bigframes_vendored/sklearn/decomposition/_pca.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def score(self, X=None, y=None):
5252
5353
.. note::
5454
55-
Output matches that of the BigQuery ML.EVALUTE function.
55+
Output matches that of the BigQuery ML.EVALUATE function.
5656
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#pca_models
5757
for the outputs relevant to this model type.
5858

0 commit comments

Comments
 (0)