Skip to content

Commit

Permalink
Fix distillation_loss arg typo
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Liu <[email protected]>
  • Loading branch information
austin362667 authored and shivam15s committed Dec 7, 2024
1 parent 5662554 commit 7acb5ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def __init__(
self.temperature = temperature

@abstractmethod
def distillation_loss(self, student_logps, teacher_logps):
def distillation_loss(self, student_logits, teacher_logits):
"""Abstract method for computing distillation loss."""
pass

Expand Down

0 comments on commit 7acb5ca

Please sign in to comment.