🧪
No experiment selected
Select a run from the sidebar, or start your first experiment.
import trainlog

# wrap any training loop — zero config
with trainlog.run("resnet-v1", tags=["cv", "baseline"]):
    trainlog.log(lr=1e-3, batch_size=64)
    for epoch in range(50):
        trainlog.log(accuracy=acc, loss=loss, epoch=epoch)
    trainlog.note("Baseline with cosine annealing")
Or run trainlog init to generate an example script.