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$ |
|
|
|
|
| $f^{*}()$ | generic function to be approximated, typically unknown |
|
2021-01-22 13:31:22 +01:00
|
|
|
| $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 |
|
|
|
|
|
|
|
|
## Summary of the most important abbreviations:
|
|
|
|
|
|
|
|
| ABbreviation | Meaning |
|
|
|
|
| --- | --- |
|
2021-02-15 09:04:09 +01:00
|
|
|
| CNN | Convolutional Neural Network |
|
|
|
|
| DL | Deep Learning |
|
|
|
|
| GD | (steepest) Gradient Descent|
|
2021-03-10 05:15:50 +01:00
|
|
|
| MLP | Multi-Layer Perceptron, a neural network with fully connected layers |
|
|
|
|
| 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
% test table formatting in markdown
|
|
|
|
% | | Sentence # | Word | POS | Tag |
|
|
|
|
% |---:|:-------------|:-----------|:------|:------|
|
|
|
|
% | 1 | Sentence: 1 | They | PRP | O |
|
|
|
|
% | 2 | Sentence: 1 | marched | VBD | O |
|
|
|
|
|
|
|
|
|