mirror of https://github.com/hpcaitech/ColossalAI
aibig-modeldata-parallelismdeep-learningdistributed-computingfoundation-modelsheterogeneous-traininghpcinferencelarge-scalemodel-parallelismpipeline-parallelism
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
144 B
8 lines
144 B
7 months ago
|
from .bnb import quantize_model
|
||
|
from .bnb_config import BnbQuantizationConfig
|
||
|
|
||
|
__all__ = [
|
||
|
"BnbQuantizationConfig",
|
||
|
"quantize_model",
|
||
|
]
|