gojiteji commited on
Commit
57e2f92
1 Parent(s): e4174c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -61,4 +61,7 @@ pipeline, params = FlaxStableDiffusionPipeline.from_pretrained(
61
  use_auth_token = HF_ACCESS_TOKEN,
62
  revision="bf16",
63
  dtype=jnp.bfloat16,
64
- )
 
 
 
 
61
  use_auth_token = HF_ACCESS_TOKEN,
62
  revision="bf16",
63
  dtype=jnp.bfloat16,
64
+ )
65
+
66
+ prompts = ["apple"] * 1
67
+ images = sd2_inference(pipeline, prompts, params, seed = 42, num_inference_steps = 1 )