Update app.py
Browse files
app.py
CHANGED
@@ -22,8 +22,9 @@ def deuncase(model, tokenizer, text):
|
|
22 |
|
23 |
st.title("DeUnCaser")
|
24 |
|
25 |
-
st.sidebar.
|
26 |
-
|
|
|
27 |
|
28 |
|
29 |
option = st.sidebar.selectbox(
|
|
|
22 |
|
23 |
st.title("DeUnCaser")
|
24 |
|
25 |
+
expander = st.sidebar.expander("About")
|
26 |
+
expander.write("This web app adds spaces, punctation and capitalisation back into the text.")
|
27 |
+
expander.write("You can use the examples below, but too really test the effect of the model: Write or copy text from the Internet, and then manually remove spaces, puctation, cases etc. Try to restore the text.")
|
28 |
|
29 |
|
30 |
option = st.sidebar.selectbox(
|