Konsep Databricks
Kevin Barlow
Data Practitioner


Machine learning single-node

Machine learning multi-node



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

Konsep Databricks