gokaygokay commited on
Commit
8f81d82
·
verified ·
1 Parent(s): 873d0fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -17,6 +17,8 @@ from diffusers import FluxPipeline
17
 
18
  torch.backends.cuda.matmul.allow_tf32 = True
19
 
 
 
20
  class timer:
21
  def __init__(self, method_name="timed process"):
22
  self.method = method_name
@@ -30,7 +32,7 @@ class timer:
30
  if not path.exists(cache_path):
31
  os.makedirs(cache_path, exist_ok=True)
32
 
33
- pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16)
34
  pipe.load_lora_weights(hf_hub_download("gokaygokay/Flux-Game-Assets-LoRA-v2", "game_asst.safetensors"))
35
  pipe.fuse_lora(lora_scale=1)
36
  pipe.to(device="cuda", dtype=torch.bfloat16)
 
17
 
18
  torch.backends.cuda.matmul.allow_tf32 = True
19
 
20
+ huggingface_token = os.getenv("HUGGINGFACE_TOKEN")
21
+
22
  class timer:
23
  def __init__(self, method_name="timed process"):
24
  self.method = method_name
 
32
  if not path.exists(cache_path):
33
  os.makedirs(cache_path, exist_ok=True)
34
 
35
+ pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16, token=huggingface_token)
36
  pipe.load_lora_weights(hf_hub_download("gokaygokay/Flux-Game-Assets-LoRA-v2", "game_asst.safetensors"))
37
  pipe.fuse_lora(lora_scale=1)
38
  pipe.to(device="cuda", dtype=torch.bfloat16)