Plsek commited on
Commit
31926c6
·
1 Parent(s): 5628d30

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -254,7 +254,7 @@ with col5: decompose = st.button('Decompose', key="decompose")
254
  # Make two columns for plots
255
  _, colA, colB, colC, _ = st.columns([bordersize,1,1,1,bordersize])
256
 
257
- if (uploaded_file is not None) or st.session_state.get("example", True):
258
  # NORMALIZE IMAGE
259
  MIN = np.min(np.where(data == 0, 1, data))
260
  if MIN < 1: data = data / MIN
 
254
  # Make two columns for plots
255
  _, colA, colB, colC, _ = st.columns([bordersize,1,1,1,bordersize])
256
 
257
+ if "data" not in locals():
258
  # NORMALIZE IMAGE
259
  MIN = np.min(np.where(data == 0, 1, data))
260
  if MIN < 1: data = data / MIN