mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
20 lines
501 B
Python
20 lines
501 B
Python
|
# coding: utf8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import pytest
|
||
|
from spacy import registry
|
||
|
from thinc.v2v import Affine
|
||
|
from catalogue import RegistryError
|
||
|
|
||
|
|
||
|
@registry.architectures.register("my_test_function")
|
||
|
def create_model(nr_in, nr_out):
|
||
|
return Affine(nr_in, nr_out)
|
||
|
|
||
|
|
||
|
def test_get_architecture():
|
||
|
arch = registry.architectures.get("my_test_function")
|
||
|
assert arch is create_model
|
||
|
with pytest.raises(RegistryError):
|
||
|
registry.architectures.get("not_an_existing_key")
|