Returns tensor of a parameter node, i.e., eye(n) across axes 0 and 2, where n is the size of the parameter.
(self, shape: tuple[int, ...], parameter_id: int)
| 997 | |
| 998 | @abstractmethod |
| 999 | def get_param_tensor(self, shape: tuple[int, ...], parameter_id: int) -> Any: |
| 1000 | """ |
| 1001 | Returns tensor of a parameter node, i.e., eye(n) across axes 0 and 2, where n is |
| 1002 | the size of the parameter. |
| 1003 | """ |
| 1004 | pass # noqa |
no outgoing calls