nlpblogs commited on
Commit
bf876c7
·
verified ·
1 Parent(s): 77bbf28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -61,16 +61,17 @@ with st.sidebar:
61
  This is the entity that has been extracted from your text data.
62
  ''')
63
 
64
- with st.expander("start-end"):
65
  st.write('''
66
- This indicates the postiion of the entity in your text data.
67
  ''')
68
-
69
- with st.expander("Limitations and Bias"):
70
  st.write('''
71
- The Named Entity Recognition (NER) model used in this demo app is limited by its training dataset of entity-annotated news articles from a specific span of time. This means that it might not perform excellent for all use cases in different domains. Furthermore, the model may occassionally split words into different parts.
72
  ''')
73
-
 
74
 
75
 
76
 
 
61
  This is the entity that has been extracted from your text data.
62
  ''')
63
 
64
+ with st.expander("start"):
65
  st.write('''
66
+ This is the index of the first character of the entity in your text data.
67
  ''')
68
+
69
+ with st.expander("end"):
70
  st.write('''
71
+ This is the index of the character immediately after the last character of the entity.
72
  ''')
73
+
74
+
75
 
76
 
77