Jesse Grabowski
Jesse Grabowski
So you know, you can run mypy locally from inside the pytensor project folder with `python scripts/run_mypy.py --verbose`. You then get a huge horrible read-out that you have to sift...
For the failed float32 test, make sure you set the atol and rtol much more relaxed when config.floatX is float32. Check the other tests to see what we do. We...
> I'm also wondering if checking tag, as I do [here](https://github.com/pymc-devs/pytensor/blob/5a660c63866939f5c67ae4ef91b2939a94b883e7/pytensor/tensor/rewriting/linalg.py#L1037), is necessary It's not necessary, but some Ops do put that flag. So we might as well check for...
Made some comments -- there are a few references to PyMC3 that need to be removed, plus a lot of nitpicks. The biggest problem is in the sampling. Every draw...
Random question: we have `pm.StickBreakingWeights`, is that something that could be used for this model instead of the hand-rolled function?
Ok. That doesn't sound worth it? I was just curious.
Related to #305 and #275
I rebased my fork used for the #548 PR, so as a short-term solution you can pip install that fork directly to get back these Ops with `pip install git+https://github.com/jessegrabowski/pytensor.git@restore-conv`....
I would like if this information actually lived on the compute graph, not just in the typehints. Symbolic reasoning about metadata has the potential to be extremely powerful and enable...
Yes, I believe it was for backwards compatibility with the now very, very distant past. tensor used to look like this: ```py def tensor(*args, **kwargs): name = kwargs.pop("name", None) return...