Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -30,21 +30,27 @@ with st.sidebar:
|
|
30 |
st.subheader("Glossary of tags", divider = "red")
|
31 |
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
with st.expander("entity_group"):
|
50 |
st.write('''
|
|
|
30 |
st.subheader("Glossary of tags", divider = "red")
|
31 |
|
32 |
|
33 |
+
|
34 |
+
|
35 |
+
with st.expander("PER"):
|
36 |
+
st.write('''
|
37 |
+
Person's name
|
38 |
+
''')
|
39 |
+
|
40 |
+
with st.expander("ORG"):
|
41 |
+
st.write('''
|
42 |
+
Organization name
|
43 |
+
''')
|
44 |
+
|
45 |
+
with st.expander("LOC"):
|
46 |
+
st.write('''
|
47 |
+
Location name
|
48 |
+
''')
|
49 |
+
|
50 |
+
with st.expander("MISC"):
|
51 |
+
st.write('''
|
52 |
+
Miscellaneous
|
53 |
+
''')
|
54 |
|
55 |
with st.expander("entity_group"):
|
56 |
st.write('''
|