Dhruvanshu-Joshi

Results 11 comments of Dhruvanshu-Joshi

Hey @luosiqi The link is broken as the README was split into seperate READMEs in the ```incremental_learning``` and ```joint_inference``` subdirectory. I think simply directing the link to [incremental_learning_readme](https://github.com/kubeedge/sedna/blob/main/examples/storage/s3/incremental_learning/README.md) will solve...

No there was not any feature missing to be added. I'll solve the conflicts and push the updates asap.

Using a code along the above mentioned lines: ``` def rayleigh(scale=1.0, *, size=None, **kwargs): return chisquare(df=2, size=size, **kwargs) * as_tensor_variable(scale) ``` , the test: ``` def test_rayleigh_samples(): compare_sample_values(rayleigh) ``` fails...

Looks like an interesting issue. We'd just have to replace 0 with x in the ```local_0_dot_x``` right? Here's what I have in mind: ``` @register_canonicalize @register_stabilize @node_rewriter([Dot]) def local_1_dot_x(fgraph, node):...

Ohk. Just so that I get it correctly, for a given graph say ``` Sub [id A] ├─ dot [id B] │ ├─ dot [id C] │ │ ├─ Transpose{axes=[1,...

So if I correctly understand, we want to include all the ```pytensor.tensor``` functionalities in the user api right? Easiest way I can see is to include all the imports in...

Hi @jaharvey8 Are you still working on this PR? I'd like to take it up if you are not.

Hi @aspeers , are you still working on this?

https://colab.research.google.com/drive/1-GwLYGDIROVwk-PU0XrZdvy0hp7ddjB6?usp=sharing Hi, can anyone give this a quick check? I was basically trying to solve issue https://github.com/pymc-devs/pytensor/issues/537 and came up with a solution along this lines for CumOp. Also the...

Hi @ricardoV94 So in the following lines: https://github.com/pymc-devs/pytensor/blob/dbe0e09ae2a5f5d0119e0378259f843a95d36abc/pytensor/graph/op.py#L303-L304 will we want to add a warning whenever ```config.compute_test_value != "off"``` or in cases whenever ```compute_test_value``` is called? Going by the first...