This function exposes the underlying subspace operators. See :py:class:`Subspace` for detailed documentation.
(self, xl=None, xr=None, mode="A")
| 305 | return y |
| 306 | |
| 307 | def subspace_fun(self, xl=None, xr=None, mode="A"): |
| 308 | """ |
| 309 | This function exposes the underlying subspace operators. |
| 310 | See :py:class:`Subspace` for detailed documentation. |
| 311 | """ |
| 312 | return self.subspace(input=xr, input_left=xl, mode=mode) |
| 313 | |
| 314 | |
| 315 | class StackedModulatedSubspace(nn.Module): |