Skip to content

Commit 6bae7ca

Browse files
authored
Merge pull request #713 from mathLab/dev
Dev updates
2 parents 497f44f + fc82a65 commit 6bae7ca

File tree

7 files changed

+33
-41
lines changed

7 files changed

+33
-41
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ SPDX-License-Identifier: Apache-2.0
1515
</td>
1616
<td>
1717
<h2 style="margin-left: 20px; font-size: 1.8rem; line-height: 1.2;">
18-
Solving Scientific Problems with Machine Learning, Intuitively
18+
A Unified Framework for Scientific Machine Learning
1919
</h2>
2020
</td>
2121
</tr>

docs/source/tutorials/tutorial17/tutorial.html

Lines changed: 25 additions & 37 deletions
Large diffs are not rendered by default.

pina/problem/abstract_problem.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,10 @@ def collect_data(self):
337337
# If the condition does not have a domain attribute, store
338338
# the input and target points
339339
keys = condition.__slots__
340-
values = [getattr(condition, name) for name in keys]
340+
values = [
341+
getattr(condition, name)
342+
for name in keys
343+
if getattr(condition, name) is not None
344+
]
341345
data[condition_name] = dict(zip(keys, values))
342346
self._collected_data = data

tutorials/static/pina_wokflow.png

-442 KB
Binary file not shown.

tutorials/static/pina_workflow.png

430 KB
Loading

tutorials/tutorial17/tutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"## The PINA Workflow \n",
4141
"\n",
4242
"<p align=\"center\">\n",
43-
" <img src=\"http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_wokflow.png\" alt=\"PINA Workflow\" width=\"1000\"/>\n",
43+
" <img src=\"http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_workflow.png\" alt=\"PINA Workflow\" width=\"1000\"/>\n",
4444
"</p>\n",
4545
"\n",
4646
"Solving a differential problem in **PINA** involves four main steps:\n",

tutorials/tutorial17/tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# ## The PINA Workflow
3131
#
3232
# <p align="center">
33-
# <img src="http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_wokflow.png" alt="PINA Workflow" width="1000"/>
33+
# <img src="http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_workflow.png" alt="PINA Workflow" width="1000"/>
3434
# </p>
3535
#
3636
# Solving a differential problem in **PINA** involves four main steps:

0 commit comments

Comments
 (0)