kargaranamir HF Staff commited on
Commit
dd1de5a
·
1 Parent(s): 8d072c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -73,7 +73,7 @@ with st.form(key="my_form"):
73
  submit_button = st.form_submit_button(label="✨ Extract Temporal Markers!")
74
 
75
  if submit_button:
76
- result = extract_temporal_markers(doc, ner)
77
  st.write("") # Add vertical spacing
78
  st.markdown("## **🎈Check results**")
79
  st.code(result, height=300) # Adjust the height here
 
73
  submit_button = st.form_submit_button(label="✨ Extract Temporal Markers!")
74
 
75
  if submit_button:
76
+ result = ner(doc)
77
  st.write("") # Add vertical spacing
78
  st.markdown("## **🎈Check results**")
79
  st.code(result, height=300) # Adjust the height here