Skip to content

Commit f7a4ff5

Browse files
authored
📝 Update instructions for the local config on the README.md (#72)
1 parent ef5ad38 commit f7a4ff5

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,26 @@ defaults:
2323
base_path: /local/path/to/my/data
2424
```
2525
26-
Alternatively, you can apply overrides at the command line like this:
26+
You can then run this with, e.g.:
27+
28+
```bash
29+
uv run zebra datasets create --config-name <your local config>.yaml
30+
```
31+
You can also use this config to override other options in the `zebra.yaml` file, as shown below:
32+
33+
```yaml
34+
defaults:
35+
- zebra
36+
- override /model: encode_unet_decode # Use this format if you want to use a different config
37+
38+
# Override specific model parameters
39+
model:
40+
processor:
41+
start_out_channels: 37 # Use this format to override specific model parameters in the named configs
42+
43+
base_path: /local/path/to/my/data
44+
```
45+
Alternatively, you can apply overrides to specific options at the command line like this:
2746
2847
```bash
2948
uv run zebra datasets create ++base_path=/local/path/to/my/data

0 commit comments

Comments
 (0)