made input figure smaller
Browse files
app.py
CHANGED
@@ -155,7 +155,7 @@ def predict_and_analyze(model_name, num_channels, dim, image):
|
|
155 |
plt.rcParams['xtick.labelsize'] = ticks
|
156 |
plt.rcParams['ytick.labelsize'] = ticks
|
157 |
|
158 |
-
input_fig, ax = plt.subplots(nrows=1, ncols=1, figsize=(
|
159 |
|
160 |
|
161 |
im0 = ax.imshow(input_image, cmap=cmap,
|
|
|
155 |
plt.rcParams['xtick.labelsize'] = ticks
|
156 |
plt.rcParams['ytick.labelsize'] = ticks
|
157 |
|
158 |
+
input_fig, ax = plt.subplots(nrows=1, ncols=1, figsize=(9, 8))
|
159 |
|
160 |
|
161 |
im0 = ax.imshow(input_image, cmap=cmap,
|