mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
Dont add labels implicitly for parser
This commit is contained in:
parent
1d20e21f3e
commit
05050210f3
|
@ -277,3 +277,10 @@ cdef class DependencyParser(Parser):
|
||||||
head_scores.append(score_head_dict)
|
head_scores.append(score_head_dict)
|
||||||
label_scores.append(score_label_dict)
|
label_scores.append(score_label_dict)
|
||||||
return head_scores, label_scores
|
return head_scores, label_scores
|
||||||
|
|
||||||
|
def _ensure_labels_are_added(self, docs):
|
||||||
|
# This gives the parser a chance to add labels it's missing for a batch
|
||||||
|
# of documents. However, this isn't desirable for the dependency parser,
|
||||||
|
# because we instead have a label frequency cut-off and back off rare
|
||||||
|
# labels to 'dep'.
|
||||||
|
pass
|
||||||
|
|
Loading…
Reference in New Issue
Block a user