示例#1
0
def test_add_lambda_override():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    r.add(lambda x: x, name="bar")

    assert "bar" in r._factories
示例#2
0
def test_add_function_name_override():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    r.add(foo, name="bar")

    assert "bar" in r._factories
示例#3
0
def test_add_function():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    r.add(foo)

    assert "foo" in r._factories
示例#4
0
def test_kwargs():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    r.add(bar=foo)

    r.get("bar")
示例#5
0
def test_double_add_same_nofail():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")
    r.add(foo)
    # It's ok to add same twice, forced by python relative import
    # implementation
    # https://github.com/catalyst-team/catalyst/issues/135
    r.add(foo)
示例#6
0
def _engines_loader(r: registry.Registry):
    from catalyst.core.engine import IEngine

    r.add(IEngine)

    from catalyst import engines as m  # noqa: WPS347

    r.add_from_module(m)
示例#7
0
def _callbacks_loader(r: registry.Registry):
    from catalyst.core.callback import Callback, CallbackWrapper

    r.add(Callback)
    r.add(CallbackWrapper)

    from catalyst import callbacks as m  # noqa: WPS347

    r.add_from_module(m)
示例#8
0
def _runners_loader(r: registry.Registry):
    from catalyst.core.runner import IRunner

    r.add(IRunner)
    r.add(IRunner)

    from catalyst import runners as m  # noqa: WPS347

    r.add_from_module(m)
示例#9
0
def test_fail_instantiation():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    r.add(foo)

    with pytest.raises(RegistryException) as e_ifo:
        r.get_instance("foo", c=1)

    assert hasattr(e_ifo.value, "__cause__")
示例#10
0
def test_from_config():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("obj")

    r.add(foo)

    res = r.get_from_params(**{"obj": "foo", "a": 1, "b": 2})
    assert res == {"a": 1, "b": 2}

    res = r.get_from_params(**{})
    assert res is None
示例#11
0
def test_name_key():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry(name_key="_key_")

    r.add(foo)

    res = r.get_from_params(**{"_key_": "foo", "a": 1, "b": 2})()
    assert res == {"a": 1, "b": 2}

    res = r.get_from_params(**{"_target_": "foo", "a": 1, "b": 2})
    assert res == {"_target_": "foo", "a": 1, "b": 2}
示例#12
0
def test_fail_double_add_different():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")
    r.add(foo)

    with pytest.raises(RegistryException):

        def bar():
            pass

        r.add(foo=bar)
示例#13
0
def _samplers_loader(r: Registry):
    from torch.utils.data import sampler as s

    factories = {
        k: v
        for k, v in s.__dict__.items() if "Sampler" in k and k != "Sampler"
    }
    r.add(**factories)
    from catalyst.data import sampler

    r.add_from_module(sampler)
示例#14
0
def test_instantiations():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    r.add(foo)

    res = r.get_instance("foo", 1, 2)
    assert res == {"a": 1, "b": 2}

    res = r.get_instance("foo", 1, b=2)
    assert res == {"a": 1, "b": 2}

    res = r.get_instance("foo", a=1, b=2)
    assert res == {"a": 1, "b": 2}
示例#15
0
def test_instantiations():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry()

    r.add(foo)

    res = r.get_instance("foo", 1, 2)()
    assert res == {"a": 1, "b": 2}

    res = r.get_instance("foo", 1, b=2)()
    assert res == {"a": 1, "b": 2}

    res = r.get_instance("foo", a=1, b=2)()
    assert res == {"a": 1, "b": 2}

    res = r.get_instance("tests.catalyst.tools.registery_foo.foo", a=1, b=2)()
    assert res == {"a": 1, "b": 2}
示例#16
0
def test_meta_factory():
    """@TODO: Docs. Contribution is welcome."""  # noqa: D202

    def meta_1(fn, args, kwargs):
        return fn

    def meta_2(fn, args, kwargs):
        return 1

    r = Registry("obj", meta_1)
    r.add(foo)

    res = r.get_from_params(**{"obj": "foo"})
    assert res == foo

    res = r.get_from_params(**{"obj": "foo"}, meta_factory=meta_2)
    assert res == 1
示例#17
0
def _dataloaders_loader(r: registry.Registry):
    from torch.utils.data import DataLoader  # noqa: WPS347

    r.add(DataLoader)
示例#18
0
def test_fail_multiple_with_name():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    with pytest.raises(RegistryException):
        r.add(foo, foo, name="bar")
示例#19
0
def test_recursive_get_from_config():
    def meta_factory(factory, args, kwargs):
        return factory(*args, **kwargs)

    r = Registry(meta_factory=meta_factory)

    r.add(foo)

    res = r.get_from_params(**{"_target_": "foo", "a": 1, "b": 2})
    assert res == {"a": 1, "b": 2}

    res = r.get_from_params(
        **{
            "_target_":
            "foo",
            "a": {
                "_target_": "foo",
                "a": {
                    "_target_": "foo",
                    "a": 1,
                    "b": 2
                },
                "b": 2
            },
            "b": [{
                "_target_": "foo",
                "a": 1,
                "b": 2
            }, {
                "_target_": "foo",
                "a": 1,
                "b": 2
            }],
        })
    assert res == {
        "a": {
            "a": {
                "a": 1,
                "b": 2
            },
            "b": 2
        },
        "b": [{
            "a": 1,
            "b": 2
        }, {
            "a": 1,
            "b": 2
        }]
    }

    res = r.get_from_params(
        **{
            "a": {
                "_target_": "foo",
                "a": 1,
                "b": 2
            },
            "b": {
                "_target_": "foo",
                "a": 1,
                "b": 2
            }
        })
    assert res == {"a": {"a": 1, "b": 2}, "b": {"a": 1, "b": 2}}

    # check nested dicts support
    res = r.get_from_params(
        **{
            "a": {
                "_target_": "foo",
                "a": 1,
                "b": 2
            },
            "b": {
                "_target_": "foo",
                "a": 1,
                "b": 2
            }
        })
    assert res == {"a": {"a": 1, "b": 2}, "b": {"a": 1, "b": 2}}

    res = r.get_from_params(**{
        "_target_": "foo",
        "a": {
            "c": {
                "_target_": "foo",
                "a": 1,
                "b": 2
            }
        },
        "b": 2
    })
    assert res == {"a": {"c": {"a": 1, "b": 2}}, "b": 2}

    # check nested lists support
    res = r.get_from_params(
        **{
            "_target_": "foo",
            "a": [[[{
                "_target_": "foo",
                "a": 1,
                "b": 2
            }]]],
            "b": {
                "c": 3,
                "d": {
                    "e": 4
                }
            },
        })
    assert res == {"a": [[[{"a": 1, "b": 2}]]], "b": {"c": 3, "d": {"e": 4}}}

    # check shared_params
    res = r.get_from_params(**{
        "_target_": "foo",
        "a": {
            "_target_": "foo",
            "a": 1,
            "b": 3
        }
    },
                            shared_params={"b": 2})
    assert res == {"a": {"a": 1, "b": 3}, "b": 2}
示例#20
0
def test_add_lambda_fail():
    """@TODO: Docs. Contribution is welcome."""
    r = Registry("")

    with pytest.raises(RegistryException):
        r.add(lambda x: x)