Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -118,7 +118,7 @@ def detect_clothing_onnx(image):
|
|
118 |
if isinstance(conf, np.ndarray):
|
119 |
conf = np.max(conf) # 배열에서 최대 신뢰도 값
|
120 |
|
121 |
-
if conf > 0.
|
122 |
category = onnx_model_labels[int(cls)]
|
123 |
categories.append({
|
124 |
'category': category,
|
|
|
118 |
if isinstance(conf, np.ndarray):
|
119 |
conf = np.max(conf) # 배열에서 최대 신뢰도 값
|
120 |
|
121 |
+
if conf > 0.3: # 신뢰도 임계값 설정
|
122 |
category = onnx_model_labels[int(cls)]
|
123 |
categories.append({
|
124 |
'category': category,
|