refiners/tests/fluxion/layers/test_chain.py

311 lines
8 KiB
Python
Raw Permalink Normal View History

2023-08-23 15:13:47 +00:00
import pytest
2023-08-04 13:28:41 +00:00
import torch
2023-08-04 13:28:41 +00:00
import refiners.fluxion.layers as fl
2023-08-23 15:13:47 +00:00
from refiners.fluxion.context import Contexts
class ContextChain(fl.Chain):
def init_context(self) -> Contexts:
return {"foo": {"bar": [42]}}
def module_keys(chain: fl.Chain) -> list[str]:
return list(chain._modules.keys()) # type: ignore[reportPrivateUsage]
2023-08-04 13:28:41 +00:00
2023-08-23 12:59:09 +00:00
def test_chain_find() -> None:
chain = fl.Chain(fl.Linear(1, 1))
2023-08-23 15:13:47 +00:00
assert chain.find(fl.Linear) == chain.Linear
2023-08-23 12:59:09 +00:00
assert chain.find(fl.Conv2d) is None
2024-01-29 16:56:25 +00:00
def test_chain_getitem_accessor() -> None:
chain = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
assert chain["Linear_2"] == chain.Linear_2
with pytest.raises(KeyError):
chain["Linear_3"]
2023-08-23 15:13:47 +00:00
def test_chain_find_parent():
chain = fl.Chain(fl.Chain(fl.Linear(1, 1)))
subchain = chain.layer("Chain", fl.Chain)
2023-08-23 15:13:47 +00:00
assert chain.find_parent(subchain.layer("Linear", fl.Linear)) == subchain
2023-08-23 15:13:47 +00:00
assert chain.find_parent(fl.Linear(1, 1)) is None
2023-08-23 12:59:09 +00:00
def test_chain_slice() -> None:
chain = fl.Chain(
fl.Linear(1, 1),
fl.Linear(1, 1),
fl.Linear(1, 1),
fl.Chain(
fl.Linear(1, 1),
fl.Linear(1, 1),
),
fl.Linear(1, 1),
)
x = torch.randn(1, 1)
sliced_chain = chain[1:4]
assert len(chain) == 5
assert len(sliced_chain) == 3
assert chain[:-1](x).shape == (1, 1)
2024-01-29 16:56:25 +00:00
def test_chain_walk() -> None:
chain = fl.Chain(
fl.Sum(
fl.Chain(fl.Linear(1, 1)),
fl.Linear(1, 1),
),
fl.Chain(),
)
sum_ = chain.layer("Sum", fl.Sum)
sum_chain = sum_.layer("Chain", fl.Chain)
assert list(chain.walk()) == [(sum_, chain), (chain.Chain, chain)]
2024-01-29 16:56:25 +00:00
assert list(chain.walk(fl.Linear)) == [
(sum_chain.Linear, sum_chain),
(sum_.Linear, sum_),
2024-01-29 16:56:25 +00:00
]
assert list(chain.walk(recurse=True)) == [
(sum_, chain),
(sum_chain, sum_),
(sum_chain.Linear, sum_chain),
(sum_.Linear, sum_),
2024-01-29 16:56:25 +00:00
(chain.Chain, chain),
]
2023-08-23 12:59:09 +00:00
def test_chain_walk_stop_iteration() -> None:
chain = fl.Chain(
fl.Sum(
fl.Chain(fl.Linear(1, 1)),
fl.Linear(1, 1),
),
fl.Chain(),
fl.Linear(1, 1),
)
def predicate(m: fl.Module, p: fl.Chain) -> bool:
if isinstance(m, fl.Sum):
raise StopIteration
return isinstance(m, fl.Linear)
assert len(list(chain.walk(fl.Linear))) == 3
assert len(list(chain.walk(predicate))) == 1
def test_chain_layer() -> None:
chain = fl.Chain(
fl.Sum(fl.Chain(), fl.Chain()),
)
sum_ = chain.layer(0, fl.Sum)
assert chain.layer("Sum", fl.Sum) == sum_
assert chain.layer("Sum", fl.Chain) == sum_
chain_2 = chain.layer((0, 1), fl.Chain)
assert chain.layer((0, 1)) == chain_2
assert chain.layer((0, "Chain_2"), fl.Chain) == chain_2
assert chain.layer(("Sum", "Chain_2"), fl.Chain) == chain_2
assert chain.layer((), fl.Chain) == chain
with pytest.raises(AssertionError):
chain.layer((0, 1), fl.Sum)
with pytest.raises(AssertionError):
chain.layer((), fl.Sum)
2023-08-23 12:59:09 +00:00
def test_chain_layers() -> None:
chain = fl.Chain(
fl.Chain(fl.Chain(fl.Chain())),
fl.Chain(),
fl.Linear(1, 1),
)
assert len(list(chain.layers(fl.Chain))) == 2
assert len(list(chain.layers(fl.Chain, recurse=True))) == 4
2023-08-23 15:13:47 +00:00
def test_chain_insert() -> None:
parent = ContextChain(fl.Linear(1, 1), fl.Linear(1, 1))
child = fl.Chain()
parent.insert(1, child)
assert module_keys(parent) == ["Linear_1", "Chain", "Linear_2"]
assert child.parent == parent
assert child.provider.get_context("foo") == {"bar": [42]}
def test_chain_insert_negative() -> None:
parent = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
child = fl.Chain()
parent.insert(-2, child)
assert module_keys(parent) == ["Linear_1", "Chain", "Linear_2"]
def test_chain_insert_after_type() -> None:
child = fl.Chain()
parent_1 = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
parent_1.insert_after_type(fl.Linear, child)
assert module_keys(parent_1) == ["Linear_1", "Chain", "Linear_2"]
parent_2 = fl.Chain(fl.Conv2d(1, 1, 1), fl.Linear(1, 1))
parent_2.insert_after_type(fl.Linear, child)
assert module_keys(parent_2) == ["Conv2d", "Linear", "Chain"]
2023-09-24 19:13:37 +00:00
def test_chain_insert_before_type() -> None:
child = fl.Chain()
parent_1 = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
parent_1.insert_before_type(fl.Linear, child)
assert module_keys(parent_1) == ["Chain", "Linear_1", "Linear_2"]
parent_2 = fl.Chain(fl.Conv2d(1, 1, 1), fl.Linear(1, 1))
parent_2.insert_before_type(fl.Linear, child)
assert module_keys(parent_2) == ["Conv2d", "Chain", "Linear"]
2023-08-23 15:13:47 +00:00
def test_chain_insert_overflow() -> None:
# This behaves as insert() in lists in Python.
child = fl.Chain()
parent_1 = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
parent_1.insert(42, child)
assert module_keys(parent_1) == ["Linear_1", "Linear_2", "Chain"]
parent_2 = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
parent_2.insert(-42, child)
assert module_keys(parent_2) == ["Chain", "Linear_1", "Linear_2"]
def test_chain_append() -> None:
child = fl.Chain()
parent = fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1))
parent.append(child)
assert module_keys(parent) == ["Linear_1", "Linear_2", "Chain"]
def test_chain_pop() -> None:
chain = fl.Chain(fl.Linear(1, 1), fl.Conv2d(1, 1, 1), fl.Chain())
with pytest.raises(IndexError):
chain.pop(3)
with pytest.raises(IndexError):
chain.pop(-4)
assert module_keys(chain) == ["Linear", "Conv2d", "Chain"]
chain.pop(1)
assert module_keys(chain) == ["Linear", "Chain"]
chain.pop(-2)
assert module_keys(chain) == ["Chain"]
2023-08-23 12:57:04 +00:00
def test_chain_remove() -> None:
2023-08-23 15:13:47 +00:00
child = fl.Linear(1, 1)
parent = fl.Chain(
2023-08-04 13:28:41 +00:00
fl.Linear(1, 1),
2023-08-23 15:13:47 +00:00
child,
2023-08-23 12:57:04 +00:00
fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1)),
2023-08-04 13:28:41 +00:00
)
2023-08-23 15:13:47 +00:00
assert child in parent
assert module_keys(parent) == ["Linear_1", "Linear_2", "Chain"]
parent.remove(child)
2023-08-23 12:57:04 +00:00
2023-08-23 15:13:47 +00:00
assert child not in parent
assert module_keys(parent) == ["Linear", "Chain"]
2023-08-23 12:57:04 +00:00
def test_chain_replace() -> None:
chain = fl.Chain(
fl.Linear(1, 1),
fl.Linear(1, 1),
fl.Chain(fl.Linear(1, 1), fl.Linear(1, 1)),
)
subchain = chain.layer("Chain", fl.Chain)
2023-08-04 13:28:41 +00:00
assert isinstance(subchain[1], fl.Linear)
subchain.replace(subchain[1], fl.Conv2d(1, 1, 1))
2023-08-04 13:28:41 +00:00
assert len(chain) == 3
assert isinstance(subchain[1], fl.Conv2d)
2023-08-04 13:28:41 +00:00
2023-08-23 12:56:31 +00:00
def test_chain_structural_copy() -> None:
2023-08-04 13:28:41 +00:00
m = fl.Chain(
fl.Sum(
2023-08-23 12:56:31 +00:00
fl.Linear(4, 8),
fl.Linear(4, 8),
2023-08-04 13:28:41 +00:00
),
2023-08-23 12:56:31 +00:00
fl.Linear(8, 12),
2023-08-04 13:28:41 +00:00
)
x = torch.randn(7, 4)
y = m(x)
assert y.shape == (7, 12)
m2 = m.structural_copy()
m_sum = m.layer("Sum", fl.Sum)
m2_sum = m2.layer("Sum", fl.Sum)
2023-08-04 13:28:41 +00:00
assert m.Linear == m2.Linear
assert m_sum.Linear_1 == m2_sum.Linear_1
assert m_sum.Linear_2 == m2_sum.Linear_2
2023-08-04 13:28:41 +00:00
assert m_sum != m2_sum
2023-08-04 13:28:41 +00:00
assert m != m2
assert m_sum.parent == m
assert m2_sum.parent == m2
2023-08-04 13:28:41 +00:00
y2 = m2(x)
assert y2.shape == (7, 12)
torch.equal(y2, y)
def test_setattr_dont_register() -> None:
chain = fl.Chain(fl.Linear(in_features=1, out_features=1), fl.Linear(in_features=1, out_features=1))
with pytest.raises(expected_exception=ValueError):
chain.foo = fl.Linear(in_features=1, out_features=1)
assert module_keys(chain=chain) == ["Linear_1", "Linear_2"]
2023-10-10 13:02:52 +00:00
EXPECTED_TREE = """
(CHAIN)
Linear(in_features=1, out_features=1, device=cpu, dtype=float32) (x2)
(CHAIN)
Linear(in_features=1, out_features=1, device=cpu, dtype=float32) #1
Linear(in_features=2, out_features=1, device=cpu, dtype=float32) #2
""".strip()
2023-10-10 13:02:52 +00:00
def test_debug_print() -> None:
chain = fl.Chain(
fl.Linear(1, 1),
fl.Linear(1, 1),
fl.Chain(fl.Linear(1, 1), fl.Linear(2, 1)),
)
assert chain._show_error_in_tree("Chain.Linear_2") == EXPECTED_TREE # type: ignore[reportPrivateUsage]