nlpblogs commited on
Commit
6a5c18e
·
verified ·
1 Parent(s): bf876c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -15
app.py CHANGED
@@ -30,21 +30,27 @@ with st.sidebar:
30
  st.subheader("Glossary of tags", divider = "red")
31
 
32
 
33
- per = st.checkbox("PER")
34
- if per:
35
- st.write("Person's name")
36
-
37
- org = st.checkbox("ORG")
38
- if org:
39
- st.write("Organization")
40
-
41
- loc = st.checkbox("LOC")
42
- if loc:
43
- st.write("Location")
44
-
45
- misc = st.checkbox("MISC")
46
- if misc:
47
- st.write("Miscellaneous")
 
 
 
 
 
 
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('''