Files
PINA/pina/model/layers/__init__.py
Dario Coscia 15ecaacb7c Layers and Models update PR
* add residual block
* add test conv and residual block
* modify FFN kwargs
2023-11-17 09:51:29 +01:00

8 lines
146 B
Python

__all__ = [
'ContinuousConvBlock',
'ResidualBlock'
]
from .convolution_2d import ContinuousConvBlock
from .residual import ResidualBlock