| 15 | |
| 16 | @dataclass |
| 17 | class Flows(Manipulable): |
| 18 | forward: Float[Tensor, "batch pair flow_height flow_width 2"] |
| 19 | backward: Float[Tensor, "batch pair flow_height flow_width 2"] |
| 20 | forward_mask: Float[Tensor, "batch pair flow_height flow_width"] |
| 21 | backward_mask: Float[Tensor, "batch pair flow_height flow_width"] |
| 22 | |
| 23 | |
| 24 | T = TypeVar("T") |
no outgoing calls
no test coverage detected