From 5b306a7388ceaf39e6ea63d8c62e250707e9a7b2 Mon Sep 17 00:00:00 2001 From: Alan Cooney <41682961+alan-cooney@users.noreply.github.com> Date: Thu, 2 Nov 2023 16:03:50 +0800 Subject: [PATCH] Fix parameter ordering --- sparse_autoencoder/train/utils/wandb_sweep_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sparse_autoencoder/train/utils/wandb_sweep_types.py b/sparse_autoencoder/train/utils/wandb_sweep_types.py index e0cc7b77..f59a1ffa 100644 --- a/sparse_autoencoder/train/utils/wandb_sweep_types.py +++ b/sparse_autoencoder/train/utils/wandb_sweep_types.py @@ -190,10 +190,10 @@ class Parameter(Generic[ParamType]): class WandbSweepConfig: """Weights & Biases Sweep Configuration.""" - method: Method - parameters: Parameters + method: Method + apiVersion: str | None = None command: list[Any] | None = None