mirror of https://github.com/explosion/spaCy.git
Fix support for parser multi-task objectives
This commit is contained in:
parent
323fc26880
commit
0369db75c1
|
@ -373,6 +373,8 @@ cdef class Parser:
|
|||
if losses is None:
|
||||
losses = {}
|
||||
losses.setdefault(self.name, 0.)
|
||||
for multitask in self._multitasks:
|
||||
multitask.update(docs, golds, drop=drop, sgd=sgd)
|
||||
# The probability we use beam update, instead of falling back to
|
||||
# a greedy update
|
||||
beam_update_prob = self.cfg.get('beam_update_prob', 1.0)
|
||||
|
|
Loading…
Reference in New Issue