Tom Schierenbeck
Tom Schierenbeck
### Subject of the issue Belief Propagation tries to allocate exponential memory on factor trees. This shouldnt be happening since trees are still without cycles and therefore efficient for exact...
Greetings! I got custom Layers in equinox that look approximately like this. ``` class ProductLayer(InnerLayer): child_layers: List[Union[SumLayer, InputLayer]] edges: BCOO class SumLayer(InnerLayer): log_weights: List[BCOO] child_layers: Union[List[[ProductLayer]], List[InputLayer]] class ContinuousLayerWithFiniteSupport(ContinuousLayer, ABC):...