Change backend from sparse to np.array.
(self)
| 2661 | return cast("Variable", out) |
| 2662 | |
| 2663 | def _to_dense(self) -> Variable: |
| 2664 | """ |
| 2665 | Change backend from sparse to np.array. |
| 2666 | """ |
| 2667 | out = super()._to_dense() |
| 2668 | return cast("Variable", out) |
| 2669 | |
| 2670 | def chunk( # type: ignore[override] |
| 2671 | self, |
no outgoing calls