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 0309c98 commit 691269eCopy full SHA for 691269e
gmmx/fit.py
@@ -162,4 +162,4 @@ def em_cond(
162
init_val=(x, gmm, 0, jnp.asarray(jnp.inf), jnp.array(jnp.inf)),
163
)
164
result = jax.block_until_ready(result)
165
- return EMFitterResult(*result, converged=result[2] < self.max_iter)
+ return EMFitterResult(*result, converged=result[2] < self.max_iter) # type: ignore [misc]
0 commit comments