optimistix icon indicating copy to clipboard operation
optimistix copied to clipboard

Nonlinear optimisation (root-finding, least squares, ...) in JAX+Equinox. https://docs.kidger.site/optimistix/

Results 19 optimistix issues
Sort by recently updated
recently updated
newest added

You are probably aware of this. But on the off chance it wasn't on your radar this might be useful for optimistix: https://github.com/google/autobound

question

Hi everyone, thanks for the great library and apologies in advance for this basic question. I'm trying to find the true minimum of a small neural network, and I thought...

question

Running the basic example produces: ![image](https://github.com/patrick-kidger/optimistix/assets/2869853/60cf8d99-d8f3-44a5-bc22-0c9a590accd6) when using the dependencies ![image](https://github.com/patrick-kidger/optimistix/assets/2869853/54d6f6eb-3675-4364-b38e-a8c7bf8bb742) Switching to 0.4.26 on both jax and jaxlib removes the error

- [ ] Hager--Zhang - [ ] Moré--Thunte c.f. also zoom.

feature

Hi @patrick-kidger and @packquickly, I was trying to implement the following meta-learning example from jax-opt in optimistix: [Few-shot Adaptation with Model Agnostic Meta-Learning ](https://jaxopt.github.io/stable/notebooks/implicit_diff/maml.html). However, I ran into an issue...

Dear optimistix team, First of all, thank you for your effort in developing optimistix. I have recently transitioned from JAXOpt, and I love it! I was wondering if it is...

feature

I'm running into some trouble applying `optimistix.least_squares(fn, LevenbergMarquardt(...), x0)` to certain problems. From the error message below, my understanding of the root cause is that forward-mode autodiff cannot be used...

feature

Hi, thank you for the amazing library! I was wondering if minimizing with user-specified bounds, or algorithms like projected gradient descent are supported? If not, what would be the best...

feature
question

Hi, I'm not sure if this is the desired behavior, but BFGS directly stops if `f(y0) == 0`. As an example : ```python from optimistix import minimise, BFGS, rms_norm import...

bug

Hi, I was trying to run the example given in "optimistix/docs/examples /optimise_diffeq.ipynb". For some reason I am receiving error "--------------------------------------------------------------------------- ValueError Traceback (most recent call last) __________________________________________________________________ Cell 4 line...

question