Feature/wandb integration #18

Merged
lars merged 10 commits from feature/wandb-integration into master 2026-07-29 10:52:52 +02:00
3 changed files with 59 additions and 0 deletions
Showing only changes of commit db0f12be58 - Show all commits
+23
View File
@@ -0,0 +1,23 @@
[train]
mode = "flow"
epochs = 30
lr = 3e-4
warmup_epochs = 3
val_fraction = 0.1
num_workers = 4
[model]
conditioning = "embedding"
dropout = 0.0
expert_hidden_dim = 128
expert_n_blocks = 4
[model.router]
enabled = true
type = "energy"
n_experts = 10
expert_hidden_dim = 128
expert_n_blocks = 4
temperature = 0.05
lambda_balance = 0.035
learn_centers = true
+23
View File
@@ -0,0 +1,23 @@
[train]
mode = "flow"
epochs = 30
lr = 3e-4
warmup_epochs = 3
val_fraction = 0.1
num_workers = 4
[model]
conditioning = "physical"
dropout = 0.0
expert_hidden_dim = 128
expert_n_blocks = 4
[model.router]
enabled = true
type = "energy"
n_experts = 10
expert_hidden_dim = 128
expert_n_blocks = 4
temperature = 0.05
lambda_balance = 0.035
learn_centers = true
+13
View File
@@ -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 = 128
n_blocks = 4
dropout = 0.0
conditioning = "physical"