Update app.py
Browse files
app.py
CHANGED
@@ -25,8 +25,10 @@ expander = st.sidebar.expander("About")
|
|
25 |
expander.write("This web app adds spaces, punctation and capitalisation back into the text.")
|
26 |
|
27 |
option = st.sidebar.selectbox(
|
28 |
-
|
29 |
-
(
|
|
|
|
|
30 |
|
31 |
text = st.text_area(f"Corrupted text: ",max_chars=1000, value=option)
|
32 |
|
|
|
25 |
expander.write("This web app adds spaces, punctation and capitalisation back into the text.")
|
26 |
|
27 |
option = st.sidebar.selectbox(
|
28 |
+
"Examples:",
|
29 |
+
("tirsdag var travel for ukrainas president volodymyr zelenskyj på morgenen tok han imot polens statsminister mateusz morawiecki","tirsdagvartravelforukrainaspresidentvolodymyrzelenskyjpåkveldentokhanimotpolensstatsministermateuszmorawiecki","deterikkelettåholderedepåstoreogsmåbokstavermanmåforeksempelhuskestorforbokstavnårmanskriveromkrimhalvøyamenkunbrukelitenforbokstavnårmanhenvisertilenkrimroman","detteerenlitendemosomerlagetavperegilkummervoldhanerenforskersomtidligerejobbetvednasjonalbiblioteketimoirana"))
|
30 |
+
|
31 |
+
st.sidebar.write("You can use the examples above, but for best effect: Copy text from the Internet, and remove spaces, puctation, cases etc. Try to restore the text.")
|
32 |
|
33 |
text = st.text_area(f"Corrupted text: ",max_chars=1000, value=option)
|
34 |
|