osbm commited on
Commit
1150ee7
·
1 Parent(s): 72bac2a
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -8,9 +8,6 @@ if not os.path.exists("data/"):
8
  os.system("rm data/human-segmentation-dataset.zip")
9
 
10
 
11
-
12
-
13
-
14
  import streamlit as st
15
  import pandas as pd
16
  import numpy as np
@@ -29,6 +26,9 @@ voters = [
29
  "volunteer-5",
30
  ]
31
 
 
 
 
32
 
33
  with st.form("images"):
34
 
 
8
  os.system("rm data/human-segmentation-dataset.zip")
9
 
10
 
 
 
 
11
  import streamlit as st
12
  import pandas as pd
13
  import numpy as np
 
26
  "volunteer-5",
27
  ]
28
 
29
+ # read all the environment variables
30
+ st.write("Environment variables")
31
+ st.write(os.environ)
32
 
33
  with st.form("images"):
34