Skip to contents

Creates an experiment with a name. Returns the ID of the newly created experiment. Validates that another experiment with the same name does not already exist and fails if another experiment with the same name already exists.

Usage

create_experiment(client, name, artifact_location = NULL, tags = NULL)

experimentsCreateExperiment(
  client,
  name,
  artifact_location = NULL,
  tags = NULL
)

Arguments

client

Required. Instance of DatabricksClient()

name

Required. Experiment name.

artifact_location

Location where all artifacts for the experiment are stored.

tags

A collection of tags to set on the experiment.

Details

Throws RESOURCE_ALREADY_EXISTS if a experiment with the given name exists.