Skip to content

Derivative-based Metrics¤

Related to Sobolev Norms

exponax.metrics.H1_MSE ¤

H1_MSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Optional[Float[Array, "C ... N"]] = None,
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None
) -> float

Compute the mean squared error associated with the H1 norm, i.e., the MSE across state and all its first derivatives.

Given the correct domain_extent, this is consistent with the squared norm in the H1 Sobolev space H^1 = W^(1,2): https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

Tip

To apply this function to a state tensor with a leading batch axis, use jax.vmap. Then the batch axis can be reduced, e.g., by jnp.mean. As a helper for this, exponax.metrics.mean_metric is provided.

Warning

Not supplying domain_extent will have the result be orders of magnitude different.

Arguments:

  • u_pred: The state array. Must follow the Exponax convention with a leading channel axis, and either one, two, or three subsequent spatial axes.
  • u_ref: The reference state array. Must have the same shape as u_pred. If not specified, the MSE is computed against zero, i.e., the norm of u_pred.
  • domain_extent: The extent L of the domain Ω = (0, L)ᴰ.
  • low: The lower cutoff (inclusive) frequency for filtering. If not specified, it is set to 0, meaning start it starts (including) the mean/zero mode.
  • high: The upper cutoff (inclusive) frequency for filtering. If not specified, it is set to N//2 + 1, meaning it ends (including) at the Nyquist mode.
Source code in exponax/metrics/_derivative.py
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
def H1_MSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Optional[Float[Array, "C ... N"]] = None,
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None,
) -> float:
    """
    Compute the mean squared error associated with the H1 norm, i.e., the MSE
    across state and all its first derivatives.

    Given the correct `domain_extent`, this is consistent with the squared norm
    in the H1 Sobolev space H^1 = W^(1,2):
    https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

    !!! tip
        To apply this function to a state tensor with a leading batch axis, use
        `jax.vmap`. Then the batch axis can be reduced, e.g., by `jnp.mean`. As
        a helper for this, [`exponax.metrics.mean_metric`][] is provided.

    !!! warning
        Not supplying `domain_extent` will have the result be orders of
        magnitude different.

    **Arguments**:

    - `u_pred`: The state array. Must follow the `Exponax` convention
        with a leading channel axis, and either one, two, or three subsequent
        spatial axes.
    - `u_ref`: The reference state array. Must have the same shape as
        `u_pred`. If not specified, the MSE is computed against zero, i.e., the
        norm of `u_pred`.
    - `domain_extent`: The extent `L` of the domain `Ω = (0, L)ᴰ`.
    - `low`: The lower cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `0`, meaning start it starts (including) the
        mean/zero mode.
    - `high`: The upper cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `N//2 + 1`, meaning it ends (including) at the
        Nyquist mode.
    """
    regular_mse = fourier_MSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=None,
    )
    first_derivative_mse = fourier_MSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=1,
    )
    return regular_mse + first_derivative_mse

exponax.metrics.H1_MAE ¤

H1_MAE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Optional[Float[Array, "C ... N"]] = None,
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None
) -> float

Compute the mean abolute error associated with the H1 norm, i.e., the MAE across state and all its first derivatives.

This is not consistent with the H1 norm because it uses a Fourier-based approach.

Tip

To apply this function to a state tensor with a leading batch axis, use jax.vmap. Then the batch axis can be reduced, e.g., by jnp.mean. As a helper for this, exponax.metrics.mean_metric is provided.

Warning

Not supplying domain_extent will have the result be orders of magnitude different.

Arguments:

  • u_pred: The state array. Must follow the Exponax convention with a leading channel axis, and either one, two, or three subsequent spatial axes.
  • u_ref: The reference state array. Must have the same shape as u_pred. If not specified, the MAE is computed against zero, i.e., the norm of u_pred.
  • domain_extent: The extent L of the domain Ω = (0, L)ᴰ.
  • low: The lower cutoff (inclusive) frequency for filtering. If not specified, it is set to 0, meaning start it starts (including) the mean/zero mode.
  • high: The upper cutoff (inclusive) frequency for filtering. If not specified, it is set to N//2 + 1, meaning it ends (including) at the Nyquist mode.
Source code in exponax/metrics/_derivative.py
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
def H1_MAE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Optional[Float[Array, "C ... N"]] = None,
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None,
) -> float:
    """
    Compute the mean abolute error associated with the H1 norm, i.e., the MAE
    across state and all its first derivatives.

    This is **not** consistent with the H1 norm because it uses a Fourier-based
    approach.

    !!! tip
        To apply this function to a state tensor with a leading batch axis, use
        `jax.vmap`. Then the batch axis can be reduced, e.g., by `jnp.mean`. As
        a helper for this, [`exponax.metrics.mean_metric`][] is provided.

    !!! warning
        Not supplying `domain_extent` will have the result be orders of
        magnitude different.


    **Arguments**:

    - `u_pred`: The state array. Must follow the `Exponax` convention
        with a leading channel axis, and either one, two, or three subsequent
        spatial axes.
    - `u_ref`: The reference state array. Must have the same shape as
        `u_pred`. If not specified, the MAE is computed against zero, i.e., the
        norm of `u_pred`.
    - `domain_extent`: The extent `L` of the domain `Ω = (0, L)ᴰ`.
    - `low`: The lower cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `0`, meaning start it starts (including) the
        mean/zero mode.
    - `high`: The upper cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `N//2 + 1`, meaning it ends (including) at the
        Nyquist mode.
    """
    regular_mae = fourier_MAE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=None,
    )
    first_derivative_mae = fourier_MAE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=1,
    )
    return regular_mae + first_derivative_mae

exponax.metrics.H1_RMSE ¤

H1_RMSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Optional[Float[Array, "C ... N"]] = None,
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None
) -> float

Compute the root mean squared error associated with the H1 norm, i.e., the RMSE across state and all its first derivatives.

Given the correct domain_extent, this is consistent with the norm in the H1 Sobolev space H^1 = W^(1,2): https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

Tip

To apply this function to a state tensor with a leading batch axis, use jax.vmap. Then the batch axis can be reduced, e.g., by jnp.mean. As a helper for this, exponax.metrics.mean_metric is provided.

Warning

Not supplying domain_extent will have the result be orders of magnitude different.

Arguments:

  • u_pred: The state array. Must follow the Exponax convention with a leading channel axis, and either one, two, or three subsequent spatial axes.
  • u_ref: The reference state array. Must have the same shape as u_pred. If not specified, the RMSE is computed against zero, i.e., the norm of u_pred.
  • domain_extent: The extent L of the domain Ω = (0, L)ᴰ.
  • low: The lower cutoff (inclusive) frequency for filtering. If not specified, it is set to 0, meaning start it starts (including) the mean/zero mode.
  • high: The upper cutoff (inclusive) frequency for filtering. If not specified, it is set to N//2 + 1, meaning it ends (including) at the Nyquist mode.
Source code in exponax/metrics/_derivative.py
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
def H1_RMSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Optional[Float[Array, "C ... N"]] = None,
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None,
) -> float:
    """
    Compute the root mean squared error associated with the H1 norm, i.e., the
    RMSE across state and all its first derivatives.

    Given the correct `domain_extent`, this is consistent with the norm in the
    H1 Sobolev space H^1 = W^(1,2):
    https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

    !!! tip
        To apply this function to a state tensor with a leading batch axis, use
        `jax.vmap`. Then the batch axis can be reduced, e.g., by `jnp.mean`. As
        a helper for this, [`exponax.metrics.mean_metric`][] is provided.

    !!! warning
        Not supplying `domain_extent` will have the result be orders of
        magnitude different.

    **Arguments**:

    - `u_pred`: The state array. Must follow the `Exponax` convention
        with a leading channel axis, and either one, two, or three subsequent
        spatial axes.
    - `u_ref`: The reference state array. Must have the same shape as
        `u_pred`. If not specified, the RMSE is computed against zero, i.e., the
        norm of `u_pred`.
    - `domain_extent`: The extent `L` of the domain `Ω = (0, L)ᴰ`.
    - `low`: The lower cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `0`, meaning start it starts (including) the
        mean/zero mode.
    - `high`: The upper cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `N//2 + 1`, meaning it ends (including) at the
        Nyquist mode.
    """
    regular_rmse = fourier_RMSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=None,
    )
    first_derivative_rmse = fourier_RMSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=1,
    )
    return regular_rmse + first_derivative_rmse

exponax.metrics.H1_nMSE ¤

H1_nMSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Float[Array, "C ... N"],
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None
) -> float

Compute the normalized mean squared error associated with the H1 norm, i.e., the nMSE across state and all its first derivatives.

Given the correct domain_extent, this is consistent with the relative squared norm in the H1 Sobolev space H^1 = W^(1,2): https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

Tip

To apply this function to a state tensor with a leading batch axis, use jax.vmap. Then the batch axis can be reduced, e.g., by jnp.mean. As a helper for this, exponax.metrics.mean_metric is provided.

Warning

Not supplying domain_extent will have the result be orders of magnitude different.

Arguments:

  • u_pred: The state array. Must follow the Exponax convention with a leading channel axis, and either one, two, or three subsequent spatial axes.
  • u_ref: The reference state array. Must have the same shape as u_pred.
  • domain_extent: The extent L of the domain Ω = (0, L)ᴰ.
  • low: The lower cutoff (inclusive) frequency for filtering. If not specified, it is set to 0, meaning start it starts (including) the mean/zero mode.
  • high: The upper cutoff (inclusive) frequency for filtering. If not specified, it is set to N//2 + 1, meaning it ends (including) at the Nyquist mode.
Source code in exponax/metrics/_derivative.py
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
def H1_nMSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Float[Array, "C ... N"],
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None,
) -> float:
    """
    Compute the normalized mean squared error associated with the H1 norm, i.e.,
    the nMSE across state and all its first derivatives.

    Given the correct `domain_extent`, this is consistent with the **relative**
    squared norm in the H1 Sobolev space H^1 = W^(1,2):
    https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

    !!! tip
        To apply this function to a state tensor with a leading batch axis, use
        `jax.vmap`. Then the batch axis can be reduced, e.g., by `jnp.mean`. As
        a helper for this, [`exponax.metrics.mean_metric`][] is provided.

    !!! warning
        Not supplying `domain_extent` will have the result be orders of
        magnitude different.

    **Arguments**:

    - `u_pred`: The state array. Must follow the `Exponax` convention
        with a leading channel axis, and either one, two, or three subsequent
        spatial axes.
    - `u_ref`: The reference state array. Must have the same shape as
        `u_pred`.
    - `domain_extent`: The extent `L` of the domain `Ω = (0, L)ᴰ`.
    - `low`: The lower cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `0`, meaning start it starts (including) the
        mean/zero mode.
    - `high`: The upper cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `N//2 + 1`, meaning it ends (including) at the
        Nyquist mode.
    """
    regular_nmse = fourier_nMSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=None,
    )
    first_derivative_nmse = fourier_nMSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=1,
    )
    return regular_nmse + first_derivative_nmse

exponax.metrics.H1_nMAE ¤

H1_nMAE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Float[Array, "C ... N"],
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None
) -> float

Compute the normalized mean abolute error associated with the H1 norm, i.e., the nMAE across state and all its first derivatives.

This is not consistent with the H1 norm because it uses a Fourier-based approach.

Tip

To apply this function to a state tensor with a leading batch axis, use jax.vmap. Then the batch axis can be reduced, e.g., by jnp.mean. As a helper for this, exponax.metrics.mean_metric is provided.

Warning

Not supplying domain_extent will have the result be orders of magnitude different.

Arguments:

  • u_pred: The state array. Must follow the Exponax convention with a leading channel axis, and either one, two, or three subsequent spatial axes.
  • u_ref: The reference state array. Must have the same shape as u_pred.
  • domain_extent: The extent L of the domain Ω = (0, L)ᴰ.
  • low: The lower cutoff (inclusive) frequency for filtering. If not specified, it is set to 0, meaning start it starts (including) the mean/zero mode.
  • high: The upper cutoff (inclusive) frequency for filtering. If not specified, it is set to N//2 + 1, meaning it ends (including) at the Nyquist mode.
Source code in exponax/metrics/_derivative.py
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
def H1_nMAE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Float[Array, "C ... N"],
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None,
) -> float:
    """
    Compute the normalized mean abolute error associated with the H1 norm, i.e.,
    the nMAE across state and all its first derivatives.

    This is **not** consistent with the H1 norm because it uses a Fourier-based
    approach.

    !!! tip
        To apply this function to a state tensor with a leading batch axis, use
        `jax.vmap`. Then the batch axis can be reduced, e.g., by `jnp.mean`. As
        a helper for this, [`exponax.metrics.mean_metric`][] is provided.

    !!! warning
        Not supplying `domain_extent` will have the result be orders of
        magnitude different.

    **Arguments**:

    - `u_pred`: The state array. Must follow the `Exponax` convention
        with a leading channel axis, and either one, two, or three subsequent
        spatial axes.
    - `u_ref`: The reference state array. Must have the same shape as
        `u_pred`.
    - `domain_extent`: The extent `L` of the domain `Ω = (0, L)ᴰ`.
    - `low`: The lower cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `0`, meaning start it starts (including) the
        mean/zero mode.
    - `high`: The upper cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `N//2 + 1`, meaning it ends (including) at the
        Nyquist mode.
    """
    regular_nmae = fourier_nMAE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=None,
    )
    first_derivative_nmae = fourier_nMAE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=1,
    )
    return regular_nmae + first_derivative_nmae

exponax.metrics.H1_nRMSE ¤

H1_nRMSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Float[Array, "C ... N"],
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None
) -> float

Compute the normalized root mean squared error associated with the H1 norm, i.e., the nRMSE across state and all its first derivatives.

Given the correct domain_extent, this is consistent with the relative norm in the H1 Sobolev space H^1 = W^(1,2): https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

Tip

To apply this function to a state tensor with a leading batch axis, use jax.vmap. Then the batch axis can be reduced, e.g., by jnp.mean. As a helper for this, exponax.metrics.mean_metric is provided.

Warning

Not supplying domain_extent will have the result be orders of magnitude different.

Arguments:

  • u_pred: The state array. Must follow the Exponax convention with a leading channel axis, and either one, two, or three subsequent spatial axes.
  • u_ref: The reference state array. Must have the same shape as u_pred.
  • domain_extent: The extent L of the domain Ω = (0, L)ᴰ.
  • low: The lower cutoff (inclusive) frequency for filtering. If not specified, it is set to 0, meaning start it starts (including) the mean/zero mode.
  • high: The upper cutoff (inclusive) frequency for filtering. If not specified, it is set to N//2 + 1, meaning it ends (including) at the Nyquist mode.
Source code in exponax/metrics/_derivative.py
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
def H1_nRMSE(
    u_pred: Float[Array, "C ... N"],
    u_ref: Float[Array, "C ... N"],
    *,
    domain_extent: float = 1.0,
    low: Optional[int] = None,
    high: Optional[int] = None,
) -> float:
    """
    Compute the normalized root mean squared error associated with the H1 norm,
    i.e., the nRMSE across state and all its first derivatives.

    Given the correct `domain_extent`, this is consistent with the **relative**
    norm in the H1 Sobolev space H^1 = W^(1,2):
    https://en.wikipedia.org/wiki/Sobolev_space#The_case_p_=_2

    !!! tip
        To apply this function to a state tensor with a leading batch axis, use
        `jax.vmap`. Then the batch axis can be reduced, e.g., by `jnp.mean`. As
        a helper for this, [`exponax.metrics.mean_metric`][] is provided.

    !!! warning
        Not supplying `domain_extent` will have the result be orders of
        magnitude different.

    **Arguments**:

    - `u_pred`: The state array. Must follow the `Exponax` convention
        with a leading channel axis, and either one, two, or three subsequent
        spatial axes.
    - `u_ref`: The reference state array. Must have the same shape as
        `u_pred`.
    - `domain_extent`: The extent `L` of the domain `Ω = (0, L)ᴰ`.
    - `low`: The lower cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `0`, meaning start it starts (including) the
        mean/zero mode.
    - `high`: The upper cutoff (inclusive) frequency for filtering. If not
        specified, it is set to `N//2 + 1`, meaning it ends (including) at the
        Nyquist mode.
    """
    regular_nrmse = fourier_nRMSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=None,
    )
    first_derivative_nrmse = fourier_nRMSE(
        u_pred,
        u_ref,
        domain_extent=domain_extent,
        low=low,
        high=high,
        derivative_order=1,
    )
    return regular_nrmse + first_derivative_nrmse