Kelas commited on
Commit
9a0ca6b
1 Parent(s): bfd8420

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -20
app.py CHANGED
@@ -27,26 +27,26 @@ unique_Proxemics = unique_values["Proxemics"]
27
  def main():
28
  st.title("Non verbal tourists data")
29
  with st.form("questionaire"):
30
- sex = st.selectbox("Sex",options = unique_sex)
31
- age = st.slider("Age",min_value=20,max_values=90)
32
- country = st.selectbox("Country of the client United Nations admitted countries",options = unique_country)
33
- GImg1 = st.selectbox("Handshake Indifferent",options = unique_GImg1)
34
- GImg2 = st.selectbox("Hug Indifferent",options = unique_GImg2)
35
- GImg3 = st.selectbox("Kiss Indifferent",options = unique_GImg3)
36
- PImg1 = st.selectbox("Consent posture Indifferent",options = unique_PImg1)
37
- PImg2 = st.selectbox("Interest posture Indifferent",options = unique_PImg2)
38
- PImg3 = st.selectbox("Neutral posture Indifferent",options = unique_PImg3)
39
- PImg4 = st.selectbox("Reflexive posture Indifferent",options = unique_PImg4)
40
- PImg5 = st.selectbox("Negative posture Indifferent",options = unique_PImg5)
41
- Tense= st.slider("Observed emotional clime",min_value=1,max_values=10)
42
- Hostile = st.slider("friendly Observed emotional clime",min_value=1,max_values=10)
43
- TAudio1 = st.selectbox("Authoritative Indifferent",options = unique_TAudio1)
44
- TAudio2 = st.selectbox("Sarcastic Indifferent",options = unique_TAudio2)
45
- TAudio3 = st.selectbox("Friendly Indifferent",options = unique_TAudio3)
46
- QAudio1 = st.selectbox("Spitting Indifferent",options = unique_QAudio1)
47
- QAudio2 = st.selectbox("Hum Indifferent",options = unique_QAudio1)
48
- QAudio3 = st.selectbox("Sigh Indifferent",options = unique_QAudio1)
49
- Proxemics = st.selectbox("Physical distance preferred for the client",options = unique_Proxemics)
50
  # clicked==True only when the button is clicked
51
  clicked = st.form_submit_button("Predict Type of Client")
52
  if clicked:
 
27
  def main():
28
  st.title("Non verbal tourists data")
29
  with st.form("questionaire"):
30
+ sex = st.selectbox("Sex", options = unique_sex)
31
+ age = st.slider("Age", min_value=20, max_values=90)
32
+ country = st.selectbox("Country of the client United Nations admitted countries", options = unique_country)
33
+ GImg1 = st.selectbox("Handshake Indifferent", options = unique_GImg1)
34
+ GImg2 = st.selectbox("Hug Indifferent", options = unique_GImg2)
35
+ GImg3 = st.selectbox("Kiss Indifferent", options = unique_GImg3)
36
+ PImg1 = st.selectbox("Consent posture Indifferent", options = unique_PImg1)
37
+ PImg2 = st.selectbox("Interest posture Indifferent", options = unique_PImg2)
38
+ PImg3 = st.selectbox("Neutral posture Indifferent", options = unique_PImg3)
39
+ PImg4 = st.selectbox("Reflexive posture Indifferent", options = unique_PImg4)
40
+ PImg5 = st.selectbox("Negative posture Indifferent", options = unique_PImg5)
41
+ Tense= st.slider("Observed emotional clime", min_value=1, max_values=10)
42
+ Hostile = st.slider("friendly Observed emotional clime", min_value=1, max_values=10)
43
+ TAudio1 = st.selectbox("Authoritative Indifferent", options = unique_TAudio1)
44
+ TAudio2 = st.selectbox("Sarcastic Indifferent", options = unique_TAudio2)
45
+ TAudio3 = st.selectbox("Friendly Indifferent", options = unique_TAudio3)
46
+ QAudio1 = st.selectbox("Spitting Indifferent", options = unique_QAudio1)
47
+ QAudio2 = st.selectbox("Hum Indifferent", options = unique_QAudio1)
48
+ QAudio3 = st.selectbox("Sigh Indifferent", options = unique_QAudio1)
49
+ Proxemics = st.selectbox("Physical distance preferred for the client", options = unique_Proxemics)
50
  # clicked==True only when the button is clicked
51
  clicked = st.form_submit_button("Predict Type of Client")
52
  if clicked: