osiria commited on
Commit
9249921
1 Parent(s): a27d349

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -57,6 +57,26 @@ ner = pipeline("ner", model = model, tokenizer = tokenizer, aggregation_strategy
57
 
58
  ner("mi chiamo marco rossi, vivo a roma e lavoro per l'agenzia spaziale italiana nella missione prisma")
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  ```
61
 
62
  You can also try the model online using this web app: https://huggingface.co/spaces/osiria/bert-italian-uncased-ner
 
57
 
58
  ner("mi chiamo marco rossi, vivo a roma e lavoro per l'agenzia spaziale italiana nella missione prisma")
59
 
60
+ [{'entity_group': 'PER',
61
+ 'score': 0.9984422,
62
+ 'word': 'marco rossi',
63
+ 'start': 10,
64
+ 'end': 21},
65
+ {'entity_group': 'LOC',
66
+ 'score': 0.9976732,
67
+ 'word': 'roma',
68
+ 'start': 30,
69
+ 'end': 34},
70
+ {'entity_group': 'ORG',
71
+ 'score': 0.99747753,
72
+ 'word': 'agenzia spaziale italiana',
73
+ 'start': 50,
74
+ 'end': 75},
75
+ {'entity_group': 'MISC',
76
+ 'score': 0.96949625,
77
+ 'word': 'prisma',
78
+ 'start': 91,
79
+ 'end': 97}]
80
  ```
81
 
82
  You can also try the model online using this web app: https://huggingface.co/spaces/osiria/bert-italian-uncased-ner