Skip to content

Commit f116809

Browse files
authored
Change misfit function transformation description
Updated the misfit function's transformation description from 'quadratic' to 'positive'.
1 parent 087e606 commit f116809

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

uncertaintyx/b/jax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def inverse(c: Array) -> Array:
240240
return c - 1.0 / c
241241

242242
def misfit(u: Array, _: None = None) -> Array:
243-
"""The misfit function with quadratic transformation."""
243+
"""The misfit function with positive transformation."""
244244
c_ = forward(u)
245245
return 0.5 * jnp.vdot(c_, hvp(c_)) - jnp.vdot(c_, rhs)
246246

0 commit comments

Comments
 (0)