Benjamin Kurt Miller

Results 43 comments of Benjamin Kurt Miller

I thought I'd also follow up about this. After using the [workaround nyarly made](https://github.com/direnv/direnv/issues/106#issuecomment-41106721), I get the following message when tmux starts from within a folder with `.envrc`. ``` home//.tmux.conf:6:...

Mathematically, this should be simple. Programmatically, it is not yet implemented. It's a good idea and I'll add it as a feature request.

Just to clarify this, https://arxiv.org/abs/2011.13951 should contain all the necessary math.

Hmm... Further testing finds that `a = dist.sample()` `a.cdf().icdf() != a` even for pytorch normal distributions... it works consistently with `atol=1e-4` and `rtol=1e-3`.

interpolated prior maps from v to u accurately using the same tolerance as in the last post. however, maping from u to v is incredibly inaccurate. I did not find...

Since the creator of this function @cweniger hasn't yet weighed in, I'm going to move this to long term. We can get it in the next release.

I like what you propose, but I haven't groked how this may affect the new store definition. I suppose we should try to merge the new store specification first then...

the notebooks from master have been brought into simplify now.

This is a big problem. It is absurd how long it takes to load data using this storage method. It is an issue with memory store as well. A simple...

You can generate a matrix and do the command in numpy in 24 ms. ```python %%timeit a = np.random.rand(1024, 4096) a.mean(axis=0) ```