Skip to content

Commit

Permalink
[bugfix][QuantizationScheme] fix string that is read in tuple (#1693)
Browse files Browse the repository at this point in the history
extra comma after string close is read as tuple since line break is made with parenthesis
  • Loading branch information
bfineran committed Jul 28, 2023
1 parent 9b4221e commit 3ec2c16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class QuantizationArgs(BaseModel):
strategy: str = Field(
default="tensor",
description=(
"scope of the quantization to be applied. can be 'tensor' or 'channel'",
"scope of the quantization to be applied. can be 'tensor' or 'channel'"
),
)
kwargs: Dict[str, Any] = Field(
Expand Down

0 comments on commit 3ec2c16

Please sign in to comment.