Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions examples/models/stable_diffusion_3_5_large/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2026 Arm Limited and/or its affiliates.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

from .export_sd3_5_large import parse_component, parse_dtype, SD35LargeExporter
from .model import (
MODEL_ID,
SD3CLIPTextEncoderWrapper,
SD3T5TextEncoderWrapper,
SD3TransformerWrapper,
SD3VAEDecoderWrapper,
StableDiffusion3ModelLoader,
StableDiffusionComponent,
)

__all__ = [
"MODEL_ID",
"SD35LargeExporter",
"SD3CLIPTextEncoderWrapper",
"SD3T5TextEncoderWrapper",
"SD3TransformerWrapper",
"SD3VAEDecoderWrapper",
"StableDiffusion3ModelLoader",
"StableDiffusionComponent",
"parse_component",
"parse_dtype",
]
Loading
Loading