Update app.py
Browse files
app.py
CHANGED
@@ -179,11 +179,12 @@ if st.button("Results"):
|
|
179 |
data={
|
180 |
'Column Name': ['word', 'entity_group','score', 'start', 'end'],
|
181 |
'Description': [
|
182 |
-
'entity extracted from your text data',
|
183 |
-
'
|
184 |
-
'
|
185 |
-
'
|
186 |
-
'index of the
|
|
|
187 |
]
|
188 |
}
|
189 |
)
|
|
|
179 |
data={
|
180 |
'Column Name': ['word', 'entity_group','score', 'start', 'end'],
|
181 |
'Description': [
|
182 |
+
'text': 'entity extracted from your text data',
|
183 |
+
'score': 'accuracy score; how accurately a tag has been assigned to a given entity',
|
184 |
+
'label': 'label (tag) assigned to a given extracted entity',
|
185 |
+
'category': 'the high-level category for the label',
|
186 |
+
'start': 'index of the start of the corresponding entity',
|
187 |
+
'end': 'index of the end of the corresponding entity'
|
188 |
]
|
189 |
}
|
190 |
)
|