From 655721a9f15bc8bd120323c1fa2a623986e949fb Mon Sep 17 00:00:00 2001 From: rltq Date: Wed, 6 May 2026 13:02:25 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20=EB=B2=88=EC=97=AD=20=EA=B0=9C=EC=84=A0?= =?UTF-8?q?=20-=20pruning=20=EB=88=84=EB=9D=BD=20=EB=B3=B4=EC=99=84?= =?UTF-8?q?=ED=95=98=EC=97=AC=20=EC=9D=98=EB=AF=B8=20=EB=AA=85=ED=99=95?= =?UTF-8?q?=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advanced_source/semi_structured_sparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced_source/semi_structured_sparse.py b/advanced_source/semi_structured_sparse.py index f7336189f..0f0940d28 100644 --- a/advanced_source/semi_structured_sparse.py +++ b/advanced_source/semi_structured_sparse.py @@ -491,7 +491,7 @@ def measure_execution_time(model, batch_sizes, dataset): ###################################################################### -# 모델의 매개변수화는 첫 번째 단계는 모델의 가중치를 마스킹하기 위한 매개변수화를 삽입하는 것입니다. +# 모델의 가지치기를 위한 첫번째 단계는 모델의 가중치를 마스킹하기 위한 매개변수화를 삽입하는 것입니다. # 이는 준비 단계에서 수행됩니다. 이렇게 하면 ``.weight``에 접근할 때마다 대신 ``mask * weight``를 # 얻게 됩니다. #