added print statements because I am really confused
Browse files
app.py
CHANGED
@@ -149,6 +149,7 @@ def predict_and_analyze(model_name, num_channels, dim, image):
|
|
149 |
image = np.load(image.name, allow_pickle=True)
|
150 |
|
151 |
image = image.reshape((num_channels, W, W))
|
|
|
152 |
|
153 |
# W = int(np.sqrt(image.shape[1]))
|
154 |
|
|
|
149 |
image = np.load(image.name, allow_pickle=True)
|
150 |
|
151 |
image = image.reshape((num_channels, W, W))
|
152 |
+
print(image)
|
153 |
|
154 |
# W = int(np.sqrt(image.shape[1]))
|
155 |
|