cleanup, unified notation NN instead of ANN

This commit is contained in:
NT
2021-03-10 12:15:50 +08:00
parent 975d67d07a
commit 8556fa6c96
15 changed files with 44 additions and 40 deletions

View File

@@ -12,7 +12,7 @@ representation regarding the reliability of these derivatives. Also, each deriva
requires backpropagation through the full network, which can be very slow. Especially so
for higher-order derivatives.
And while the setup is relatively simple, it is generally difficult to control. The ANN
And while the setup is relatively simple, it is generally difficult to control. The NN
has flexibility to refine the solution by itself, but at the same time, tricks are necessary
when it doesn't pick the right regions of the solution.
@@ -37,10 +37,10 @@ we deploy it into an application.
In contrast, for the PINN training as described here, we reconstruct a single solution in a known
and given space-time time. As such, any samples from this domain follow the same distribution
and hence don't really represent test or OOD sampes. As the ANN directly encodes the solution,
and hence don't really represent test or OOD sampes. As the NN directly encodes the solution,
there is also little hope that it will yield different solutions, or perform well outside
of the training distribution. If we're interested in a different solution, we most likely
have to start training the ANN from scratch.
have to start training the NN from scratch.
## Summary