Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion model_compression_toolkit/gptq/common/gptq_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __post_init__(self):
raise ValueError(f'Expected start_step >= 0. received {self.start_step}.')
if self.end_step is not None and self.end_step <= self.start_step:
raise ValueError('Expected start_step < end_step, '
'received end_step {self.end_step} and start_step {self.start_stap}.')
f'received end_step {self.end_step} and start_step {self.start_step}.')


@dataclass
Expand Down