Concepts de Databricks
Kevin Barlow
Data Practitioner


Machine Learning sur un seul nœud

Machine Learning multinœud



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

Concepts de Databricks