Databricks-concepten
Kevin Barlow
Data Practitioner


Machine learning op één node

Machine learning op meerdere nodes



import mlflow
with mlflow.start_run() as run:
# machine learning training
mlflow.autolog()
mlflow.log_metric('accuracy', acc)
mlflow.lot_param('k', kNum)

Databricks-concepten