Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 2d5e065

Browse files
committed
add todo for other transform inputs
1 parent f323b6b commit 2d5e065

File tree

1 file changed

+4
-1
lines changed
  • bigframes/bigquery/_operations

1 file changed

+4
-1
lines changed

bigframes/bigquery/_operations/ml.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ def create_model(
4040
*,
4141
replace: bool = False,
4242
if_not_exists: bool = False,
43+
# TODO(tswast): Also support bigframes.ml transformer classes and/or
44+
# bigframes.pandas functions?
4345
transform: Optional[list[str]] = None,
4446
input_schema: Optional[Mapping[str, str]] = None,
4547
output_schema: Optional[Mapping[str, str]] = None,
@@ -64,7 +66,8 @@ def create_model(
6466
if_not_exists (bool, default False):
6567
Whether to ignore the error if the model already exists.
6668
transform (list[str], optional):
67-
The TRANSFORM clause, which specifies the preprocessing steps to apply to the input data.
69+
A list of SQL transformations for the TRANSFORM clause, which
70+
specifies the preprocessing steps to apply to the input data.
6871
input_schema (Mapping[str, str], optional):
6972
The INPUT clause, which specifies the schema of the input data.
7073
output_schema (Mapping[str, str], optional):

0 commit comments

Comments
 (0)