Skip to content

Commit

Permalink
fix activations store innefficiency
Browse files Browse the repository at this point in the history
  • Loading branch information
jbloomAus committed Feb 8, 2024
1 parent 479765b commit 07d38a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sae_training/activations_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def get_data_loader(
# 3. put other 50 % in a dataloader
dataloader = iter(
DataLoader(
mixing_buffer[: mixing_buffer.shape[0] // 2 :],
mixing_buffer[mixing_buffer.shape[0] // 2 :],
batch_size=batch_size,
shuffle=True,
)
Expand Down

0 comments on commit 07d38a0

Please sign in to comment.