Spaces:
Runtime error
Runtime error
add introduction
Browse files
app.py
CHANGED
@@ -66,16 +66,35 @@ def read_climate_change_results():
|
|
66 |
sentiment_results, zero_shot_results = read_climate_change_results()
|
67 |
|
68 |
|
69 |
-
#
|
70 |
st.title('Survey Analytic Techniques')
|
71 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
72 |
|
|
|
|
|
|
|
|
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
st.header('Clustering Survey Responders')
|
76 |
st.write('''
|
77 |
-
Having knowledge about different groups of responders can help us to customise our interactions with them.
|
78 |
-
E.g. Within the Financial Institutions we have banks, insurers, and payment services.
|
79 |
We want to be able to cluster survey reponders into various groups based on how their answers.
|
80 |
This can be achieved though **Factor Analysis**.
|
81 |
''')
|
|
|
66 |
sentiment_results, zero_shot_results = read_climate_change_results()
|
67 |
|
68 |
|
69 |
+
# intro to app
|
70 |
st.title('Survey Analytic Techniques')
|
71 |
+
st.write('''
|
72 |
+
Organisations collect lots of data everyday through surveys, to get feedback, understand user behaviour, track trends across time etc.
|
73 |
+
It can be resource intensive to craft a good survey and getting responders to fill in their answers, and we should make full use of the data obtained.
|
74 |
+
Processing and analysing the data is tedious and time consuming but it doesn't have to be!
|
75 |
+
We can employ the help of machines to comb through the data and provide actionable insights.
|
76 |
+
''')
|
77 |
|
78 |
+
st.image('https://images.unsplash.com/photo-1496181133206-80ce9b88a853')
|
79 |
+
st.caption('Photo by [Kari Shea](https://unsplash.com/@karishea) on [Unsplash](https://unsplash.com).')
|
80 |
+
st.write('\n')
|
81 |
+
st.write('\n')
|
82 |
|
83 |
+
st.write('''
|
84 |
+
In this demonstration, we'll be covering
|
85 |
+
- Factor Analysis - Clustering responders based on their answers
|
86 |
+
- Topic Modelling - Uncovering topics from text responses
|
87 |
+
- Zero-shot Classification - Classifying text responses into user-defined labels
|
88 |
+
- Sentiment Analysis - Quantifying sentiment of responders text responses
|
89 |
+
''')
|
90 |
+
st.write('\n')
|
91 |
+
st.write('\n')
|
92 |
+
st.markdown('''---''')
|
93 |
|
94 |
st.header('Clustering Survey Responders')
|
95 |
st.write('''
|
96 |
+
Having knowledge and understanding about different groups of responders can help us to customise our interactions with them.
|
97 |
+
E.g. Within the Financial Institutions we have banks, insurers, and payment services, and they have different structures and behaviours.
|
98 |
We want to be able to cluster survey reponders into various groups based on how their answers.
|
99 |
This can be achieved though **Factor Analysis**.
|
100 |
''')
|