Commit
·
c619232
1
Parent(s):
ac886a9
update app
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import pipeline,
|
3 |
|
4 |
# Define the model name
|
5 |
MODEL_NAME = "impresso-project/ner-stacked-bert-multilingual"
|
@@ -21,7 +21,11 @@ def prepare_entities_for_highlight(text, results):
|
|
21 |
entities = []
|
22 |
for category, entity_list in results.items():
|
23 |
for entity in entity_list:
|
24 |
-
#
|
|
|
|
|
|
|
|
|
25 |
entities.append(
|
26 |
{
|
27 |
"start": entity["start"],
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import pipeline, AutoTokenizer
|
3 |
|
4 |
# Define the model name
|
5 |
MODEL_NAME = "impresso-project/ner-stacked-bert-multilingual"
|
|
|
21 |
entities = []
|
22 |
for category, entity_list in results.items():
|
23 |
for entity in entity_list:
|
24 |
+
# Debugging information to check character positions
|
25 |
+
print(
|
26 |
+
f"Entity: {entity['word']}, Start: {entity['start']}, End: {entity['end']}"
|
27 |
+
)
|
28 |
+
# Append entity with character indices
|
29 |
entities.append(
|
30 |
{
|
31 |
"start": entity["start"],
|