Skip to content

Commit

Permalink
Fix (examples): typo in bias correction (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfraser authored Feb 9, 2024
1 parent 30238b0 commit 65360f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brevitas_examples/llm/llm_quant/bias_corr.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

@torch.no_grad()
def apply_bias_correction(model, dataloader):
with bias_correction_mode(curr_layer):
with bias_correction_mode(model):
for inps in dataloader:
model(**inps)

0 comments on commit 65360f4

Please sign in to comment.