From e1354d33c9203debf236c6285fee8363130f6c52 Mon Sep 17 00:00:00 2001 From: Kazuki1450 Date: Thu, 9 Jan 2025 19:53:56 +0900 Subject: [PATCH] fix: typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8d13b6..6b88b50 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ import torch from q_attack.backdoor_removal.bnb import compute_box_4bit, compute_box_int8 weight_dummy = torch.randn(32, 32).cuda() -# constraint w.r.t NF4 +# constraint w.r.t. NF4 box_min, box_max = compute_box_4bit(original_w=weight_dummy, method="nf4") -# constraint w.r.t LLM.int8() +# constraint w.r.t. LLM.int8() box_min, box_max = compute_box_int8(original_w=weight_dummy) ```