bion howard

Results 183 comments of bion howard

nevermind, i figured it out, ```toml [jobs._] # other config on_success = "scroll-to-bottom" on_failure = "scroll-to-bottom" ```

bump, I could really use a way to get a jaxpr abstractly without needing to pass inputs, because in my testing cloudpickle of jax jitted functions today, I found the...

ah, nevermind, standard vector matrix einsum works. ```py def jnp_func4(x, y): return jnp.einsum("x,xy->y", x, y) jitted4 = jax.jit(jnp_func4) rng = jax.random.key(42) rng1, rng2, rng3 = jax.random.split(rng, 3) x1 = jax.random.uniform(rng1,...

seems critical to have plots for publication, otherwise why not just use matplotlib? would be more performant to use canvas than svg and much easier to save http://bl.ocks.org/biovisualize/8187844

Would it be possible to get the pyproject.toml working and post wheels on pypi? a "pip install pymol" and "pip install -e ." for the repo, would enable more broad...

I'm confused, you're saying PyMol is "third party" and won't be maintained?

bump, it would be truly awesome if jiff zoned datetimes / timestamps could "just work" with postgres using sqlx ... i'm trying the sqlx chrono feature and somehow my 2025...

could it be possible to add a "suggest edit to this doc" link on each of the docs pages? then we could jump more directly from reading to suggesting edits...

struggling with this today just trying to get an apples-to-apples benchmark (wall clock time doesn't cut it since different computers operate at different speeds), could it be possible to fix...

for me it was an extra "include" and "torch" if you have a trailing one export LIBTORCH_INCLUDE=/home/bion/hax/externals/pytorch/torch/csrc/api no trailing /include because the build.rs might add that path part again non-idempotently...