mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
update EL training data format in docs (#7839)
* update EL training data format * fix typo * all -1 because reasons
This commit is contained in:
parent
7985e6bb39
commit
47bbc46392
|
@ -451,9 +451,11 @@ doc = nlp("I'm pretty happy about that!")
|
|||
gold_dict = {"cats": {"POSITIVE": 1.0, "NEGATIVE": 0.0}}
|
||||
example = Example.from_dict(doc, gold_dict)
|
||||
|
||||
# Training data for an Entity Linking component
|
||||
# Training data for an Entity Linking component (also requires entities & sentences)
|
||||
doc = nlp("Russ Cochran his reprints include EC Comics.")
|
||||
gold_dict = {"links": {(0, 12): {"Q7381115": 1.0, "Q2146908": 0.0}}}
|
||||
gold_dict = {"entities": [(0, 12, "PERSON")],
|
||||
"links": {(0, 12): {"Q7381115": 1.0, "Q2146908": 0.0}},
|
||||
"sent_starts": [1, -1, -1, -1, -1, -1, -1, -1]}
|
||||
example = Example.from_dict(doc, gold_dict)
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user