File size: 325 Bytes
955dd47 d805dce bd029c7 955dd47 d805dce bd029c7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # ip_adapter/__init__.py
from .resampler import Resampler
from .utils import is_torch2_available
# pas obligatoire pour marcher, mais tu peux ajouter :
# from .attention_processor import AttnProcessor, IPAttnProcessor
__all__ = [
"Resampler",
"is_torch2_available",
# "AttnProcessor",
# "IPAttnProcessor",
] |