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

24 lines
413 B
Python
Raw Normal View History

from .base import (
ChainPipeline,
PipelineStage,
StageCallback,
StageParams,
)
from .correct_gfpgan import (
correct_gfpgan,
)
from .generate_txt2img import (
generate_txt2img,
)
2023-01-28 15:08:59 +00:00
from .persist_disk import (
persist_disk,
)
from .upscale_outpaint import (
upscale_outpaint,
)
from .upscale_resrgan import (
upscale_resrgan,
)
from .upscale_stable_diffusion import (
upscale_stable_diffusion,
)