File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change
1
+ .. automodule :: pytensor.tensor.functional
2
+ :members: vectorize
Original file line number Diff line number Diff line change 1
1
.. _libdoc_tensor :
2
2
3
- ==================================================
4
- :mod: `tensor ` -- Types and Ops for Symbolic numpy
5
- ==================================================
3
+ ===============================================
4
+ :mod: `tensor ` -- Tensor operations in PyTensor
5
+ ===============================================
6
6
7
7
.. module :: tensor
8
- :platform: Unix, Windows
9
- :synopsis: symbolic types and operations for n-dimensional arrays.
10
- .. moduleauthor :: LISA
11
8
12
- Theano's strength is in expressing symbolic calculations involving tensors.
13
- There are many types of symbolic expressions for tensors.
14
- They are grouped into the following sections:
9
+ PyTensor's strength is in expressing symbolic calculations involving tensors.
10
+
11
+ PyTensor tries to emulate the numpy interface as much as possible in the tensor module.
12
+ This means that once TensorVariables are created, it should be possibly to define
13
+ symbolic expressions using calls that look just like numpy calls, such as
14
+ `pt.exp(x).transpose(0, 1)[:, None] `
15
+
15
16
16
17
17
18
.. toctree ::
@@ -29,3 +30,4 @@ They are grouped into the following sections:
29
30
conv
30
31
math_opt
31
32
basic_opt
33
+ functional
You can’t perform that action at this time.
0 commit comments