Skip to content

Commit

Permalink
default to None
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
  • Loading branch information
kylesayrs committed Dec 18, 2024
1 parent 1fa514a commit 9e70a06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/compressed_tensors/quantization/quant_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ class QuantizationArgs(BaseModel, use_enum_values=True):
dynamic: bool = False
actorder: Union[ActivationOrdering, bool, None] = None
observer: Optional[str] = Field(
default="minmax",
default=None,
description=(
"The class to use to compute the quantization param - "
"scale and zero-point'"
"Determines the method of computing quantization parameters (scales and "
"zero-points). Defaults to min-max when not using dynamic quantization"
),
)
observer_kwargs: Dict[str, Any] = Field(
Expand Down

0 comments on commit 9e70a06

Please sign in to comment.