cloneofsimo
commited on
Commit
•
f11fd02
1
Parent(s):
b1e504e
Update README.md
Browse files
README.md
CHANGED
@@ -5,7 +5,8 @@ tags:
|
|
5 |
---
|
6 |
# AuraFlow v0.3
|
7 |
|
8 |
-
|
|
|
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.
|
36 |
torch_dtype=torch.float16,
|
37 |
variant="fp16",
|
38 |
).to("cuda")
|
39 |
|
40 |
image = pipeline(
|
41 |
-
prompt="
|
42 |
-
|
43 |
-
|
44 |
num_inference_steps=50,
|
45 |
-
generator=torch.Generator().manual_seed(
|
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 |
|