Skip to content

Commit 76016f7

Browse files
committed
fixes
1 parent 7081bc9 commit 76016f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

submissions/self_tuning/nadamw/submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def update_params(
304304
grad_clip = hyperparameters['grad_clip']
305305
else:
306306
grad_clip = None
307-
dropout_rate = hyperparameters.dropout_rate
307+
dropout_rate = hyperparameters['dropout_rate']
308308

309309
# Create shardings for each argument
310310
mesh = jax.sharding.Mesh(jax.devices(), ('batch'))

submissions/self_tuning/nadamw_baselinev05/submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def update_params(
304304
grad_clip = hyperparameters['grad_clip']
305305
else:
306306
grad_clip = None
307-
dropout_rate = hyperparameters.dropout_rate
307+
dropout_rate = hyperparameters['dropout_rate']
308308

309309
# Create shardings for each argument
310310
mesh = jax.sharding.Mesh(jax.devices(), ('batch'))

0 commit comments

Comments
 (0)