emanuelaboros commited on
Commit
c619232
·
1 Parent(s): ac886a9

update app

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,5 +1,5 @@
1
  import gradio as gr
2
- from transformers import pipeline, AutoModelForTokenClassification, AutoTokenizer
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
- # Appending each entity's word, start and end for highlighting, including the entity label and score
 
 
 
 
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"],