Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SPDX-License-Identifier: Apache-2.0
</td>
<td>
<h2 style="margin-left: 20px; font-size: 1.8rem; line-height: 1.2;">
Solving Scientific Problems with Machine Learning, Intuitively
A Unified Framework for Scientific Machine Learning
</h2>
</td>
</tr>
Expand Down
62 changes: 25 additions & 37 deletions docs/source/tutorials/tutorial17/tutorial.html

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion pina/problem/abstract_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,10 @@ def collect_data(self):
# If the condition does not have a domain attribute, store
# the input and target points
keys = condition.__slots__
values = [getattr(condition, name) for name in keys]
values = [
getattr(condition, name)
for name in keys
if getattr(condition, name) is not None
]
data[condition_name] = dict(zip(keys, values))
self._collected_data = data
Binary file removed tutorials/static/pina_wokflow.png
Binary file not shown.
Binary file added tutorials/static/pina_workflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tutorials/tutorial17/tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"## The PINA Workflow \n",
"\n",
"<p align=\"center\">\n",
" <img src=\"http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_wokflow.png\" alt=\"PINA Workflow\" width=\"1000\"/>\n",
" <img src=\"http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_workflow.png\" alt=\"PINA Workflow\" width=\"1000\"/>\n",
"</p>\n",
"\n",
"Solving a differential problem in **PINA** involves four main steps:\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/tutorial17/tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# ## The PINA Workflow
#
# <p align="center">
# <img src="http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_wokflow.png" alt="PINA Workflow" width="1000"/>
# <img src="http://raw.githubusercontent.com/mathLab/PINA/master/tutorials/static/pina_workflow.png" alt="PINA Workflow" width="1000"/>
# </p>
#
# Solving a differential problem in **PINA** involves four main steps:
Expand Down