- 4175 Views
- 3 replies
- 3 kudos
the following code...from sparkdl.xgboost import XgboostRegressorfrom pyspark.ml import Pipelineparams = {"n_estimators": 100, "learning_rate": 0.1, "max_depth": 4, "random_state": 42, "missing": 0}xgboost = XgboostRegressor(**params)pipeline = Pipel...
- 4175 Views
- 3 replies
- 3 kudos
Latest Reply
You need to choose the runtime for ML instead of the standard.
2 More Replies
- 3243 Views
- 4 replies
- 1 kudos
executing the following code...from databricks import automlsummary = automl.regress(train_df, target_col="price", primary_metric="rmse", timeout_minutes=5, max_trials=10)generates the error...ImportError: cannot import name 'automl' from 'databricks...
- 3243 Views
- 4 replies
- 1 kudos
- 2860 Views
- 2 replies
- 3 kudos
the following code...from pyspark.sql.functions import monotonically_increasing_id, lit, expr, randimport uuidfrom databricks import feature_storefrom pyspark.sql.types import StringType, DoubleTypefrom databricks.feature_store import feature_table, ...
- 2860 Views
- 2 replies
- 3 kudos
Latest Reply
Hope that was an easy fix - @Tobias Cortese ! Thanks for marking the "best answer"!
1 More Replies