Ashoka74 commited on
Commit
8ed36a8
1 Parent(s): 9d2e1e1

Update app_merged.py

Browse files
Files changed (1) hide show
  1. app_merged.py +2 -2
app_merged.py CHANGED
@@ -95,11 +95,11 @@ transform_image = transforms.Compose(
95
  ]
96
  )
97
 
98
- hf_hub_download(repo_id="YarvixPA/FLUX.1-Fill-dev-gguf", filename="flux1-fill-dev-Q5_K_S.gguf", local_dir="models/")
99
 
100
 
101
  fill_pipe = FluxFillPipeline.from_single_file(
102
- "./models/FLUX.1-Fill-dev-gguf", torch_dtype=torch.bfloat16
103
  ).to("cuda")
104
 
105
 
 
95
  ]
96
  )
97
 
98
+ #hf_hub_download(repo_id="YarvixPA/FLUX.1-Fill-dev-gguf", filename="flux1-fill-dev-Q5_K_S.gguf", local_dir="models/")
99
 
100
 
101
  fill_pipe = FluxFillPipeline.from_single_file(
102
+ "https://huggingface.co/SporkySporkness/FLUX.1-Fill-dev-GGUF/raw/main/flux1-fill-dev-fp16-Q5_0-GGUF.gguf", torch_dtype=torch.bfloat16
103
  ).to("cuda")
104
 
105