prithivMLmods commited on
Commit
8094f2f
·
verified ·
1 Parent(s): 956cce8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -41,7 +41,7 @@ def randomize_seed_fn(seed: int, randomize_seed: bool) -> int:
41
  from diffusers import DiffusionPipeline
42
 
43
  base_model = "black-forest-labs/FLUX.1-dev"
44
- pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype="auto")
45
  lora_repo = "strangerzonehf/Flux-Super-Realism-LoRA"
46
  trigger_word = "Super Realism" # Leave blank if no trigger word is needed.
47
  pipe.load_lora_weights(lora_repo)
@@ -118,7 +118,7 @@ smol_processor = AutoProcessor.from_pretrained("HuggingFaceTB/SmolVLM2-2.2B-Inst
118
  smol_model = AutoModelForImageTextToText.from_pretrained(
119
  "HuggingFaceTB/SmolVLM2-2.2B-Instruct",
120
  _attn_implementation="flash_attention_2",
121
- torch_dtype="auto"
122
  ).to("cuda:0")
123
 
124
  # -------------------------------
 
41
  from diffusers import DiffusionPipeline
42
 
43
  base_model = "black-forest-labs/FLUX.1-dev"
44
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
45
  lora_repo = "strangerzonehf/Flux-Super-Realism-LoRA"
46
  trigger_word = "Super Realism" # Leave blank if no trigger word is needed.
47
  pipe.load_lora_weights(lora_repo)
 
118
  smol_model = AutoModelForImageTextToText.from_pretrained(
119
  "HuggingFaceTB/SmolVLM2-2.2B-Instruct",
120
  _attn_implementation="flash_attention_2",
121
+ torch_dtype=torch.bfloat16
122
  ).to("cuda:0")
123
 
124
  # -------------------------------