Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -32,8 +32,9 @@ for j in range(6):
|
|
| 32 |
norm_weights = scaler.fit_transform(weights)
|
| 33 |
plt.subplot(2,3,j+1)
|
| 34 |
plt.imshow(norm_weights,cmap='gray')
|
| 35 |
-
plt.title(f"Conv Layer")
|
|
|
|
| 36 |
plt.axis('off')
|
| 37 |
plt.tight_layout()
|
| 38 |
-
plt.
|
| 39 |
|
|
|
|
| 32 |
norm_weights = scaler.fit_transform(weights)
|
| 33 |
plt.subplot(2,3,j+1)
|
| 34 |
plt.imshow(norm_weights,cmap='gray')
|
| 35 |
+
#plt.title(f"Conv Layer")
|
| 36 |
+
plt.title(f"Filter {j}")
|
| 37 |
plt.axis('off')
|
| 38 |
plt.tight_layout()
|
| 39 |
+
st.pyplot(plt.gcf())
|
| 40 |
|