Introduction
Experiments are a way to track your experiments.
Within mlop, experiments are the main unit of work. They are created by running a script with the mlop client.
Creating an experiment
To create an experiment, you simply start the mlop client with the .init()
function.
Alternatively, to specify other parameters for the run,
Parameter | Type | Description |
---|---|---|
dir | str | The directory to save the experiment. |
name | str | The name of the experiment. |
project | str | The project to save the experiment. |
config | dict | The hyperparameters/configuration for the experiment. |
settings | dict | The settings for the experiment. |
This will create an experiment with the name my_experiment
and the project my_project
. To see more about projects, check out the projects page.