1
0
mirror of https://github.com/vladmandic/sdnext.git synced 2026-01-29 05:02:09 +03:00
Files
sdnext/scripts/lbm/unets/__init__.py
Vladimir Mandic 2b9056179d add lbm background replace with relightining
Signed-off-by: Vladimir Mandic <mandic00@live.com>
2025-07-04 15:33:16 -04:00

16 lines
437 B
Python

"""
This module contains a collection of U-Net models.
The :mod:`cr.models.unets` module includes the following classes:
- :class:`DiffusersUNet2DWrapper`: A 2D U-Net model for diffusers.
- :class:`DiffusersUNet2DCondWrapper`: A 2D U-Net model for diffusers with conditional input.
"""
from .unet import DiffusersUNet2DCondWrapper, DiffusersUNet2DWrapper
__all__ = [
"DiffusersUNet2DWrapper",
"DiffusersUNet2DCondWrapper",
]