DonImages commited on
Commit
0e361a4
·
verified ·
1 Parent(s): d985a28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ else:
11
  raise ValueError("Hugging Face token not found. Please set it as a repository secret in the Space settings.")
12
 
13
  # Load the Stable Diffusion 3.5 model
14
- model_id = "stabilityai/stable-diffusion-3.5"
15
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
16
  pipe.to("cuda")
17
 
 
11
  raise ValueError("Hugging Face token not found. Please set it as a repository secret in the Space settings.")
12
 
13
  # Load the Stable Diffusion 3.5 model
14
+ model_id = "stabilityai/stable-diffusion-3.5-large"
15
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
16
  pipe.to("cuda")
17