Update app.py
Browse files
app.py
CHANGED
@@ -54,9 +54,9 @@ references to vulnerable groups, for example when talking about policy documents
|
|
54 |
#col1, col2 = st.columns(2)
|
55 |
|
56 |
# Create text input box
|
57 |
-
input_text = st.text_area(label='Please enter your text here',
|
58 |
|
59 |
-
st.write('Prediction:', predict(
|
60 |
|
61 |
# Create the output box
|
62 |
#output=""
|
|
|
54 |
#col1, col2 = st.columns(2)
|
55 |
|
56 |
# Create text input box
|
57 |
+
input_text = st.text_area(label='Please enter your text here', value="Example")
|
58 |
|
59 |
+
st.write('Prediction:', predict(input_text))
|
60 |
|
61 |
# Create the output box
|
62 |
#output=""
|