We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70d054 commit 32622b1Copy full SHA for 32622b1
src/llmcompressor/modifiers/awq/base.py
@@ -16,6 +16,11 @@
16
17
from llmcompressor.core import Event, EventType, State
18
from llmcompressor.modifiers import Modifier
19
+from llmcompressor.modifiers.awq.mappings import (
20
+ AWQMapping,
21
+ ResolvedMapping,
22
+ get_layer_mappings_from_architecture,
23
+)
24
from llmcompressor.modifiers.quantization.calibration import update_weight_zp_scale
25
from llmcompressor.modifiers.quantization.quantization import QuantizationMixin
26
from llmcompressor.modifiers.utils.hooks import HooksMixin
@@ -27,8 +32,6 @@
27
32
get_parent_by_name,
28
33
)
29
34
30
-from .mappings import AWQMapping, ResolvedMapping, get_layer_mappings_from_architecture
31
-
35
__all__ = ["AWQModifier"]
36
37
0 commit comments