From f685981ed0e63af625db99b42863d9cd8a245176 Mon Sep 17 00:00:00 2001 From: Sayak Paul Date: Wed, 9 Apr 2025 08:38:17 +0530 Subject: [PATCH] [docs] minor updates to dtype map docs. (#11237) 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 d48004d740..afb6302fe5 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) ```