Dan J Bower
Dan J Bower
Hopefully this is trivial, but I'm having trouble accessing the success/not result of the solver: Code snippet: ``` solver = optx.Newton(rtol=tol, atol=tol) sol = optx.root_find( self.objective_function, solver, initial_solution_guess, args=(constraints,), )...
Just FYI, a future fix may be warranted. You can reproduce with the root finding example by swapping out the solver for the LM solver. Running with JAX 0.4.31 and...
Similar to #74, I'm in the process of swapping in optimistix for a previous solver. The system I'm solving is a relatively small chemical network with mass balance (so think...
I'm using Jax 0.5.2, equinox 0.11.12, optax 0.2.4. I am trying to pass optimistix solvers into a partially jitted function. Newton works perfectly, but DogLeg/LM are throwing the same error....
I have a design pattern as below, which works when I use `@jit` on the class method `func` but fails with a `TypeError` when I use `@eqx.filter_jit`. Perhaps naively I...