提交 38a8858d authored 作者: Chiheb Trabelsi's avatar Chiheb Trabelsi

doc/tutorial/broadcasting.txt has been modified so it doesn't generate an error…

doc/tutorial/broadcasting.txt has been modified so it doesn't generate an error message during the documentation generation test.
上级 0b6c36b6
...@@ -34,6 +34,9 @@ information is given in the :ref:`type` of a *Variable*. ...@@ -34,6 +34,9 @@ information is given in the :ref:`type` of a *Variable*.
The following code illustrates how rows and columns are broadcasted in order to perform an addition operation with a matrix: The following code illustrates how rows and columns are broadcasted in order to perform an addition operation with a matrix:
>>> import numpy as np
>>> import theano
>>> import theano.tensor as T
>>> r = T.row() >>> r = T.row()
>>> r.broadcastable >>> r.broadcastable
(True, False) (True, False)
...@@ -65,8 +68,8 @@ array([[0], ...@@ -65,8 +68,8 @@ array([[0],
>>> M = np.arange(9).reshape(3, 3) >>> M = np.arange(9).reshape(3, 3)
>>> f_col(C, M) >>> f_col(C, M)
[array([[ 0., 1., 2.], [array([[ 0., 1., 2.],
[ 4., 5., 6.], [ 4., 5., 6.],
[ 8., 9., 10.]])] [ 8., 9., 10.]])]
In these examples, we can see that both the row vector and the column vector are broadcasted in order to be be added to the matrix. In these examples, we can see that both the row vector and the column vector are broadcasted in order to be be added to the matrix.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论