topo-align / equilib /__init__.py
omesbah's picture
feat: Introduce `equilib` package with RLHF steering and Sperner dataset generation examples, and add project license.
258dd6d
raw
history blame contribute delete
398 Bytes
from .topo_align import TopoAlignSolver
from .adaptive_topo_align import AdaptiveTopoAlignSolver
from .surrogate_topo_align import SurrogateTopoAlignSolver, NDimSurrogateTopoAlignSolver
__version__ = "0.1.0"
from .ndim_topo_align import NDimTopoAlignSolver
from .sperner_trainer import SpernerTrainer
try:
from . import plotting
except ImportError:
plotting = None
__version__ = "0.1.0"