Tutorial update and small fixes * Tutorials update + Tutorial FNO * Create a metric tracker callback * Update PINN for logging * Update plotter for plotting * Small fix LabelTensor * Small fix FNO --------- Co-authored-by: Dario Coscia <dariocoscia@cli-10-110-13-250.WIFIeduroamSTUD.units.it> Co-authored-by: Dario Coscia <dariocoscia@dhcp-176.eduroam.sissa.it>
9 lines
129 B
Python
9 lines
129 B
Python
__all__ = [
|
|
'PINN',
|
|
'GAROM',
|
|
]
|
|
|
|
from .garom import GAROM
|
|
from .pinn import PINN
|
|
from .supervised import SupervisedSolver
|