mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
09cec3e41b
* Replace functions registries with catalogue * Update __init__.py * Fix test * Revert unrelated flag [ci skip]
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")
|