Configuration for spatial tile processing.
| 11 | |
| 12 | @dataclass |
| 13 | class TileConfig: |
| 14 | """Configuration for spatial tile processing.""" |
| 15 | |
| 16 | tile_latents: dict |
| 17 | tile_guiding_latents: dict |
| 18 | tile_negative_index_latents: dict |
| 19 | tile_keyframes: torch.Tensor |
| 20 | keyframe_per_tile_indices: list |
| 21 | tile_normalizing_latents: dict |
| 22 | tile_height: int |
| 23 | tile_width: int |
| 24 | v: int |
| 25 | h: int |
| 26 | vertical_tiles: int |
| 27 | horizontal_tiles: int |
| 28 | first_seed: int |
| 29 | |
| 30 | |
| 31 | @dataclass |