r"""A kind of Tensor that is to be considered a module parameter. Note: Operations happened on Parameter usually return a Tensor instead of Parameter. For example, with a Parameter ``x``, ``x.reshape/to/sum/...`` will result into a Tensor. Any operations between Paramete
| 286 | |
| 287 | |
| 288 | class Parameter(Tensor): |
| 289 | r"""A kind of Tensor that is to be considered a module parameter. |
| 290 | |
| 291 | Note: |
| 292 | Operations happened on Parameter usually return a Tensor instead of Parameter. |
| 293 | For example, with a Parameter ``x``, ``x.reshape/to/sum/...`` will result into a Tensor. |
| 294 | Any operations between Parameter and Tensor will have Tensor as outputs. |
| 295 | """ |