use LabelTensor, fix minor, docs

This commit is contained in:
Your Name
2022-03-29 18:05:26 +02:00
parent 12f4084d7f
commit 6b001c6c53
19 changed files with 370 additions and 322 deletions

View File

@@ -5,3 +5,6 @@ Code Documentation
:maxdepth: 3
LabelTensor <label_tensor.rst>
FeedForward <fnn.rst>
DeepONet <deeponet.rst>
PINN <pinn.rst>

View File

@@ -0,0 +1,12 @@
DeepONet
===========
.. currentmodule:: pina.model.deeponet
.. automodule:: pina.model.deeponet
.. autoclass:: DeepONet
:members:
:private-members:
:undoc-members:
:show-inheritance:
:noindex:

12
docs/source/_rst/fnn.rst Normal file
View File

@@ -0,0 +1,12 @@
FeedForward
===========
.. currentmodule:: pina.model.feed_forward
.. automodule:: pina.model.feed_forward
.. autoclass:: FeedForward
:members:
:private-members:
:undoc-members:
:show-inheritance:
:noindex:

12
docs/source/_rst/pinn.rst Normal file
View File

@@ -0,0 +1,12 @@
PINN
====
.. currentmodule:: pina.pinn
.. automodule:: pina.pinn
.. autoclass:: PINN
:members:
:private-members:
:undoc-members:
:show-inheritance:
:noindex:

View File

@@ -54,7 +54,8 @@ intersphinx_mapping = {
'numpy': ('http://docs.scipy.org/doc/numpy/', None),
'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None),
'matplotlib': ('http://matplotlib.sourceforge.net/', None),
'torch': ('https://pytorch.org/docs/stable/', None)
'torch': ('https://pytorch.org/docs/stable/', None),
'pina': ('https://mathlab.github.io/PINA/', None)
}
# Add any paths that contain templates here, relative to this directory.