initial model commit
Browse files
README.md
CHANGED
@@ -72,9 +72,9 @@ for entity in sentence.get_spans('ner'):
|
|
72 |
|
73 |
This yields the following output:
|
74 |
```
|
75 |
-
Span [2,3]: "September 1st" [β Labels: DATE (0.
|
76 |
-
Span [4,5]: "George Washington" [β Labels: PERSON (0.
|
77 |
-
Span [7,8]: "1 dollar" [β Labels: MONEY (0.
|
78 |
```
|
79 |
|
80 |
So, the entities "*September 1st*" (labeled as a **date**), "*George Washington*" (labeled as a **person**) and "*1 dollar*" (labeled as a **money**) are found in the sentence "*On September 1st George Washington won 1 dollar*".
|
|
|
72 |
|
73 |
This yields the following output:
|
74 |
```
|
75 |
+
Span [2,3]: "September 1st" [β Labels: DATE (0.9655)]
|
76 |
+
Span [4,5]: "George Washington" [β Labels: PERSON (0.8243)]
|
77 |
+
Span [7,8]: "1 dollar" [β Labels: MONEY (0.8022)]
|
78 |
```
|
79 |
|
80 |
So, the entities "*September 1st*" (labeled as a **date**), "*George Washington*" (labeled as a **person**) and "*1 dollar*" (labeled as a **money**) are found in the sentence "*On September 1st George Washington won 1 dollar*".
|