You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
448 B
17 lines
448 B
import pytest
|
|
from catalogue import RegistryError
|
|
from thinc.api import Linear
|
|
|
|
from spacy import registry
|
|
|
|
|
|
def test_get_architecture():
|
|
@registry.architectures("my_test_function")
|
|
def create_model(nr_in, nr_out):
|
|
return Linear(nr_in, nr_out)
|
|
|
|
arch = registry.architectures.get("my_test_function")
|
|
assert arch is create_model
|
|
with pytest.raises(RegistryError):
|
|
registry.architectures.get("not_an_existing_key")
|