Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ 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_value= 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)
|
@@ -38,8 +38,8 @@ def main():
|
|
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_value= 10)
|
42 |
-
Hostile = st.slider("friendly Observed emotional clime", min_value= 1, max_value= 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)
|
|
|
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_value = 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)
|
|
|
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_value = 10)
|
42 |
+
Hostile = st.slider("friendly Observed emotional clime", min_value = 1, max_value = 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)
|