err_funcs

A module with ARMC error functions.

Index

mse_normalized(qm, mm)

Return a normalized mean square error (MSE) over the flattened input.

mse_normalized_weighted(qm, mm)

Return a normalized mean square error (MSE) over the flattened subarrays of the input.

mse_normalized_max(qm, mm)

Return the maximum normalized mean square error (MSE) over the flattened subarrays of the input.

mse_normalized_v2(qm, mm)

Return a normalized mean square error (MSE) over the flattened input.

mse_normalized_weighted_v2(qm, mm)

Return a normalized mean square error (MSE) over the flattened subarrays of the input.

default_error_func(qm, mm)

Return a normalized mean square error (MSE) over the flattened input.

API

FOX.armc.mse_normalized(qm, mm)[source]

Return a normalized mean square error (MSE) over the flattened input.

FOX.armc.mse_normalized_weighted(qm, mm)[source]

Return a normalized mean square error (MSE) over the flattened subarrays of the input.

>1D array-likes are herein treated as stacks of flattened arrays.

FOX.armc.mse_normalized_max(qm, mm)[source]

Return the maximum normalized mean square error (MSE) over the flattened subarrays of the input.

>1D array-likes are herein treated as stacks of flattened arrays.

FOX.armc.mse_normalized_v2(qm, mm)[source]

Return a normalized mean square error (MSE) over the flattened input.

Normalize before squaring the error.

FOX.armc.mse_normalized_weighted_v2(qm, mm)[source]

Return a normalized mean square error (MSE) over the flattened subarrays of the input.

>1D array-likes are herein treated as stacks of flattened arrays.

Normalize before squaring the error.

FOX.armc.err_normalized(qm, mm)[source]

Return a normalized wrror over the flattened input.

Normalize before taking the exponent - 1 of the error.

FOX.armc.err_normalized_weighted(qm, mm)[source]

Return a normalized error over the flattened subarrays of the input.

>1D array-likes are herein treated as stacks of flattened arrays.

FOX.armc.default_error_func = FOX.armc.mse_normalized

An alias for FOX.arc.mse_normalized().