| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- # Copyright 2024 The HuggingFace Inc. team. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from importlib import metadata
- from typing import TYPE_CHECKING
- from packaging import version
- from .base import HfQuantizer
- if TYPE_CHECKING:
- from ..modeling_utils import PreTrainedModel
- from ..utils.quantization_config import AqlmConfig
- from ..integrations import replace_with_aqlm_linear
- from ..utils import is_accelerate_available, is_aqlm_available, logging
- from ..utils.quantization_config import QuantizationConfigMixin
- logger = logging.get_logger(__name__)
- class AqlmHfQuantizer(HfQuantizer):
- """
- Quantizer of the AQLM method. Enables the loading of prequantized models.
- """
- requires_calibration = True
- quantization_config: "AqlmConfig"
- def __init__(self, quantization_config: QuantizationConfigMixin, **kwargs):
- super().__init__(quantization_config, **kwargs)
- def validate_environment(self, *args, **kwargs):
- if not is_accelerate_available():
- raise ImportError("Using `aqlm` quantization requires Accelerate: `pip install accelerate`")
- if not is_aqlm_available():
- raise ImportError("Using `aqlm` quantization requires AQLM: `pip install aqlm[gpu,cpu]`")
- def _process_model_before_weight_loading(
- self,
- model: "PreTrainedModel",
- **kwargs,
- ):
- replace_with_aqlm_linear(
- model,
- modules_to_not_convert=self.quantization_config.linear_weights_not_to_quantize,
- quantization_config=self.quantization_config,
- )
- @property
- def is_trainable(self) -> bool:
- aqlm_supports_training = version.parse(metadata.version("aqlm")) >= version.parse("1.0.2")
- if aqlm_supports_training:
- return True
- else:
- logger.warning(
- f"Currently installed `aqlm` version ({metadata.version('aqlm')}) doesn't support training. If you wish to train a quantized model, please update `aqlm` with `pip install aqlm>=1.0.2`"
- )
- return False
- def is_serializable(self):
- return True
|