Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -128,6 +128,10 @@ def get_pipeline(text):
|
|
128 |
|
129 |
text= st.text_input("Type here your text and press enter to run:", value="12 Corazones ('12 Hearts') is Spanish-language dating game show produced in the United States for the television network Telemundo since January 2005, based on its namesake Argentine TV show format. The show is filmed in Los Angeles and revolves around the twelve Zodiac signs that identify each contestant. In 2008, Ho filmed a cameo in the Steven Spielberg feature film The Cloverfield Paradox, as a news pundit.")
|
130 |
|
|
|
|
|
|
|
|
|
131 |
result= get_pipeline(text)
|
132 |
|
133 |
#Displaying Ner Visualization
|
@@ -144,3 +148,4 @@ labels = st.sidebar.multiselect(
|
|
144 |
|
145 |
show_html2(text, df, labels, "Text annotated with identified Named Entities")
|
146 |
|
|
|
|
128 |
|
129 |
text= st.text_input("Type here your text and press enter to run:", value="12 Corazones ('12 Hearts') is Spanish-language dating game show produced in the United States for the television network Telemundo since January 2005, based on its namesake Argentine TV show format. The show is filmed in Los Angeles and revolves around the twelve Zodiac signs that identify each contestant. In 2008, Ho filmed a cameo in the Steven Spielberg feature film The Cloverfield Paradox, as a news pundit.")
|
130 |
|
131 |
+
#placeholder for loading warning
|
132 |
+
placeholder= st.empty()
|
133 |
+
placeholder.text("processing text...")
|
134 |
+
|
135 |
result= get_pipeline(text)
|
136 |
|
137 |
#Displaying Ner Visualization
|
|
|
148 |
|
149 |
show_html2(text, df, labels, "Text annotated with identified Named Entities")
|
150 |
|
151 |
+
placeholder.empty()
|