Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ __pycache__/
models/
.venv/
test_results/
.claude/
5 changes: 0 additions & 5 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
CoreMLConverter,
COREML_LOAD_LORA,
)
from coreml_suite.lcm import (
COREML_CONVERT_LCM,
)

NODE_CLASS_MAPPINGS = {
"CoreMLUNetLoader": CoreMLLoaderUNet,
Expand All @@ -22,7 +19,6 @@
"CoreMLModelAdapter": CoreMLModelAdapter,
"Core ML LoRA Loader": COREML_LOAD_LORA,
"Core ML Converter": CoreMLConverter,
"Core ML LCM Converter": COREML_CONVERT_LCM,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"CoreMLUNetLoader": "Load Core ML UNet",
Expand All @@ -31,5 +27,4 @@
"CoreMLModelAdapter": "Core ML Adapter (Experimental)",
"Core ML LoRA Loader": "Load LoRA to use with Core ML",
"Core ML Converter": "Convert Checkpoint to Core ML",
"Core ML LCM Converter": "Convert LCM to Core ML",
}
9 changes: 7 additions & 2 deletions coreml_suite/lcm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
from .nodes import COREML_CONVERT_LCM
"""LCM runtime support (sampler-side).

__all__ = ["COREML_CONVERT_LCM"]
The dedicated LCM converter node was removed once the standard ``CoreMLConverter``
gained model-version auto-detection (full-distill LCM is detected from the
checkpoint). What remains here is runtime sampling support — ``utils`` patches the
model sampling and supplies the guidance embedding when a converted UNet exposes
``timestep_cond``.
"""
144 changes: 0 additions & 144 deletions coreml_suite/lcm/converter.py

This file was deleted.

70 changes: 0 additions & 70 deletions coreml_suite/lcm/nodes.py

This file was deleted.

98 changes: 0 additions & 98 deletions coreml_suite/lcm/unet.py

This file was deleted.

Loading
Loading