Wilame Lima commited on
Commit
d80f301
·
1 Parent(s): 5355ce3

removeplaceholder

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ with st.spinner("Loading the model..."):
20
 
21
  # input
22
  st.info("Enter the text in the text area below and click on submit to extract the entities")
23
- text = st.text_area(value="John Doe is 44 - male, who presents with a 6 month history of intermittent headaches and dizziness. Headaches are described as throbbing, primarily located on the right side of the head, and are often associated with nausea and photophobia. Episodes last between 2-4 hours and occur 2-3 times per week. No recent changes in medication or lifestyle reported.", label="Enter the text here")
24
  submit = st.button("Submit")
25
 
26
  if text and submit:
 
20
 
21
  # input
22
  st.info("Enter the text in the text area below and click on submit to extract the entities")
23
+ text = st.text_area(label="Enter the text you want to get the entities here", placeholder="Enter the text here")
24
  submit = st.button("Submit")
25
 
26
  if text and submit: