experitur

experitur automates machine learning and other computer science experiments and stores the results in an easily accessible format. It includes grid search, random search, parameter substitution, inheritance and resuming aborted experiments.

_images/simple.gif

The above example shows the execution of the following experiment:

import time

from experitur import Experiment
from experitur.configurators import Grid


@Grid({"a": [1, 2], "b": [3, 4]})
@Experiment()
def simple(trial):
    print("a:", trial["a"])
    print("b:", trial["b"])

    time.sleep(0.5)

Read more about Experiment, Grid or the command line reference.

Contents

Indices and tables