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