You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vertexai/preview/README.md
+51-1
Original file line number
Diff line number
Diff line change
@@ -305,6 +305,40 @@ tuner.fit(X_train, y_train)
305
305
best_model = tuner.get_best_models()[0]
306
306
```
307
307
308
+
## Remote Training with BigFrames data source
309
+
Remote training supports [BigFrames](https://cloud.google.com/python/docs/reference/bigframes/latest) as the input data source. The user journey is identical to remote training for a given framework after the BigFrames dataframe is passed in as arguments for the train function.
310
+
311
+
### Supported frameworks
312
+
1. scikit-learn
313
+
2. tensorflow
314
+
3. pytorch
315
+
316
+
### User journey
317
+
```py
318
+
import vertexai
319
+
import bigframes.pandas as bf
320
+
from bigframes.ml.model_selection import train_test_split as bf_train_test_split
321
+
322
+
# Init vertexai and switch to remote mode for tuning
0 commit comments