Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ with st.sidebar:
|
|
30 |
st.subheader("Glossary of tags", divider = "red")
|
31 |
|
32 |
|
33 |
-
per = st.checkbox("
|
34 |
if per:
|
35 |
st.write("Person's name")
|
36 |
|
@@ -42,30 +42,17 @@ with st.sidebar:
|
|
42 |
if loc:
|
43 |
st.write("Location")
|
44 |
|
45 |
-
|
46 |
-
if
|
47 |
-
st.write("
|
48 |
|
49 |
-
|
50 |
-
if ORG:
|
51 |
-
st.write("Beginning of an organisation right after another organization")
|
52 |
-
|
53 |
-
LOC = st.checkbox("B-LOC")
|
54 |
-
if LOC:
|
55 |
-
st.write("Beginning of a location right after another location")
|
56 |
-
|
57 |
-
O = st.checkbox("O")
|
58 |
-
if O:
|
59 |
-
st.write("Outside of a named entity")
|
60 |
|
61 |
|
62 |
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
st.subheader(":blue[AI Entity Extractor]")
|
|
|
|
|
69 |
|
70 |
st.divider()
|
71 |
|
@@ -73,7 +60,7 @@ st.divider()
|
|
73 |
def clear_text():
|
74 |
st.session_state["text"] = ""
|
75 |
|
76 |
-
text = st.text_area("Paste your text here and then press **enter**. The length of your text should not exceed
|
77 |
st.button("Clear text", on_click=clear_text)
|
78 |
st.write(text)
|
79 |
|
@@ -86,10 +73,10 @@ tokens = word_tokenize(text1)
|
|
86 |
st.write("Length", len(tokens))
|
87 |
st.divider()
|
88 |
|
89 |
-
number =
|
90 |
|
91 |
if text is not None and len(tokens) > number:
|
92 |
-
st.warning('The length of your text should not exceed
|
93 |
st.stop()
|
94 |
|
95 |
|
@@ -109,13 +96,11 @@ import io
|
|
109 |
|
110 |
dfa = pd.DataFrame(
|
111 |
data = {
|
112 |
-
'
|
113 |
'ORG': ['Organization'],
|
114 |
'LOC': ['Location'],
|
115 |
-
'
|
116 |
-
|
117 |
-
'B-LOC': ['Beginning of a location right after another location'],
|
118 |
-
'O': ['Outside of a named entity ']
|
119 |
|
120 |
|
121 |
}
|
|
|
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 |
|
|
|
42 |
if loc:
|
43 |
st.write("Location")
|
44 |
|
45 |
+
misc = st.checkbox("MISC")
|
46 |
+
if misc:
|
47 |
+
st.write("Miscellaneous")
|
48 |
|
49 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
|
52 |
|
|
|
|
|
|
|
|
|
|
|
53 |
st.subheader(":blue[AI Entity Extractor]")
|
54 |
+
st.write("made by [nlpblogs](https://nlpblogs.com/)")
|
55 |
+
st.write("Apache 2.0")
|
56 |
|
57 |
st.divider()
|
58 |
|
|
|
60 |
def clear_text():
|
61 |
st.session_state["text"] = ""
|
62 |
|
63 |
+
text = st.text_area("Paste your text here and then press **enter**. The length of your text should not exceed 1000 words.", key="text")
|
64 |
st.button("Clear text", on_click=clear_text)
|
65 |
st.write(text)
|
66 |
|
|
|
73 |
st.write("Length", len(tokens))
|
74 |
st.divider()
|
75 |
|
76 |
+
number = 1000
|
77 |
|
78 |
if text is not None and len(tokens) > number:
|
79 |
+
st.warning('The length of your text should not exceed 1000 words.')
|
80 |
st.stop()
|
81 |
|
82 |
|
|
|
96 |
|
97 |
dfa = pd.DataFrame(
|
98 |
data = {
|
99 |
+
'PER': ['Person'],
|
100 |
'ORG': ['Organization'],
|
101 |
'LOC': ['Location'],
|
102 |
+
'MISC': ['Miscellaneous'],
|
103 |
+
|
|
|
|
|
104 |
|
105 |
|
106 |
}
|