提交 62cf837e authored 作者: carriepl's avatar carriepl

Fix table presentation

上级 5ee7ee2d
...@@ -128,59 +128,16 @@ the gradients of the first Scan node. This new Scan might use mitmot outputs. ...@@ -128,59 +128,16 @@ the gradients of the first Scan node. This new Scan might use mitmot outputs.
To synthesise : To synthesise :
.. list_table:: Scan variables =========================================================== ===================================================== ========================================================== =========================================================== ========================================================= ======================================================
:widths: 30 30 30 Type of scan variables Corresponding outer input Corresponding inner input at timestep `t` (indexed from 0) Corresponding inner output at timestep `t` (indexed from 0) Corresponding outer output `t` Corresponding argument of the `theano.scan()` function
:header-rows: 1 =========================================================== ===================================================== ========================================================== =========================================================== ========================================================= ======================================================
Sequence Sequence of elements X Individual sequence element X[t] *No corresponding inner output* *No corresponding outer output* `sequences`
* - Type of scan variables Non-Sequence Any variable X Variable identical to X *No corresponding inner output* *No corresponding outer output* `non_sequences`
- Corresponding outer input Non-recurring output (nitsot) *No corresponding outer input* *No corresponding inner input* Output value at timestep `t` Concatenation of the values of the output at all timestep `outputs_info`
- Corresponding inner input at timestep `t` (indexed from 0) Singly-recurrent output (sitsot) Initial value (value at timestep `-1`) Output value at previous timestep (`t-1`) Output value at timestep `t` Concatenation of the values of the output at all timestep `outputs_info`
- Corresponding inner output at timestep `t` (indexed from 0) Multiply-recurrent output (mitsot) Initial values for the required timesteps where `t<0` Output value at previous required timesteps Output value at timestep `t` Concatenation of the values of the output at all timestep `outputs_info`
- Corresponding outer output `t` Multiply-recurrent multiple outputs (mitmot) Initial values for the required timesteps where `t<0` Output value at previous required timesteps Output values for current and multiple future timesteps Concatenation of the values of the output at all timestep *No corresponding argument*
- Corresponding argument of the `theano.scan()` function =========================================================== ===================================================== ========================================================== =========================================================== ========================================================= ======================================================
* - Sequence
- Sequence of elements X
- Individual sequence element X[t]
- *No corresponding inner output*
- *No corresponding outer output*
- `sequences`
* - Non-Sequence
- Any variable X
- Variable identical to X
- *No corresponding inner output*
- *No corresponding outer output*
- `non_sequences`
* - Non-recurring output (nitsot)
- *No corresponding outer input*
- *No corresponding inner input*
- Output value at timestep `t`
- Concatenation of the values of the output at all timestep
- `outputs_info`
* - Singly-recurrent output (sitsot)
- Initial value (value at timestep `-1`)
- Output value at previous timestep (`t-1`)
- Output value at timestep `t`
- Concatenation of the values of the output at all timestep
- `outputs_info`
* - Multiply-recurrent output (mitsot)
- Initial values for the required timesteps where `t<0`
- Output value at previous required timesteps
- Output value at timestep `t`
- Concatenation of the values of the output at all timestep
- `outputs_info`
* - Multiply-recurrent multiple outputs (mitmot)
- Initial values for the required timesteps where `t<0`
- Output value at previous required timesteps
- Output values for current and multiple future timesteps
- Concatenation of the values of the output at all timestep
- No corresponding argument. Mitmots cannot be created through
`theano.scan()`
Optimizations Optimizations
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论