Default code for Setting Entity annotations on the website errors (#7738)

* the default example for "Setting entity annotations" errors on Binder

* updating contributer info

* using a new variable to store original entities
This commit is contained in:
Shantam Raj 2021-04-21 12:46:32 +05:30 committed by svlandeg
parent 1c1087e4ff
commit 5aac993604
2 changed files with 5 additions and 4 deletions

View File

@ -98,9 +98,9 @@ mark both statements:
| Field | Entry |
|------------------------------- | -------------------- |
| Name | Shantam |
| Name | Shantam Raj |
| Company name (if applicable) | |
| Title or role (if applicable) | |
| Date | 21/5/2018 |
| Date | 10/4/2021 |
| GitHub username | armsp |
| Website (optional) | |
| Website (optional) |https://shantamraj.com|

View File

@ -601,12 +601,13 @@ print('Before', ents)
# Create a span for the new entity
fb_ent = Span(doc, 0, 1, label="ORG")
orig_ents = list(doc.ents)
# Option 1: Modify the provided entity spans, leaving the rest unmodified
doc.set_ents([fb_ent], default="unmodified")
# Option 2: Assign a complete list of ents to doc.ents
doc.ents = list(doc.ents) + [fb_ent]
doc.ents = orig_ents + [fb_ent]
ents = [(e.text, e.start, e.end, e.label_) for e in doc.ents]
print('After', ents)