From cb2348f18a0198aa06583a5c08969dc6d15e73d1 Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Fri, 17 Jul 2026 13:24:49 -0400 Subject: [PATCH] Add missing wandb config to minimal hydra example configs/defaults.yaml lists the `wandb: default` Hydra config group, but configs/wandb/ was never committed: the repo-root .gitignore's bare `wandb` pattern (meant for run-output directories) also matched it. Composition failed with: In 'defaults': Could not find 'wandb/default' Add configs/wandb/default.yaml with the `setup:` mapping that main.py unpacks into wandb.init(**cfg.wandb.setup), plus a .gitignore negation so the config group cannot be silently re-lost. Fixes #482 Co-Authored-By: Claude Fable 5 --- .gitignore | 1 + examples/minimal-hydra-example/configs/wandb/default.yaml | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 examples/minimal-hydra-example/configs/wandb/default.yaml diff --git a/.gitignore b/.gitignore index c6a6c704..be293ccb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.swp .python-version wandb +!examples/minimal-hydra-example/configs/wandb/ wandb-debug.log __pycache__ .ipynb_checkpoints diff --git a/examples/minimal-hydra-example/configs/wandb/default.yaml b/examples/minimal-hydra-example/configs/wandb/default.yaml new file mode 100644 index 00000000..0fcf1700 --- /dev/null +++ b/examples/minimal-hydra-example/configs/wandb/default.yaml @@ -0,0 +1,4 @@ +--- +setup: + project: example-hydra + entity: null