From a820f006b02b4b8bff694821710267e856632723 Mon Sep 17 00:00:00 2001 From: sayakpaul Date: Wed, 9 Apr 2025 08:30:09 +0530 Subject: [PATCH] minor updates to dtype map docs. --- docs/source/en/using-diffusers/loading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/using-diffusers/loading.md b/docs/source/en/using-diffusers/loading.md index d48004d7400c..afb6302fe5d7 100644 --- a/docs/source/en/using-diffusers/loading.md +++ b/docs/source/en/using-diffusers/loading.md @@ -105,7 +105,7 @@ import torch pipe = HunyuanVideoPipeline.from_pretrained( "hunyuanvideo-community/HunyuanVideo", - torch_dtype={'transformer': torch.bfloat16, 'default': torch.float16}, + torch_dtype={"transformer": torch.bfloat16, "default": torch.float16}, ) print(pipe.transformer.dtype, pipe.vae.dtype) # (torch.bfloat16, torch.float16) ```