Update README.md
Browse files
README.md
CHANGED
@@ -35,6 +35,13 @@ for entity in sentence.get_spans('ner'):
|
|
35 |
print(entity)
|
36 |
```
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
|
|
|
35 |
print(entity)
|
36 |
```
|
37 |
|
38 |
+
This yields the following output:
|
39 |
+
```
|
40 |
+
Span [5,6]: "Henrique Dias" [− Labels: NOME (0.9735)]
|
41 |
+
Span [31,32]: "Marcelo Arocha" [− Labels: NOME (0.9803)]
|
42 |
+
```
|
43 |
+
|
44 |
+
So, the entities "*Henrique Dias*" (labeled as a **nome**) and "*Marcelo Arocha*" (labeled as a **nome**) are found in the sentence.
|
45 |
|
46 |
|
47 |
|