Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ def plot_prediction(pred):
|
|
| 61 |
# Define function to plot the decomposed prediction
|
| 62 |
def plot_decomposed(decomposed):
|
| 63 |
plt.figure(figsize=(4, 4))
|
| 64 |
-
plt.imshow(decomposed, origin="lower"
|
| 65 |
|
| 66 |
N = int(np.max(decomposed))
|
| 67 |
for i in range(N):
|
|
|
|
| 61 |
# Define function to plot the decomposed prediction
|
| 62 |
def plot_decomposed(decomposed):
|
| 63 |
plt.figure(figsize=(4, 4))
|
| 64 |
+
plt.imshow(decomposed, origin="lower") #, norm=LogNorm())
|
| 65 |
|
| 66 |
N = int(np.max(decomposed))
|
| 67 |
for i in range(N):
|