1
0
Fork 0
onnx-web/api/onnx_web/chain/__init__.py

42 lines
691 B
Python

from .base import (
ChainPipeline,
PipelineStage,
StageCallback,
StageParams,
)
from .blend_img2img import (
blend_img2img,
)
from .blend_inpaint import (
blend_inpaint,
)
from .correct_gfpgan import (
correct_gfpgan,
)
from .persist_disk import (
persist_disk,
)
from .persist_s3 import (
persist_s3,
)
from .reduce_crop import (
reduce_crop,
)
from .reduce_thumbnail import (
reduce_thumbnail,
)
from .source_noise import (
source_noise,
)
from .source_txt2img import (
source_txt2img,
)
from .upscale_outpaint import (
upscale_outpaint,
)
from .upscale_resrgan import (
upscale_resrgan,
)
from .upscale_stable_diffusion import (
upscale_stable_diffusion,
)