Update app.py
Browse files
app.py
CHANGED
@@ -26,19 +26,26 @@ st.title("DeUnCaser")
|
|
26 |
st.sidebar.write("This web app adds spaces, punctation and capitalisation back into the text.")
|
27 |
st.sidebar.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 use the buttons to remove spaces, puctation, cases etc. Try to restore the text.")
|
28 |
|
29 |
-
|
30 |
"Examples:",
|
31 |
-
("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"))
|
|
|
32 |
|
33 |
col1, col2, col3 = st.columns([1,1,1])
|
34 |
with col1:
|
35 |
-
st.button('Remove Casing')
|
36 |
with col2:
|
37 |
-
st.button('Remove Punctation')
|
38 |
with col3:
|
39 |
-
st.button('Remove Spaces')
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
text = st.text_area(f"",max_chars=1000, value=
|
42 |
|
43 |
run = st.button('Run DeUnCaser')
|
44 |
|
|
|
26 |
st.sidebar.write("This web app adds spaces, punctation and capitalisation back into the text.")
|
27 |
st.sidebar.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 use the buttons to remove spaces, puctation, cases etc. Try to restore the text.")
|
28 |
|
29 |
+
option = st.sidebar.selectbox(
|
30 |
"Examples:",
|
31 |
+
("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", "sentpå60talletvardetfaktisknoensomkalteungensinperegilkummervoldidagerdetikkelengersåvanligåbrukedobbeltnavninorgehvasynesduomdet"))
|
32 |
+
|
33 |
|
34 |
col1, col2, col3 = st.columns([1,1,1])
|
35 |
with col1:
|
36 |
+
uncase=st.button('Remove Casing')
|
37 |
with col2:
|
38 |
+
unpunct=st.button('Remove Punctation')
|
39 |
with col3:
|
40 |
+
unspace=st.button('Remove Spaces')
|
41 |
+
|
42 |
+
if uncase:
|
43 |
+
mytext = mytext.lower()
|
44 |
+
elif unpunct:
|
45 |
+
mytext = mytext.replace('.', ' ')
|
46 |
+
|
47 |
|
48 |
+
text = st.text_area(f"",max_chars=1000, value=mytext)
|
49 |
|
50 |
run = st.button('Run DeUnCaser')
|
51 |
|