Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -66,4 +66,5 @@ else:
|
|
66 |
|
67 |
with st.expander("See first convolutional layer"):
|
68 |
rgb = np.repeat(np.expand_dims(np.array(params["Conv_0"]["kernel"].squeeze()[:,:,0]+1)*127., axis=0), repeats=3, axis=0)
|
|
|
69 |
st.image(Image.fromarray(rgb, mode="RGB").resize((28, 28)))
|
|
|
66 |
|
67 |
with st.expander("See first convolutional layer"):
|
68 |
rgb = np.repeat(np.expand_dims(np.array(params["Conv_0"]["kernel"].squeeze()[:,:,0]+1)*127., axis=0), repeats=3, axis=0)
|
69 |
+
print(rgb)
|
70 |
st.image(Image.fromarray(rgb, mode="RGB").resize((28, 28)))
|