import streamlit as st
from src.configs import Languages, PreprocessingConfigs, SupportedFiles
from src.preprocessing import PreprocessingPipeline
from src.wordifier import input_transform, output_transform, wordifier
@st.experimental_memo
def form(df):
with st.form("my_form"):
col1, col2 = st.columns([1, 2])
with col1:
cols = [""] + df.columns.tolist()
label_column = st.selectbox(
"Select label column",
cols,
index=0,
help="Select the column containing the labels",
)
text_column = st.selectbox(
"Select text column",
cols,
index=0,
help="Select the column containing the text",
)
language = st.selectbox(
"Select language",
[i.name for i in Languages],
help="""
Select the language of your texts amongst the supported one. If we currently do
not support it, feel free to open an issue
""",
)
with col2:
steps_options = list(PreprocessingPipeline.pipeline_components().keys())
pre_steps = st.multiselect(
"Select pre-lemmatization processing steps (ordered)",
options=steps_options,
default=[
steps_options[i] for i in PreprocessingConfigs.DEFAULT_PRE.value
],
format_func=lambda x: x.replace("_", " ").title(),
help="Select the processing steps to apply before the text is lemmatized",
)
lammatization_options = list(
PreprocessingPipeline.lemmatization_component().keys()
)
lemmatization_step = st.selectbox(
"Select lemmatization",
options=lammatization_options,
index=PreprocessingConfigs.DEFAULT_LEMMA.value,
help="Select lemmatization procedure",
)
post_steps = st.multiselect(
"Select post-lemmatization processing steps (ordered)",
options=steps_options,
default=[
steps_options[i] for i in PreprocessingConfigs.DEFAULT_POST.value
],
format_func=lambda x: x.replace("_", " ").title(),
help="Select the processing steps to apply after the text is lemmatized",
)
# Every form must have a submit button.
submitted = st.form_submit_button("Submit")
if submitted:
# preprocess
with st.spinner("Step 1/4: Preprocessing text"):
pipe = PreprocessingPipeline(
language, pre_steps, lemmatization_step, post_steps
)
df = pipe.vaex_process(df, text_column)
# prepare input
with st.spinner("Step 2/4: Preparing inputs"):
input_dict = input_transform(df[text_column], df[label_column])
# wordify
with st.spinner("Step 3/4: Wordifying"):
pos, neg = wordifier(**input_dict)
# prepare output
with st.spinner("Step 4/4: Preparing outputs"):
new_df = output_transform(pos, neg)
return new_df
def faq():
st.subheader("Frequently Asked Questions")
with st.expander("What is Wordify?"):
st.markdown(
"""
__Wordify__ is a way to find out which n-grams (i.e., words and concatenations of words) are most indicative for each of your dependent
variable values.
"""
)
with st.expander("What happens to my data?"):
st.markdown(
"""
Nothing. We never store the data you upload on disk: it is only kept in memory for the
duration of the modeling, and then deleted. We do not retain any copies or traces of
your data.
"""
)
with st.expander("What input formats do you support?"):
st.markdown(
f"""
We currently support {", ".join([i.name for i in SupportedFiles])}.
"""
)
with st.expander("What languages are supported?"):
st.markdown(
f"""
Currently we support: {", ".join([i.name for i in Languages])}.
"""
)
with st.expander("How does it work?"):
st.markdown(
"""
It uses a variant of the Stability Selection algorithm
[(Meinshausen and Bühlmann, 2010)](https://rss.onlinelibrary.wiley.com/doi/full/10.1111/j.1467-9868.2010.00740.x)
to fit hundreds of logistic regression models on random subsets of the data, using
different L1 penalties to drive as many of the term coefficients to 0. Any terms that
receive a non-zero coefficient in at least 30% of all model runs can be seen as stable
indicators.
"""
)
with st.expander("What libraries do you use?"):
st.markdown(
"""
We leverage the power of many great libraries in the Python ecosystem:
- `Streamlit`
- `Pandas`
- `Numpy`
- `Spacy`
- `Scikit-learn`
- `Vaex`
"""
)
with st.expander("How much data do I need?"):
st.markdown(
"""
We recommend at least 2000 instances, the more, the better. With fewer instances, the
results are less replicable and reliable.
"""
)
with st.expander("Is there a paper I can cite?"):
st.markdown(
"""
Yes, please! Cite [Wordify: A Tool for Discovering and Differentiating Consumer Vocabularies](https://academic.oup.com/jcr/article/48/3/394/6199426)
```
@article{10.1093/jcr/ucab018,
author = {Hovy, Dirk and Melumad, Shiri and Inman, J Jeffrey},
title = "{Wordify: A Tool for Discovering and Differentiating Consumer Vocabularies}",
journal = {Journal of Consumer Research},
volume = {48},
number = {3},
pages = {394-414},
year = {2021},
month = {03},
abstract = "{This work describes and illustrates a free and easy-to-use online text-analysis tool for understanding how consumer word use varies across contexts. The tool, Wordify, uses randomized logistic regression (RLR) to identify the words that best discriminate texts drawn from different pre-classified corpora, such as posts written by men versus women, or texts containing mostly negative versus positive valence. We present illustrative examples to show how the tool can be used for such diverse purposes as (1) uncovering the distinctive vocabularies that consumers use when writing reviews on smartphones versus PCs, (2) discovering how the words used in Tweets differ between presumed supporters and opponents of a controversial ad, and (3) expanding the dictionaries of dictionary-based sentiment-measurement tools. We show empirically that Wordify’s RLR algorithm performs better at discriminating vocabularies than support vector machines and chi-square selectors, while offering significant advantages in computing time. A discussion is also provided on the use of Wordify in conjunction with other text-analysis tools, such as probabilistic topic modeling and sentiment analysis, to gain more profound knowledge of the role of language in consumer behavior.}",
issn = {0093-5301},
doi = {10.1093/jcr/ucab018},
url = {https://doi.org/10.1093/jcr/ucab018},
eprint = {https://academic.oup.com/jcr/article-pdf/48/3/394/40853499/ucab018.pdf},
}
```
"""
)
with st.expander("How can I reach out to the Wordify team?"):
st.markdown(contacts(), unsafe_allow_html=True)
def presentation():
st.markdown(
"""
Wordify makes it easy to identify words that discriminate categories in textual data.
:point_left: Start by uploading a file. *Once you upload the file, __Wordify__ will
show an interactive UI*.
"""
)
st.subheader("Input format")
st.markdown(
"""
Please note that your file must have a column with the texts and a column with the labels,
for example
"""
)
st.table(
{
"text": ["A review", "Another review", "Yet another one", "etc"],
"label": ["Good", "Bad", "Good", "etc"],
}
)
st.subheader("Output format")
st.markdown(
"""
As a result of the process, you will get a file containing 4 columns:
- `Word`: the n-gram (i.e., a word or a concatenation of words) considered
- `Score`: the wordify score, between 0 and 1, of how important is `Word` to discrimitate `Label`
- `Label`: the label that `Word` is discriminating
- `Correlation`: how `Word` is correlated with `Label` (e.g., "negative" means that if `Word` is present in the text then the label is less likely to be `Label`)
"""
)
def footer():
st.sidebar.markdown(
"""
Built with ♥ by [`Pietro Lesci`](https://pietrolesci.github.io/) and [`MilaNLP`](https://twitter.com/MilaNLProc?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor).
""",
unsafe_allow_html=True,
)
def contacts():
return """
You can reach out to us via email, phone, or via mail
- :email: wordify@unibocconi.it
- :telephone_receiver: +39 02 5836 2604
- :postbox: Via Röntgen n. 1, Milan 20136 (ITALY)
"""
def about():
return """
The wordify team
"""