Skip to content

Commit

Permalink
chore: fix small grammar error in QAT error message
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Feb 16, 2024
1 parent 81de55c commit ce49988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concrete/ml/quantization/quantized_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def _raise_qat_import_error(bad_qat_ops: List[Tuple[str, str]]):
"found during calibration do not appear to be quantized. \n\n"
+ "\n".join(
map(
lambda info: f"* Tensor {info[0]}, input of an {info[1]} operation",
lambda info: f"* Tensor {info[0]}, input of a {info[1]} operation",
bad_qat_ops,
)
)
Expand Down

0 comments on commit ce49988

Please sign in to comment.