From 89ad0959009d5ed1de07dc5b5bd1e1fc91d9653f Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Tue, 5 Feb 2019 12:32:20 +0100 Subject: [PATCH] Fix whitespace --- spacy/pipeline.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/pipeline.pyx b/spacy/pipeline.pyx index 38cdbbd92..7a823f1a7 100644 --- a/spacy/pipeline.pyx +++ b/spacy/pipeline.pyx @@ -1070,7 +1070,7 @@ class ClozeMultitask(Pipe): gradient = (prediction - target) / prediction.shape[0] loss = (gradient**2).sum() return float(loss), gradient - + def update(self, docs, golds, drop=0., sgd=None, losses=None): pass