We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4cdf33 commit 7fe1c81Copy full SHA for 7fe1c81
pytensor/tensor/math.py
@@ -1950,13 +1950,13 @@ def dot(l, r):
1950
1951
.. code:: python
1952
1953
- import pymc3 as pm
1954
- import theano.tensor as tt
+ import pymc as pm
+ import pytensor.tensor as pt
1955
1956
with pm.Model() as model:
1957
x = pm.Normal('x', mu=0, sd=1, shape=2)
1958
y = pm.Normal('y', mu=0, sd=1, shape=2)
1959
- z = tt.dot(x, y)
+ z = pt.dot(x, y)
1960
"""
1961
1962
if not isinstance(l, Variable):
0 commit comments