improve aqlm optim

This commit is contained in:
hiyouga
2024-03-05 20:49:50 +08:00
parent d3d3dac707
commit 259af60d28
4 changed files with 7 additions and 3 deletions

View File

@@ -121,6 +121,9 @@ class ModelArguments:
default=False,
metadata={"help": "For debugging purposes, print the status of the parameters in the model."},
)
aqlm_optimization: Optional[bool] = field(
default=False, metadata={"help": "Whether or not to optimize the training performance of AQLM models."}
)
def __post_init__(self):
self.compute_dtype = None