spaCy/spacy/tests/regression/test_issue617.py

12 lines
204 B
Python
Raw Normal View History

2017-01-10 21:24:10 +03:00
# coding: utf-8
from __future__ import unicode_literals
from ...vocab import Vocab
def test_load_vocab_with_string():
2016-11-11 00:48:10 +03:00
try:
vocab = Vocab.load('/tmp/vocab')
except IOError:
pass