mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
11 lines
274 B
Python
11 lines
274 B
Python
'''Test that nlp.begin_training() doesn't require missing cfg properties.'''
|
|
from __future__ import unicode_literals
|
|
import pytest
|
|
from ... import load as load_spacy
|
|
|
|
@pytest.mark.models('en')
|
|
def test_issue1919():
|
|
nlp = load_spacy('en')
|
|
opt = nlp.begin_training()
|
|
|