Skip to content

Commit

Permalink
Add missing batch size argument
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkarvonen committed Dec 4, 2024
1 parent e0cb629 commit 877f2e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom_saes/run_all_evals_custom_saes.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ def run_evals(
"unlearning": (
lambda: unlearning.run_eval(
unlearning.UnlearningEvalConfig(
model_name="gemma-2-2b-it", random_seed=RANDOM_SEED, llm_dtype=llm_dtype
model_name="gemma-2-2b-it",
random_seed=RANDOM_SEED,
llm_dtype=llm_dtype,
llm_batch_size=llm_batch_size,
),
selected_saes,
device,
Expand Down

0 comments on commit 877f2e7

Please sign in to comment.