Dario/0.3/doc#817
Conversation
810b8ca to
7d3ed07
Compare
Code Coverage SummaryResults for commit: 589eb80 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
7d3ed07 to
5f76832
Compare
724eed8 to
abf06bd
Compare
GiovanniCanali
left a comment
There was a problem hiding this comment.
I'm just leaving two comments below.
Checklist
|
GiovanniCanali
left a comment
There was a problem hiding this comment.
Thank you for the PR. I have a few requests before merging:
- Please use a consistent structure for the
.rstfiles. For example,docs/source/_rst/adaptive_function/adaptive_celu.rstanddocs/source/_rst/graph/graph_builder.rstcurrently do not follow the same format. Adapt all files. - Base classes and interfaces should not include examples, since they are not meant to be instantiated directly and this may confuse users.
- Private classes should not include examples, as they are intended for internal use only.
- Examples should be included only in the source (
pina/_src) files. Please remove the examples currently included in the.rstfiles or import files (e.g.,pina/callbackinstead ofpina/_src/callback).
There was a problem hiding this comment.
Remove class description and examples, keep only rst-relevant information.
There was a problem hiding this comment.
Remove class description and examples, keep only rst-relevant information.
There was a problem hiding this comment.
Remove class description and examples, keep only rst-relevant information.
| class AdaptiveFunctionInterface(metaclass=ABCMeta): | ||
| """ | ||
| Abstract interface for all adaptive functions. | ||
|
|
There was a problem hiding this comment.
remove this example, out of scope
| physics-informed neural networks*. | ||
| Journal of Computational Physics, 404. | ||
| DOI: `JCP 10.1016 <https://doi.org/10.1016/j.jcp.2019.109136>`_. | ||
There was a problem hiding this comment.
Remove this example, out of scope
Description
This PR fixes #818
Checklist