mirror of https://github.com/hpcaitech/ColossalAI
8 lines
144 B
Python
8 lines
144 B
Python
|
from .bnb import quantize_model
|
||
|
from .bnb_config import BnbQuantizationConfig
|
||
|
|
||
|
__all__ = [
|
||
|
"BnbQuantizationConfig",
|
||
|
"quantize_model",
|
||
|
]
|