diff --git a/spacy/syntax/parser.pyx b/spacy/syntax/parser.pyx index 344a13fad..51a3b6be5 100644 --- a/spacy/syntax/parser.pyx +++ b/spacy/syntax/parser.pyx @@ -92,7 +92,10 @@ cdef class Parser: @classmethod def blank(cls, Vocab vocab, moves_class, **cfg): moves = moves_class(vocab.strings, cfg.get('labels', {})) - templates = get_templates(cfg.get('features', tuple())) + if 'features' in cfg: + templates = get_templates(cfg['features']) + else: + templates = tuple() model = ParserModel(templates) return cls(vocab, moves, model, **cfg)