mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 09:14:35 +02:00
2b442bfabb
Signed-off-by: Vladimir Mandic <mandic00@live.com>
21 lines
565 B
Python
21 lines
565 B
Python
from dataclasses import dataclass
|
|
|
|
import numpy as np
|
|
import PIL.Image
|
|
|
|
from diffusers.utils import BaseOutput
|
|
|
|
|
|
@dataclass
|
|
class MageFlowPipelineOutput(BaseOutput):
|
|
"""
|
|
Output class for Mage-Flow pipelines.
|
|
|
|
Args:
|
|
images (`list[PIL.Image.Image]` or `np.ndarray`)
|
|
List of denoised PIL images of length `batch_size` or numpy array of shape `(batch_size, height, width,
|
|
num_channels)`. PIL images or numpy array present the denoised images of the diffusion pipeline.
|
|
"""
|
|
|
|
images: list[PIL.Image.Image] | np.ndarray
|