isidentical
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -15,6 +15,9 @@ This model achieves state-of-the-art results on GenEval. Read our [blog post](ht
|
|
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
|
@@ -26,9 +29,9 @@ $ pip install git+https://github.com/huggingface/diffusers.git
|
|
26 |
from diffusers import AuraFlowPipeline
|
27 |
import torch
|
28 |
|
29 |
-
pipeline = AuraFlowPipeline(
|
30 |
-
|
31 |
-
|
32 |
).to("cuda")
|
33 |
|
34 |
image = pipeline(
|
|
|
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 |
+
Credits: A huge thank you to @cloneofsimo and @isidentical for bringing this project to life. It's incredible what two cracked engineers can achieve in
|
19 |
+
such a short period of time. We also extend our gratitude to the incredible researchers whose prior work laid the foundation for our efforts.
|
20 |
+
|
21 |
## Usage
|
22 |
|
23 |
```bash
|
|
|
29 |
from diffusers import AuraFlowPipeline
|
30 |
import torch
|
31 |
|
32 |
+
pipeline = AuraFlowPipeline.from_pretrained(
|
33 |
+
"fal/AuraFlow",
|
34 |
+
torch_dtype=torch.float16
|
35 |
).to("cuda")
|
36 |
|
37 |
image = pipeline(
|