Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -172,12 +172,12 @@ if Run_Button and input_text:
|
|
172 |
else:
|
173 |
entity['masked_word'] = entity['word']
|
174 |
|
175 |
-
df = pd.DataFrame.from_dict(output_comb)
|
176 |
-
cols_to_keep = ['word', 'entity_group', 'score', 'start', 'end']
|
177 |
-
df_final = df[cols_to_keep].loc[:,~df.columns.duplicated()].copy()
|
178 |
|
179 |
-
st.subheader("Recognized Entities")
|
180 |
-
st.dataframe(df_final)
|
181 |
|
182 |
|
183 |
|
|
|
172 |
else:
|
173 |
entity['masked_word'] = entity['word']
|
174 |
|
175 |
+
#df = pd.DataFrame.from_dict(output_comb)
|
176 |
+
#cols_to_keep = ['word', 'entity_group', 'score', 'start', 'end']
|
177 |
+
#df_final = df[cols_to_keep].loc[:,~df.columns.duplicated()].copy()
|
178 |
|
179 |
+
#st.subheader("Recognized Entities")
|
180 |
+
#st.dataframe(df_final)
|
181 |
|
182 |
|
183 |
|