DigiP-AI commited on
Commit
2091d3e
·
verified ·
1 Parent(s): b45d5b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -26
app.py CHANGED
@@ -298,33 +298,33 @@ with gr.Blocks(theme=theme, css=css) as app:
298
  #gr.load("models/digiplay/AnalogMadness-realistic-model-v7")
299
  #gr.load("stabilityai/stable-diffusion-3-medium-diffusers")
300
  #model=gr.load("models/dvyio/flux-lora-film-noir")
301
- base_model_id = "Freepik/flux.1-lite-8B-alpha"
302
- torch_dtype = torch.bfloat16
303
- device = "cuda"
304
-
305
- # Load the pipe
306
- model_id = "Freepik/flux.1-lite-8B-alpha"
307
- pipe = FluxPipeline.from_pretrained(
308
- model_id, torch_dtype=torch_dtype
309
- ).to(device)
310
-
311
- # Inference
312
- prompt = "A close-up image of a green alien with fluorescent skin in the middle of a dark purple forest"
313
-
314
- guidance_scale = 3.5 # Keep guidance_scale at 3.5
315
- n_steps = 28
316
- seed = 11
317
 
318
- with torch.inference_mode():
319
- image = pipe(
320
- prompt=prompt,
321
- generator=torch.Generator(device="cpu").manual_seed(seed),
322
- num_inference_steps=n_steps,
323
- guidance_scale=guidance_scale,
324
- height=1024,
325
- width=1024,
326
- ).images[0]
327
- image.save("output.png")
 
 
 
 
 
 
 
 
 
 
 
 
 
328
 
329
 
330
 
 
298
  #gr.load("models/digiplay/AnalogMadness-realistic-model-v7")
299
  #gr.load("stabilityai/stable-diffusion-3-medium-diffusers")
300
  #model=gr.load("models/dvyio/flux-lora-film-noir")
301
+ base_model_id = "Freepik/flux.1-lite-8B-alpha"
302
+ torch_dtype = torch.bfloat16
303
+ device = "cuda"
 
 
 
 
 
 
 
 
 
 
 
 
 
304
 
305
+ # Load the pipe
306
+ model_id = "Freepik/flux.1-lite-8B-alpha"
307
+ pipe = FluxPipeline.from_pretrained(
308
+ model_id, torch_dtype=torch_dtype
309
+ ).to(device)
310
+
311
+ # Inference
312
+ prompt = "A close-up image of a green alien with fluorescent skin in the middle of a dark purple forest"
313
+
314
+ guidance_scale = 3.5 # Keep guidance_scale at 3.5
315
+ n_steps = 28
316
+ seed = 11
317
+
318
+ with torch.inference_mode():
319
+ image = pipe(
320
+ prompt=prompt,
321
+ generator=torch.Generator(device="cpu").manual_seed(seed),
322
+ num_inference_steps=n_steps,
323
+ guidance_scale=guidance_scale,
324
+ height=1024,
325
+ width=1024,
326
+ ).images[0]
327
+ image.save("output.png")
328
 
329
 
330