Skip to content

Commit 389bb3a

Browse files
committed
docs: 번역어 통일 - '오차 행렬'을 '혼동 행렬'로 통일
1 parent e50899c commit 389bb3a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

intermediate_source/tiatoolbox_tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ PatchPredictor 클래스는 PyTorch로 작성된 CNN 기반 분류기를 실행
381381
~~~~~~~~~~~~~~~~~~~~
382382

383383
예측기(predictor) 객체를 생성한 후 ``patch`` 모드를 사용하여 ``predict`` 메소드를 호출합니다.
384-
그런 다음, 분류 정확도와 오차 행렬(confusion matrix)을 계산합니다.
384+
그런 다음, 분류 정확도와 혼동 행렬(confusion matrix)을 계산합니다.
385385

386386

387387

@@ -395,7 +395,7 @@ PatchPredictor 클래스는 PyTorch로 작성된 CNN 기반 분류기를 실행
395395
acc = accuracy_score(label_list, output["predictions"])
396396
logger.info("Classification accuracy: %f", acc)
397397
398-
# 패치 분류 결과를 위한 오차 행렬(confusion_matrix) 생성 및 시각화
398+
# 패치 분류 결과를 위한 혼동 행렬(confusion_matrix) 생성 및 시각화
399399
conf = confusion_matrix(label_list, output["predictions"], normalize="true")
400400
df_cm = pd.DataFrame(conf, index=class_names, columns=class_names)
401401
df_cm

0 commit comments

Comments
 (0)