A single-process, open-source wandb-compatible server.
go install github.com/psarna/worb@latest && worb
go install github.com/psarna/worb@latest
git clone https://github.com/psarna/worb.git cd worb && go build .
docker run -v ~/.worb:/data -p 8080:8080 \ ghcr.io/psarna/worb --data /data
./worb # starts on http://localhost:8080import os import wandb os.environ["WANDB_DIR"] = "worb" os.environ["WANDB_BASE_URL"] = "http://localhost:8080" os.environ["WANDB_API_KEY"] = "dev-"+"lo"*20+"_example" wandb.init(project="test-project", name="test-run") for i in range(100): wandb.log({"loss": 1.0 / (i + 1), "step": i}) wandb.finish()
WANDB_BASE_URL=http://your-worb-serverLet's be honest, metrics from your grand AI experiment fit on a consumer grade laptop from the late 90s.GitHub Architecture