quantization.md 1.43 KB
Newer Older
Aryan's avatar
Aryan committed
1
<!--Copyright 2025 The HuggingFace Team. All rights reserved.
2
3
4
5
6
7
8
9
10
11
12
13
14
15

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.

-->

# Quantization

16
Quantization techniques reduce memory and computational costs by representing weights and activations with lower-precision data types like 8-bit integers (int8). This enables loading larger models you normally wouldn't be able to fit into memory, and speeding up inference.
17
18
19
20
21
22
23

<Tip>

Learn how to quantize models in the [Quantization](../quantization/overview) guide.

</Tip>

24
25
26
## PipelineQuantizationConfig

[[autodoc]] quantizers.PipelineQuantizationConfig
27
28
29

## BitsAndBytesConfig

Steven Liu's avatar
Steven Liu committed
30
[[autodoc]] quantizers.quantization_config.BitsAndBytesConfig
31

32
33
## GGUFQuantizationConfig

Steven Liu's avatar
Steven Liu committed
34
[[autodoc]] quantizers.quantization_config.GGUFQuantizationConfig
35
36
37

## QuantoConfig

Steven Liu's avatar
Steven Liu committed
38
[[autodoc]] quantizers.quantization_config.QuantoConfig
39

Aryan's avatar
Aryan committed
40
41
## TorchAoConfig

Steven Liu's avatar
Steven Liu committed
42
[[autodoc]] quantizers.quantization_config.TorchAoConfig
Aryan's avatar
Aryan committed
43

44
45
46
## DiffusersQuantizer

[[autodoc]] quantizers.base.DiffusersQuantizer