Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OneDiffCheckpointLoader #457

Merged
merged 7 commits into from
Dec 26, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update onediff_comfy_nodes/_nodes.py
Co-authored-by: Yao Chi <later@usopp.net>
  • Loading branch information
ccssu and doombeaker authored Dec 26, 2023
commit 05db45a5fc75bff26f41a74f64245a742afcdfb2
2 changes: 1 addition & 1 deletion onediff_comfy_nodes/_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def load_checkpoint(self, ckpt_name, output_vae=True, output_clip=True):

diffusion_model = model.model.diffusion_model
file_path = get_guess_graph_path(ckpt_name, diffusion_model)
print(f" OneDiffCheckpointLoaderSimple load_checkpoint file_path {file_path}")
print(f"OneDiff Checkpoint Loader is loading graph file: {file_path}")

oneflow_model = OneFlowSpeedUpModelPatcher(
model.model,
Expand Down
Loading