David Pollack

Results 15 comments of David Pollack

@aa1607 https://gist.github.com/dhpollack/c4162aa9d29eec20df8c77d9273b651b That's the whole script. You can see that I am currently generating a sequence in one shot and not doing it one prediction at a time but you...

You can also use mm() if you make sure both items have 2 dimensions

The mm() function is normal matrix multiplication of 2d matrices. So if A is 5x3 and B is 3x5 then mm(A,B) is a 5x5 matrix and mm(B,A) is a 3x3...

yes, that is an easy fix, but it's more efficient to avoid for loops. I was playing with this code for a different application, but you can see below how...

yes, you could transpose a Nx1 vector and then use the for loop.

I was attempting to do all the multiplications in one shot and trying to avoid using squeeze/unsqueeze/view/cat operations as much as possible. I think avoiding those should make things faster...

@captainsafia I also built from master and get the following error: `ModuleNotFoundError: Module not found: Error: Can't resolve 'd3-contour'` I didn't see `d3-contour` in your PR on the vega-embed-v3 PR,...

I ended up using `std::vector` for what I needed, but it wasn't intuitive (nor am I even sure now it's the right way to do it). Specifically, the docs for...

I would also like this functionality. In case anyone else needs a workaround, you can always export a single context and then set your kubeconfig file. It would be nicer...

In our set up at work, we don't have event buses in the namespaces where the workflows run. Thus the "normal" behavior is that if one tries to deploy a...