cloneofsimo commited on
Commit
f11fd02
1 Parent(s): b1e504e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -6
README.md CHANGED
@@ -5,7 +5,8 @@ tags:
5
  ---
6
  # AuraFlow v0.3
7
 
8
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6380ebb8471a4550ff255c62/jMkLXPFVNGdUb7P4nNTqX.png)
 
9
 
10
 
11
  AuraFlow v0.3 is the fully open-sourced largest flow-based text-to-image generation model. The model was trained with more compute compared to the previous version, [AuraFlow-v0.2](https://huggingface.co/fal/AuraFlow-v0.2).
@@ -32,17 +33,17 @@ from diffusers import AuraFlowPipeline
32
  import torch
33
 
34
  pipeline = AuraFlowPipeline.from_pretrained(
35
- "fal/AuraFlow-v0.2",
36
  torch_dtype=torch.float16,
37
  variant="fp16",
38
  ).to("cuda")
39
 
40
  image = pipeline(
41
- prompt="close-up portrait of a majestic iguana with vibrant blue-green scales, piercing amber eyes, and orange spiky crest. Intricate textures and details visible on scaly skin. Wrapped in dark hood, giving regal appearance. Dramatic lighting against black background. Hyper-realistic, high-resolution image showcasing the reptile's expressive features and coloration.",
42
- height=1024,
43
- width=1024,
44
  num_inference_steps=50,
45
- generator=torch.Generator().manual_seed(666),
46
  guidance_scale=3.5,
47
  ).images[0]
48
 
 
5
  ---
6
  # AuraFlow v0.3
7
 
8
+
9
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6311151c64939fabc00c8436/BcH5xyGCGNnkmPC-OPS9z.png)
10
 
11
 
12
  AuraFlow v0.3 is the fully open-sourced largest flow-based text-to-image generation model. The model was trained with more compute compared to the previous version, [AuraFlow-v0.2](https://huggingface.co/fal/AuraFlow-v0.2).
 
33
  import torch
34
 
35
  pipeline = AuraFlowPipeline.from_pretrained(
36
+ "fal/AuraFlow-v0.3",
37
  torch_dtype=torch.float16,
38
  variant="fp16",
39
  ).to("cuda")
40
 
41
  image = pipeline(
42
+ prompt="rempage of the iguana character riding F1, fast and furious, cinematic movie poster",
43
+ width=1536,
44
+ height=768,
45
  num_inference_steps=50,
46
+ generator=torch.Generator().manual_seed(1),
47
  guidance_scale=3.5,
48
  ).images[0]
49