PINN variants addition and Solvers Update (#263)
* gpinn/basepinn new classes, pinn restructure * codacy fix gpinn/basepinn/pinn * inverse problem fix * Causal PINN (#267) * fix GPU training in inverse problem (#283) * Create a `compute_residual` attribute for `PINNInterface` * Modify dataloading in solvers (#286) * Modify PINNInterface by removing _loss_phys, _loss_data * Adding in PINNInterface a variable to track the current condition during training * Modify GPINN,PINN,CausalPINN to match changes in PINNInterface * Competitive Pinn Addition (#288) * fixing after rebase/ fix loss * fixing final issues --------- Co-authored-by: Dario Coscia <dariocoscia@Dario-Coscia.local> * Modify min max formulation to max min for paper consistency * Adding SAPINN solver (#291) * rom solver * fix import --------- Co-authored-by: Dario Coscia <dariocoscia@Dario-Coscia.local> Co-authored-by: Anna Ivagnes <75523024+annaivagnes@users.noreply.github.com> Co-authored-by: valc89 <103250118+valc89@users.noreply.github.com> Co-authored-by: Monthly Tag bot <mtbot@noreply.github.com> Co-authored-by: Nicola Demo <demo.nicola@gmail.com>
This commit is contained in:
@@ -35,8 +35,14 @@ Solvers
|
||||
:titlesonly:
|
||||
|
||||
SolverInterface <solvers/solver_interface.rst>
|
||||
PINNInterface <solvers/basepinn.rst>
|
||||
PINN <solvers/pinn.rst>
|
||||
GPINN <solvers/gpinn.rst>
|
||||
CausalPINN <solvers/causalpinn.rst>
|
||||
CompetitivePINN <solvers/competitivepinn.rst>
|
||||
SAPINN <solvers/sapinn.rst>
|
||||
Supervised solver <solvers/supervised.rst>
|
||||
ReducedOrderModelSolver <solvers/rom.rst>
|
||||
GAROM <solvers/garom.rst>
|
||||
|
||||
|
||||
|
||||
7
docs/source/_rst/solvers/basepinn.rst
Normal file
7
docs/source/_rst/solvers/basepinn.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
PINNInterface
|
||||
=================
|
||||
.. currentmodule:: pina.solvers.pinns.basepinn
|
||||
|
||||
.. autoclass:: PINNInterface
|
||||
:members:
|
||||
:show-inheritance:
|
||||
7
docs/source/_rst/solvers/causalpinn.rst
Normal file
7
docs/source/_rst/solvers/causalpinn.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
CausalPINN
|
||||
==============
|
||||
.. currentmodule:: pina.solvers.pinns.causalpinn
|
||||
|
||||
.. autoclass:: CausalPINN
|
||||
:members:
|
||||
:show-inheritance:
|
||||
7
docs/source/_rst/solvers/competitivepinn.rst
Normal file
7
docs/source/_rst/solvers/competitivepinn.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
CompetitivePINN
|
||||
=================
|
||||
.. currentmodule:: pina.solvers.pinns.competitive_pinn
|
||||
|
||||
.. autoclass:: CompetitivePINN
|
||||
:members:
|
||||
:show-inheritance:
|
||||
7
docs/source/_rst/solvers/gpinn.rst
Normal file
7
docs/source/_rst/solvers/gpinn.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
GPINN
|
||||
======
|
||||
.. currentmodule:: pina.solvers.pinns.gpinn
|
||||
|
||||
.. autoclass:: GPINN
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -1,6 +1,6 @@
|
||||
PINN
|
||||
======
|
||||
.. currentmodule:: pina.solvers.pinn
|
||||
.. currentmodule:: pina.solvers.pinns.pinn
|
||||
|
||||
.. autoclass:: PINN
|
||||
:members:
|
||||
|
||||
7
docs/source/_rst/solvers/rom.rst
Normal file
7
docs/source/_rst/solvers/rom.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
ReducedOrderModelSolver
|
||||
==========================
|
||||
.. currentmodule:: pina.solvers.rom
|
||||
|
||||
.. autoclass:: ReducedOrderModelSolver
|
||||
:members:
|
||||
:show-inheritance:
|
||||
7
docs/source/_rst/solvers/sapinn.rst
Normal file
7
docs/source/_rst/solvers/sapinn.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
SAPINN
|
||||
======
|
||||
.. currentmodule:: pina.solvers.pinns.sapinn
|
||||
|
||||
.. autoclass:: SAPINN
|
||||
:members:
|
||||
:show-inheritance:
|
||||
Reference in New Issue
Block a user