* Fix some bugs * Solve bug with GPU and model_summary parameters in SupervisedSolver class * Implement GraphSolver class * Fix Tutorial 5
21 lines
427 B
Python
21 lines
427 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
|
|
from .graph import GraphSupervisedSolver
|