From a4c0443e01b7ac2348f733f8ed9046bb549acfa4 Mon Sep 17 00:00:00 2001 From: Lars Bogner Date: Thu, 30 Jul 2026 17:08:46 +0200 Subject: [PATCH] Add bigger WGAN config (hidden_dim=512, n_blocks=6) Scaled-up variant of the already-trained wgan_h128_b4_physical.toml benchmark config, same training recipe (mode/epochs/lr/warmup), increased model capacity. Co-Authored-By: Claude Sonnet 5 --- configs/wgan_h512_b6_physical.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 configs/wgan_h512_b6_physical.toml diff --git a/configs/wgan_h512_b6_physical.toml b/configs/wgan_h512_b6_physical.toml new file mode 100644 index 0000000..2a5501c --- /dev/null +++ b/configs/wgan_h512_b6_physical.toml @@ -0,0 +1,13 @@ +[train] +mode = "wgan" +epochs = 30 +lr = 3e-4 +warmup_epochs = 3 +val_fraction = 0.1 +num_workers = 4 + +[model] +hidden_dim = 512 +n_blocks = 6 +dropout = 0.0 +conditioning = "physical"