leavoigt commited on
Commit
7f93a13
1 Parent(s): 80a32ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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