progress print statements
Browse files
app.py
CHANGED
@@ -167,6 +167,8 @@ def predict_and_analyze(model_name, num_channels, dim, image):
|
|
167 |
activation_1 = normalize_array(activation_1)
|
168 |
activation_2 = normalize_array(activation_2)
|
169 |
|
|
|
|
|
170 |
return output, input_image, activation_1, activation_2
|
171 |
|
172 |
|
|
|
167 |
activation_1 = normalize_array(activation_1)
|
168 |
activation_2 = normalize_array(activation_2)
|
169 |
|
170 |
+
print("Sending to Hugging Face")
|
171 |
+
|
172 |
return output, input_image, activation_1, activation_2
|
173 |
|
174 |
|