Update app.py
Browse files
app.py
CHANGED
@@ -51,6 +51,10 @@ st.write("This app allows you to identify whether a text contains any references
|
|
51 |
# Create text input box
|
52 |
input_text = st.text_area('Please enter your text here')
|
53 |
|
|
|
|
|
|
|
|
|
54 |
# Make predictions
|
55 |
preds = model(input_text)
|
56 |
|
|
|
51 |
# Create text input box
|
52 |
input_text = st.text_area('Please enter your text here')
|
53 |
|
54 |
+
# Create the output box
|
55 |
+
output=""
|
56 |
+
st.text_area(label="Output Data:", value=output, height=350)
|
57 |
+
|
58 |
# Make predictions
|
59 |
preds = model(input_text)
|
60 |
|