Skip to content

Commit 0a64f06

Browse files
committed
remove bug in jax cov function
1 parent b663fea commit 0a64f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scoringrules/backend/jax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def inv(self, x: "Array") -> "Array":
275275
return jnp.linalg.inv(x)
276276

277277
def cov(self, x: "Array", rowvar: bool = True, bias: bool = False) -> "Array":
278-
return jnp.cov(x, rowavar=rowvar, bias=bias)
278+
return jnp.cov(x, rowvar=rowvar, bias=bias)
279279

280280
def det(self, x: "Array") -> "Array":
281281
return jnp.linalg.det(x)

0 commit comments

Comments
 (0)