We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79a1d31 commit db47e42Copy full SHA for db47e42
scripts/convert_sd3_to_diffusers.py
@@ -284,7 +284,7 @@ def main(args):
284
raise ValueError(f"Unsupported dtype: {args.dtype}")
285
286
if dtype != original_dtype:
287
- print(f"Checkpoint dtype {original_dtype} does not match requested dtype {dtype}")
+ print(f"Checkpoint dtype {original_dtype} does not match requested dtype {dtype}. This can lead to unexpected results, proceed with caution.")
288
289
num_layers = list(set(int(k.split(".", 2)[1]) for k in original_ckpt if "joint_blocks" in k))[-1] + 1 # noqa: C401
290
0 commit comments