isidentical commited on
Commit
abbf2d7
1 Parent(s): de0845f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - text-to-image
5
+ ---
6
+ # AuraFlow
7
+
8
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6380ebb8471a4550ff255c62/jMkLXPFVNGdUb7P4nNTqX.png)
9
+
10
+
11
+ AuraFlow v0.1 is the largest, fully open-sourced, flow-based text-to-image generation model.
12
+
13
+ This model achieves state-of-the-art results on GenEval. Read blog post for more technical details.
14
+
15
+ The model is currently in beta. We are working on improving it and the community's feedback is important.
16
+ Join [fal's Discord](https://discord.gg/fal-ai) to give us feedback and stay in touch with the model development.
17
+
18
+ ## Usage
19
+
20
+ ```bash
21
+ $ pip install diffusers transformers accelerate protobuf sentencepiece
22
+ ```
23
+
24
+ ```python
25
+ from diffusers import AuraFlowPipeline
26
+ import torch
27
+
28
+ pipeline = AuraFlowPipeline(
29
+ "fal/AuraFlow",
30
+ torch_dtype=torch.float16
31
+ ).to("cuda")
32
+
33
+ image = pipeline(
34
+ 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.",
35
+ height=1024,
36
+ width=1024,
37
+ num_inference_steps=50,
38
+ generator=torch.Generator().manual_seed(666),
39
+ guidance_scale=3.5,
40
+ ).images[0]
41
+ ```