z-image: ConvRot safetensors loader - #2893
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for loading quantized Z-Image ConvRot checkpoints using the SDNQ format and adds a new single-file loader interface to
ZImageTransformer2DModel. It also includes comprehensive utilities for mapping, validating, and loading quantized weights, as well as new tests to verify the mapping logic and loader interface.Quantized checkpoint loading and mapping:
quantized_loading.py, which implements theload_zimage_comfy_convrot_checkpointfunction and associated helpers to load Z-Image ConvRot checkpoints in the SDNQ format, including key mapping, quantization metadata decoding, and module/buffer assignment. This enables efficient loading and usage of quantized models.Model API enhancements:
from_single_fileclassmethod toZImageTransformer2DModelfor convenient instantiation from a single-file checkpoint, delegating to the new quantized loader.ZImagemodel logic to defer loading assistant LoRA weights until after quantization if the model is in SDNQ mode, ensuring correct initialization order.Testing improvements:
from_single_fileloader interface, ensuring correct behavior and API coverage.