From b97c47eafdc06e862a4a460d79ecd7320f52fc35 Mon Sep 17 00:00:00 2001 From: feilong Date: Fri, 17 Dec 2021 21:45:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=A0=BC=E5=BC=8F=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../classification.md" | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git "a/data/1.OpenCV\345\210\235\351\230\266/7.OpenCV\344\270\255\347\232\204\346\267\261\345\272\246\345\255\246\344\271\240/1.\345\233\276\345\203\217\345\210\206\347\261\273/classification.md" "b/data/1.OpenCV\345\210\235\351\230\266/7.OpenCV\344\270\255\347\232\204\346\267\261\345\272\246\345\255\246\344\271\240/1.\345\233\276\345\203\217\345\210\206\347\261\273/classification.md" index 8fd5525..8cd513d 100755 --- "a/data/1.OpenCV\345\210\235\351\230\266/7.OpenCV\344\270\255\347\232\204\346\267\261\345\272\246\345\255\246\344\271\240/1.\345\233\276\345\203\217\345\210\206\347\261\273/classification.md" +++ "b/data/1.OpenCV\345\210\235\351\230\266/7.OpenCV\344\270\255\347\232\204\346\267\261\345\272\246\345\255\246\344\271\240/1.\345\233\276\345\203\217\345\210\206\347\261\273/classification.md" @@ -69,7 +69,9 @@ confidence = out[classId] ``` -## 输出理解错误 +## 选项 + +### 输出理解错误 ```python # output probability, find the right index @@ -78,7 +80,7 @@ confidence = out[1] ``` -## 输出维度理解错误 +### 输出维度理解错误 ```python # output probability, find the right index @@ -87,7 +89,7 @@ confidence = out[classId] ``` -## 输出理解错误2 +### 输出理解错误2 ```python # output probability, find the right index -- GitLab