Skip to content

Commit 6935e0d

Browse files
Merge pull request #674 from mathLab/dev
Dev updates 0.2.4
2 parents b5e4d13 + 4860a2d commit 6935e0d

32 files changed

+12736
-617
lines changed

.github/workflows/monthly-tagger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [windows-latest, macos-latest, ubuntu-latest]
14-
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python

.github/workflows/tester.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Testing Pull Request"
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
branches:
66
- "master"
77
- "dev"
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [windows-latest, macos-latest, ubuntu-latest]
16-
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
16+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1717

1818
steps:
1919
- uses: actions/checkout@v4

.github/workflows/tutorial_exporter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.9
26+
python-version: 3.10
2727

2828
- name: Install dependencies
2929
run: |
@@ -91,7 +91,7 @@ jobs:
9191
- name: Set up Python
9292
uses: actions/setup-python@v5
9393
with:
94-
python-version: 3.9
94+
python-version: 3.10
9595

9696
- name: Install dependencies
9797
run: |

docs/source/_rst/_code.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ Models
9595
MultiFeedForward <model/multi_feed_forward.rst>
9696
ResidualFeedForward <model/residual_feed_forward.rst>
9797
Spline <model/spline.rst>
98+
SplineSurface <model/spline_surface.rst>
9899
DeepONet <model/deeponet.rst>
99100
MIONet <model/mionet.rst>
100101
KernelNeuralOperator <model/kernel_neural_operator.rst>
@@ -105,6 +106,8 @@ Models
105106
GraphNeuralOperator <model/graph_neural_operator.rst>
106107
GraphNeuralKernel <model/graph_neural_operator_integral_kernel.rst>
107108
PirateNet <model/pirate_network.rst>
109+
EquivariantGraphNeuralOperator <model/equivariant_graph_neural_operator.rst>
110+
SINDy <model/sindy.rst>
108111

109112
Blocks
110113
-------------
@@ -134,6 +137,7 @@ Message Passing
134137
E(n) Equivariant Network Block <model/block/message_passing/en_equivariant_network_block.rst>
135138
Interaction Network Block <model/block/message_passing/interaction_network_block.rst>
136139
Radial Field Network Block <model/block/message_passing/radial_field_network_block.rst>
140+
EquivariantGraphNeuralOperatorBlock <model/block/message_passing/equivariant_graph_neural_operator_block.rst>
137141

138142

139143
Reduction and Embeddings
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
EquivariantGraphNeuralOperatorBlock
2+
=====================================
3+
.. currentmodule:: pina.model.block.message_passing.equivariant_graph_neural_operator_block
4+
5+
.. autoclass:: EquivariantGraphNeuralOperatorBlock
6+
:members:
7+
:show-inheritance:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
EquivariantGraphNeuralOperator
2+
=================================
3+
.. currentmodule:: pina.model.equivariant_graph_neural_operator
4+
5+
.. autoclass:: EquivariantGraphNeuralOperator
6+
:members:
7+
:show-inheritance:

docs/source/_rst/model/sindy.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SINDy
2+
=======================
3+
.. currentmodule:: pina.model.sindy
4+
5+
.. autoclass:: SINDy
6+
:members:
7+
:show-inheritance:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Spline Surface
2+
================
3+
.. currentmodule:: pina.model.spline_surface
4+
5+
.. autoclass:: SplineSurface
6+
:members:
7+
:show-inheritance:

docs/source/_tutorial.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@ Supervised Learning
4040
- `Introductory Tutorial: Supervised Learning with PINA <tutorial20/tutorial.html>`_
4141
- `Chemical Properties Prediction with Graph Neural Networks <tutorial15/tutorial.html>`_
4242
- `Reduced Order Model with Graph Neural Networks for Unstructured Domains <tutorial22/tutorial.html>`_
43+
- `Data-driven System Identification with SINDy <tutorial23/tutorial.html>`_
4344
- `Unstructured Convolutional Autoencoders with Continuous Convolution <tutorial4/tutorial.html>`_
4445
- `Reduced Order Modeling with POD-RBF and POD-NN Approaches for Fluid Dynamics <tutorial8/tutorial.html>`_

docs/source/tutorials/tutorial17/tutorial.html

Lines changed: 35 additions & 53 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)