Skip to content

Commit 809f92b

Browse files
committed
Update advection diffusion
1 parent 43148c6 commit 809f92b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

autoemulate/experimental/configs/advection_diffusion_generated.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ formatter_type: "default_channels_first"
1515
model_params:
1616
modes1: 16 # Fourier modes in first dimension
1717
modes2: 16 # Fourier modes in second dimension
18-
width: 32 # Width of the FNO layers
19-
n_blocks: 4 # Number of FNO blocks
18+
hidden_channels: 128 # Number of channels in the FNO layers
19+
# width: 32 # Width of the FNO layers
20+
# n_blocks: 4 # Number of FNO blocks
2021

2122
# Simulator configuration for advection-diffusion
2223
# This triggers GENERATED data source type
@@ -38,7 +39,7 @@ data:
3839
# No data_path - triggers GENERATED source type
3940

4041
# Data generation
41-
n_train_samples: 1000
42+
n_train_samples: 100
4243
n_valid_samples: 20
4344
n_test_samples: 20
4445
random_seed: 42
@@ -55,10 +56,10 @@ trainer:
5556
epochs: 20
5657
device: "cuda" # Use "cuda" for NVIDIA GPU, "mps" for Apple Silicon, "cpu" for CPU
5758

58-
optimizer_type: "adam"
59+
optimizer_type: "adamw"
5960
optimizer_params:
60-
lr: 0.0001 # Learning rate
61-
weight_decay: 0.0
61+
lr: 0.01 # Learning rate
62+
weight_decay: 0.0001
6263

6364
lr_scheduler_type: "step_lr"
6465
lr_scheduler_params:

0 commit comments

Comments
 (0)