* added rba-pinn * changes to loss logger * tests * doc --------- Co-authored-by: Monthly Tag bot <mtbot@noreply.github.com> Co-authored-by: Nicola Demo <demo.nicola@gmail.com>
20 lines
386 B
Python
20 lines
386 B
Python
__all__ = [
|
|
"SolverInterface",
|
|
"PINNInterface",
|
|
"PINN",
|
|
"GPINN",
|
|
"CausalPINN",
|
|
"CompetitivePINN",
|
|
"SAPINN",
|
|
"RBAPINN",
|
|
"SupervisedSolver",
|
|
"ReducedOrderModelSolver",
|
|
"GAROM",
|
|
]
|
|
|
|
from .solver import SolverInterface
|
|
from .pinns import *
|
|
from .supervised import SupervisedSolver
|
|
from .rom import ReducedOrderModelSolver
|
|
from .garom import GAROM
|