Spaces:
Runtime error
Runtime error
Removed print statement
Browse files
app.py
CHANGED
|
@@ -124,7 +124,7 @@ def detect_objects(model_name,url_input,image_input,threshold):
|
|
| 124 |
|
| 125 |
#Make prediction
|
| 126 |
processed_output_list = make_prediction(image, feature_extractor, model)
|
| 127 |
-
print("After make_prediction" + str(processed_output_list))
|
| 128 |
processed_outputs = processed_output_list[0]
|
| 129 |
|
| 130 |
#Visualize prediction
|
|
|
|
| 124 |
|
| 125 |
#Make prediction
|
| 126 |
processed_output_list = make_prediction(image, feature_extractor, model)
|
| 127 |
+
# print("After make_prediction" + str(processed_output_list))
|
| 128 |
processed_outputs = processed_output_list[0]
|
| 129 |
|
| 130 |
#Visualize prediction
|