We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b663fea commit 0a64f06Copy full SHA for 0a64f06
scoringrules/backend/jax.py
@@ -275,7 +275,7 @@ def inv(self, x: "Array") -> "Array":
275
return jnp.linalg.inv(x)
276
277
def cov(self, x: "Array", rowvar: bool = True, bias: bool = False) -> "Array":
278
- return jnp.cov(x, rowavar=rowvar, bias=bias)
+ return jnp.cov(x, rowvar=rowvar, bias=bias)
279
280
def det(self, x: "Array") -> "Array":
281
return jnp.linalg.det(x)
0 commit comments