Skip to content

Commit

Permalink
Fix regression on Processor.save_pretrained caused by #31691 (#32921)
Browse files Browse the repository at this point in the history
fix save_pretrained
  • Loading branch information
leloykun committed Aug 22, 2024
1 parent 18199b3 commit 273c0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transformers/processing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def save_pretrained(self, save_directory, push_to_hub: bool = False, **kwargs):
token=kwargs.get("token"),
)

if set(self.to_dict().keys()) == {"processor_class"}:
if set(processor_dict.keys()) == {"processor_class"}:
return []
return [output_processor_file]

Expand Down

0 comments on commit 273c0af

Please sign in to comment.