Databricks の基本概念
Kevin Barlow
Data Practitioner


シングルノードの機械学習

マルチノードの機械学習



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

Databricks の基本概念