Coverage Control Library
Loading...
Searching...
No Matches
nn/models/__init__.py
1"""
2This module contains the implementation of the LPAC architecture.
3"""
4
5from __future__ import annotations
6
7from .cnn import CNN
8from .lpac import LPAC
9
10__all__ = ["CNN", "LPAC"]