Skip to content

Commit

Permalink
Reduce numer of coupling nn layers to avoid model getting too big.
Browse files Browse the repository at this point in the history
  • Loading branch information
YalcinerMustafa committed Nov 2, 2024
1 parent 6460ddc commit 52b6e75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ experiments:
device: *device
scale_factor: 2
epochs: &epochs 200000
patience: &patience 150
patience: &patience 80
batch_size: &batch_size
__eval__: tune.choice([16, 32])
optim_cfg: &optim
Expand All @@ -51,7 +51,7 @@ experiments:
__eval__: 0.001 * torch.ones(1).to("cuda") #0.01
prior_scale: 5.0
coupling_layers: &coupling_layers
__eval__: tune.choice([i for i in range(3, 4)])
__eval__: tune.choice([i for i in range(2, 3)])
coupling_nn_layers: &coupling_nn_layers
__eval__: "tune.choice([[w] * l for l in [1] for w in [294]])"
nonlinearity: &nonlinearity
Expand Down

0 comments on commit 52b6e75

Please sign in to comment.