We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087e606 commit f116809Copy full SHA for f116809
1 file changed
uncertaintyx/b/jax.py
@@ -240,7 +240,7 @@ def inverse(c: Array) -> Array:
240
return c - 1.0 / c
241
242
def misfit(u: Array, _: None = None) -> Array:
243
- """The misfit function with quadratic transformation."""
+ """The misfit function with positive transformation."""
244
c_ = forward(u)
245
return 0.5 * jnp.vdot(c_, hvp(c_)) - jnp.vdot(c_, rhs)
246
0 commit comments