On Azure Databricks you can create experiments using MLFlow https://mlflow.org/
notebook_path = ‘/Users/Ajay/Folder’
notebook_path = notebook_path
mlflow.set_experiment(notebook_path + ‘_experiments’)
with mlflow.start_run(run_name=”ExperimentRun”+curr_ts):
mlflow.log_params({
‘RSME’: RSME,
‘AUC’: AUC,
})
mlflow.end_run()
https://docs.microsoft.com/en-us/azure/databricks/applications/mlflow/
https://docs.microsoft.com/en-us/azure/databricks/applications/mlflow/quick-start-python