Skip to main content

Creating an Experiment

Within trakkur, an experiment represent a singular instance of a tracked run. To create an experiment, invoke mlop.init() with the experiment name and a project project.
import mlop
 
mlop.init(name="gpt4o-vision", project="VLLM")
You can pass in configurations, e.g hyperparameters the config parameter
hyperparameters = {
    "lr": 0.001,
    "epochs": 1000,
}
 
mlop.init(
    dir=".",
    name="gpt4o-vision",
    project="VLLM",
    config=hyperparameters,
)
and this will be recorded in the experiment metadata. Screenshot 2025 12 18 At 5 30 31 PM Screenshot 2025 12 18 At 5 30 58 PM