Stefan Dumitrescu commited on
Commit
859d258
·
1 Parent(s): f2a57c9
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -91,7 +91,10 @@ if Run_Button == True:
91
  i = j
92
  j -= 1
93
 
 
 
94
  spacy_display["ents"].append({"start": start, "end": end, "label": label})
 
95
  i += 1
96
 
97
 
 
91
  i = j
92
  j -= 1
93
 
94
+
95
+
96
  spacy_display["ents"].append({"start": start, "end": end, "label": label})
97
+ print(f"ADD ENTITY: {spacy_display['ent'][-1]}")
98
  i += 1
99
 
100