Spaces:
Running
on
Zero
Running
on
Zero
Update image_processor.py
Browse files- image_processor.py +1 -1
image_processor.py
CHANGED
@@ -249,7 +249,7 @@ class ImageProcessor:
|
|
249 |
return None
|
250 |
|
251 |
places365_result = self.places365_model.predict(image)
|
252 |
-
print(f"DEBUG: Places365 raw result: {places365_result}")
|
253 |
|
254 |
if places365_result and places365_result.get('confidence', 0) > 0.1:
|
255 |
print(f"Places365 detected: {places365_result['scene_label']} "
|
|
|
249 |
return None
|
250 |
|
251 |
places365_result = self.places365_model.predict(image)
|
252 |
+
# print(f"DEBUG: Places365 raw result: {places365_result}")
|
253 |
|
254 |
if places365_result and places365_result.get('confidence', 0) > 0.1:
|
255 |
print(f"Places365 detected: {places365_result['scene_label']} "
|