Spaces:
Runtime error
Runtime error
File size: 1,705 Bytes
00c6db8 8ad74f7 5145430 a34ad6e 00c6db8 7fe3481 00c6db8 8ad74f7 c6b7b65 8ad74f7 5145430 b75e210 00c6db8 c7563b2 73b620f c7563b2 00c6db8 73b620f 989daab 73b620f 161b314 00c6db8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
import streamlit as st
import plotly.express as px
from plotly.subplots import make_subplots
from utils import *
########## Title for the Web App ##########
st.title("Text Classification for Service Feedback")
########## Create Input field ##########
feedback = st.text_input('Type your text here', 'The website was user friendly and the agent provided good solutions')
if st.button('Click for predictions!'):
with st.spinner('Generating predictions...'):
topics_prob, sentiment_prob = get_single_prediction(feedback)
bar = px.bar(topics_prob, x='probability', y='topic')
pie = px.pie(sentiment_prob,
values='probability',
names='sentiment',
color_discrete_map={'positive':'rgb(0, 204, 0)',
'negative':'rgb(215, 11, 11)'
},
color='sentiment'
)
st.plotly_chart(bar, use_container_width=True)
st.plotly_chart(pie, use_container_width=True)
st.write("\n")
st.subheader('Or... Upload a csv file if you have a file instead.')
st.write("\n")
st.download_button(
label="Download sample file here",
data=sample_file,
file_name='sample_data.csv',
mime='text/csv',
)
uploaded_file = st.file_uploader("Please upload a csv file with only 1 column of texts.")
if uploaded_file is not None:
with st.spinner('Generating predictions...'):
results = get_multiple_predictions(uploaded_file)
st.download_button(
label="Download results as CSV",
data=results,
file_name='results.csv',
mime='text/csv',
)
|