fschwartzer commited on
Commit
52d4b2c
·
verified ·
1 Parent(s): c6e2d2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -23,7 +23,7 @@ html_content = f"""
23
  <div style='width: 20px; height: 40px; background-color: green; margin-right: 1px;'></div>
24
  <div style='width: 20px; height: 40px; background-color: red; margin-right: 1px;'></div>
25
  <div style='width: 20px; height: 40px; background-color: yellow; margin-right: 20px;'></div>
26
- <span style='font-size: 50px; font-weight: normal; font-family: "Kanit", sans-serif;'><strong>NOSTRADAMUS</strong></span>
27
  </div>
28
  <div style='text-align: left; width: 100%;'>
29
  <span style='font-size: 20px; font-weight: normal; color: #333; font-family: "Kanit", sans-serif'>
@@ -40,9 +40,7 @@ st.markdown(html_content, unsafe_allow_html=True)
40
  uploaded_file = st.file_uploader("Carregue um arquivo CSV ou XLSX", type=['csv', 'xlsx'])
41
 
42
  if uploaded_file:
43
- if 'all_anomalies' not in st.session_state:
44
- st.dataframe(st.session_state['all_anomalies'].head())
45
-
46
  with st.spinner('Aplicando modelo de série temporal...'):
47
  # Load the file into a DataFrame
48
  if uploaded_file.name.endswith('.csv'):
 
23
  <div style='width: 20px; height: 40px; background-color: green; margin-right: 1px;'></div>
24
  <div style='width: 20px; height: 40px; background-color: red; margin-right: 1px;'></div>
25
  <div style='width: 20px; height: 40px; background-color: yellow; margin-right: 20px;'></div>
26
+ <span style='font-size: 50px; font-weight: normal; font-family: "Kanit", sans-serif;'>NOSTRADAMUS</span>
27
  </div>
28
  <div style='text-align: left; width: 100%;'>
29
  <span style='font-size: 20px; font-weight: normal; color: #333; font-family: "Kanit", sans-serif'>
 
40
  uploaded_file = st.file_uploader("Carregue um arquivo CSV ou XLSX", type=['csv', 'xlsx'])
41
 
42
  if uploaded_file:
43
+ if 'all_anomalies' not in st.session_state:
 
 
44
  with st.spinner('Aplicando modelo de série temporal...'):
45
  # Load the file into a DataFrame
46
  if uploaded_file.name.endswith('.csv'):