pbdl-book/notation.md

39 lines
1.2 KiB
Markdown
Raw Normal View History

2021-01-12 04:50:42 +01:00
# Notation and Abbreviations
## Math notation:
| Symbol | Meaning |
| --- | --- |
| $A$ | matrix |
| $\eta$ | learning rate or step size |
| $\Gamma$ | boundary of computational domain $\Omega$ |
2021-03-18 03:53:59 +01:00
| $f^{*}$ | generic function to be approximated, typically unknown |
| $f$ | approximate version of $f^{*}$ |
2021-01-12 04:50:42 +01:00
| $\Omega$ | computational domain |
2021-01-22 13:31:22 +01:00
| $\mathcal P^*$ | continuous/ideal physical model |
| $\mathcal P$ | discretized physical model, PDE |
2021-01-12 04:50:42 +01:00
| $\theta$ | neural network params |
| $t$ | time dimension |
| $\mathbf{u}$ | vector-valued velocity |
| $x$ | neural network input or spatial coordinate |
| $y$ | neural network output |
2022-04-24 20:41:49 +02:00
| $y^*$ | learning targets: ground truth, reference or observation data |
2021-01-12 04:50:42 +01:00
## Summary of the most important abbreviations:
2022-09-11 10:25:40 +02:00
| Abbreviation | Meaning |
2021-01-12 04:50:42 +01:00
| --- | --- |
2021-07-06 17:43:16 +02:00
| BNN | Bayesian neural network |
| CNN | Convolutional neural network |
2021-02-15 09:04:09 +01:00
| DL | Deep Learning |
| GD | (steepest) Gradient Descent|
| MLP | Multi-Layer Perceptron, a neural network with fully connected layers |
2021-07-06 17:43:16 +02:00
| NN | Neural network (a generic one, in contrast to, e.g., a CNN or MLP) |
2021-02-15 09:04:09 +01:00
| PDE | Partial Differential Equation |
| PBDL | Physics-Based Deep Learning |
| SGD | Stochastic Gradient Descent|
2021-01-12 04:50:42 +01:00