From 72fb597c61963562299fa656d4826e23d9e53b48 Mon Sep 17 00:00:00 2001 From: 22dimensions <33222038+22dimensions@users.noreply.github.com> Date: Thu, 21 Nov 2024 02:39:34 +0800 Subject: [PATCH] fix typo of README.md (#1318) --- torchao/quantization/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchao/quantization/README.md b/torchao/quantization/README.md index 94f377cea9..022fe7d916 100644 --- a/torchao/quantization/README.md +++ b/torchao/quantization/README.md @@ -96,7 +96,7 @@ be applied individually. While there are a large variety of quantization apis, t from torchao.quantization import quantize_, int4_weight_only group_size = 32 -# you can enable [hqq](https://ithub.com/mobiusml/hqq/tree/master) quantization which is expected to improves accuracy through +# you can enable [hqq](https://github.com/mobiusml/hqq/tree/master) quantization which is expected to improves accuracy through # use_hqq flag for `int4_weight_only` quantization use_hqq = False quantize_(model, int4_weight_only(group_size=group_size, use_hqq=use_hqq))