Michael O'Brien
Michael O'Brien
Thank you for answering this, this is all helpful to know. - In my case, I’ve been wrapping the SO(3) object into something somewhat akin to the SE(3) object. On...
Great, thanks for the update and no problem on the delay. The help is much appreciated!
Hello! Was also curious on this front. In particular, I am wondering if there are plans to support box constraints in BFGS, or if this can already be done in...
I suppose the equivalent would be something like ```python class ExpTransform(eqx.Module): log_array: jax.Array def __init__(self, array: jax.Array): self.log_array = jnp.log(array) def get(self): return jnp.exp(self.log_array) def is_exp(x): return isinstance(x, ExpTransform) def...
This makes sense. Yes it seems to me adding something in `eqx.field` would be somewhat equivalent to just controlling the definition of `PowerLaw`, whereas this is a bit more flexible....
To make sure I understand, if I want to make sure a quantity stays positive (for example), would you recommend 1. Check this in a `__check_init__` with `error_if` to make...
Okay, I see. Thank you for the help! I will definitely have instances where I init after a jit because I make heavy use of model ensembling, where I think...
I took a look at paramax---this looks really great! I wrote a small version of this inside my package, but if there are plans to keep this maintained I could...
Hello! I was wondering if there is an update on this PR. I make heavy use of `Self` in my library and would like to use the the import hook...
This is very helpful to know! Thank you for the update, this sounds like a good solution.