zombie-einstein
zombie-einstein
Think this is the same issue as this https://github.com/jeremiecoullon/jax-tqdm/issues/12 , comments there may help you
> I think the following is related. On jax 0.4.28 I get `KeyError: 0` in `_update_tqdm` from `tqdm_bars[0].update(arg)`, even when iterations begin at 0. I've actually been meaning to file...
> > > I think the following is related. On jax 0.4.28 I get `KeyError: 0` in `_update_tqdm` from `tqdm_bars[0].update(arg)`, even when iterations begin at 0. > > > >...
I wonder if the `ordered` flag [here](https://jax.readthedocs.io/en/latest/_autosummary/jax.debug.callback.html#jax-debug-callback)is what we are looking for?
Hi @sash-a, I was thinking that the use of a more realistic drone-like flight model, reusing the local vision model from search-and -rescue environment, and increasing the scale of the...
I figured circles are easy enough to get the overlap with, I was picturing a larger circular area that the agents need to cover (rather than individual targets) with their...
## Update Checklist - [ ] bin_pack - [ ] cleaner - [ ] connector - [x] cvrp - [ ] flat_pack - [ ] game_2048 - [x] graph_coloring -...
> Thanks for a lot for this nice package! Thanks, glad you are making use of it! > I was trying to find the graph for the gradient operation and...
I think the issue here is not jit compiling the function, so ```python import jax import jpviz def func(x): return x**2 dot_graph = jpviz.draw(jax.jit(jax.grad(func)), collapse_primitives=False)(1.0) jpviz.view_pydot(dot_graph) ``` should work? I've...
In fact this seems to work ok if in line 1736 in `.../modin/core/dataframe/pandas/dataframe/dataframe.py` ``` 1735 # Assume that the dtype is a scalar. -> 1736 if not (col_dtypes == self_dtypes).all():...