How to create a Run#

A Run is a simple container that holds metrics tables and metadata generated by a single experiment. Metadata includes information like the which input tables were used, aggregate output values, hyperparameters, etc.

Runs are created by calling the tlc.init() method.

Example#

import tlc

run = tlc.init(
    run_name="my_run",
    project_name="my_project",
    description="This is my first run",
)

The new empty Run will now be written to the default project root. The run should be visible in the 3LC Dashboard immediately after creation, as long as it is connected to a 3LC service that scans the project root for new runs.