You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace personal project examples with generic SolarFlux/FluxNet
OSPREY/DeepONet/NeuralHamilton → SolarFlux/FluxNet/WavePredict
across README, docs, and skill files.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@@ -73,10 +73,10 @@ Change datasets by changing the `data:` field — one line. The function must re
73
73
Config files live under `configs/<MAIN_CONTRIBUTION>_v<VERSION>/`:
74
74
75
75
```
76
-
configs/OSPREY_v0.10/
77
-
├── deeponet_run.yaml # HPO base config
78
-
├── deeponet_opt.yaml # HPO search config
79
-
└── deeponet_best.yaml # Final training config (created after HPO)
76
+
configs/SolarFlux_v0.3/
77
+
├── fluxnet_run.yaml # HPO base config
78
+
├── fluxnet_opt.yaml # HPO search config
79
+
└── fluxnet_best.yaml # Final training config (created after HPO)
80
80
```
81
81
82
82
See **[Chapter 2: Configuration Deep Dive](02_config.html)** for every field explained.
@@ -88,7 +88,7 @@ See **[Chapter 2: Configuration Deep Dive](02_config.html)** for every field exp
88
88
A single shape mismatch can waste hours of GPU time. Preflight catches it in seconds by running one batch forward and backward through the full stack — data loading, model instantiation, optimizer step, gradient check.
HPO finds the best hyperparameters by running many short training trials and using the results to guide the search. The optimizer config (`opt.yaml`) defines the search space:
- `<CONTRIBUTION>`— the experiment name or project shorthand (e.g., `OSPREY`, `Neural_Hamilton`)
192
+
- `<CONTRIBUTION>`— the experiment name or project shorthand (e.g., `SolarFlux`, `WavePredict`)
193
193
- `<VERSION>`— integer version, incremented when the search space or architecture changes significantly
194
194
- `<MODEL>`— the model or configuration variant being tested
195
195
196
196
Examples:
197
197
198
198
```
199
-
configs/OSPREY_v1/MLP_run.yaml # base run config for HPO
200
-
configs/OSPREY_v1/MLP_opt.yaml # HPO search space
201
-
configs/OSPREY_v1/MLP_best.yaml # best config after HPO
199
+
configs/SolarFlux_v1/MLP_run.yaml # base run config for HPO
200
+
configs/SolarFlux_v1/MLP_opt.yaml # HPO search space
201
+
configs/SolarFlux_v1/MLP_best.yaml # best config after HPO
202
202
203
-
configs/Neural_Hamilton_v2/HNN_run.yaml
204
-
configs/Neural_Hamilton_v2/HNN_opt.yaml
205
-
configs/Neural_Hamilton_v2/HNN_best.yaml
203
+
configs/WavePredict_v2/HNN_run.yaml
204
+
configs/WavePredict_v2/HNN_opt.yaml
205
+
configs/WavePredict_v2/HNN_best.yaml
206
206
```
207
207
208
208
This convention makes it immediately clear which phase of the workflow each file belongs to, and version numbers let you track search space evolution without losing old configs.
0 commit comments