add dequantize option to mlx_lm/convert.py (#547)

This commit is contained in:
Alwin Arrasyid
2024-03-20 09:50:08 +07:00
committed by GitHub
parent 6f2fd5daea
commit 6c3d4c8ba2
2 changed files with 17 additions and 0 deletions

View File

@@ -42,6 +42,13 @@ def configure_parser() -> argparse.ArgumentParser:
type=str,
default=None,
)
parser.add_argument(
"-d",
"--dequantize",
help="Dequantize a quantized model.",
action="store_true",
default=False,
)
return parser