Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ from huggingface_hub import from_pretrained_keras
|
|
29 |
def plot_image(image, scale):
|
30 |
plt.figure(figsize=(4, 4))
|
31 |
x0 = image.shape[0] // 2 - scale * 128 / 2
|
32 |
-
plt.imshow(image, origin="lower"
|
33 |
plt.gca().add_patch(Rectangle((x0-0.5, x0-0.5), scale*128, scale*128, linewidth=1, edgecolor='w', facecolor='none'))
|
34 |
plt.axis('off')
|
35 |
plt.tight_layout()
|
@@ -195,7 +195,6 @@ with col_1:
|
|
195 |
with col_2:
|
196 |
st.markdown("<br style='margin:15px 0'>", unsafe_allow_html=True)
|
197 |
example = st.button("Example", key="example")
|
198 |
-
st.markdown('<style>div.row-widget.stButton > div{margin-left: auto;}</style>', unsafe_allow_html=True)
|
199 |
|
200 |
# with col_2:
|
201 |
# st.markdown("### Examples")
|
@@ -226,7 +225,7 @@ if st.session_state.get("example", True):
|
|
226 |
data, wcs = load_file(f"{fname}.fits")
|
227 |
|
228 |
if "data" not in locals():
|
229 |
-
data = np.
|
230 |
|
231 |
# Make six columns for buttons
|
232 |
_, col1, col2, col3, col4, col5, col6, _ = st.columns([bordersize,0.5,0.5,0.5,0.5,0.5,0.5,bordersize])
|
|
|
29 |
def plot_image(image, scale):
|
30 |
plt.figure(figsize=(4, 4))
|
31 |
x0 = image.shape[0] // 2 - scale * 128 / 2
|
32 |
+
plt.imshow(np.log10(image+1), origin="lower") #, norm=LogNorm())
|
33 |
plt.gca().add_patch(Rectangle((x0-0.5, x0-0.5), scale*128, scale*128, linewidth=1, edgecolor='w', facecolor='none'))
|
34 |
plt.axis('off')
|
35 |
plt.tight_layout()
|
|
|
195 |
with col_2:
|
196 |
st.markdown("<br style='margin:15px 0'>", unsafe_allow_html=True)
|
197 |
example = st.button("Example", key="example")
|
|
|
198 |
|
199 |
# with col_2:
|
200 |
# st.markdown("### Examples")
|
|
|
225 |
data, wcs = load_file(f"{fname}.fits")
|
226 |
|
227 |
if "data" not in locals():
|
228 |
+
data = np.ones((128,128)) * (-1)
|
229 |
|
230 |
# Make six columns for buttons
|
231 |
_, col1, col2, col3, col4, col5, col6, _ = st.columns([bordersize,0.5,0.5,0.5,0.5,0.5,0.5,bordersize])
|