Instructions to use SebastianBodza/flux_lora_aquarel_watercolor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use SebastianBodza/flux_lora_aquarel_watercolor with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("SebastianBodza/flux_lora_aquarel_watercolor") prompt = "A painting of a mountain climber reaching the summit of a peak, with the word 'ASCEND' appearing in the snow patterns on the mountain's surface. In a watercolor style, AQUACOLTOK. White background." image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
bodza commited on
Commit ·
cf656e8
1
Parent(s): 7726142
Add more examples
Browse files- README.md +20 -0
- images/bookstore.webp +0 -0
- images/coffee.webp +0 -0
- images/ted.webp +0 -0
- images/vintage.webp +0 -0
README.md
CHANGED
|
@@ -16,6 +16,26 @@ widget:
|
|
| 16 |
A painting of a mountain climber reaching the summit of a peak, with the word 'ASCEND' appearing in the snow patterns on the mountain's surface. In a watercolor style, AQUACOLTOK. White background.
|
| 17 |
output:
|
| 18 |
url: images/ascend.webp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
# Works best with the template:
|
|
|
|
| 16 |
A painting of a mountain climber reaching the summit of a peak, with the word 'ASCEND' appearing in the snow patterns on the mountain's surface. In a watercolor style, AQUACOLTOK. White background.
|
| 17 |
output:
|
| 18 |
url: images/ascend.webp
|
| 19 |
+
text: >-
|
| 20 |
+
A painting of a vintage-style travel poster, with a suitcase and globe in the foreground, and the words "Destination Unknown" printed in a beautiful, cursive font on a distressed luggage tag. In a watercolor style, AQUACOLTOK. White background.
|
| 21 |
+
output:
|
| 22 |
+
url: >-
|
| 23 |
+
images/vintage.webp
|
| 24 |
+
text: >-
|
| 25 |
+
A painting of a quaint, old-fashioned bookstore, with the words "Tales of Wonder" etched in gold lettering above the storefront. In a watercolor style, AQUACOLTOK. White background.
|
| 26 |
+
output:
|
| 27 |
+
url: >-
|
| 28 |
+
images/bookstore.webp
|
| 29 |
+
text: >-
|
| 30 |
+
A painting of a person giving a TED talk on a TED stage with the TED logo, "the speaker". In a watercolor style, AQUACOLTOK.
|
| 31 |
+
output:
|
| 32 |
+
url: >-
|
| 33 |
+
images/ted.webp
|
| 34 |
+
text: >-
|
| 35 |
+
A painting of a barista creating an intricate latte art design, with the "Coffee Creations" logo skillfully formed within the latte foam. In a watercolor style, AQUACOLTOK. White background.
|
| 36 |
+
output:
|
| 37 |
+
url: >-
|
| 38 |
+
images/coffee.webp
|
| 39 |
---
|
| 40 |
|
| 41 |
# Works best with the template:
|
images/bookstore.webp
ADDED
|
images/coffee.webp
ADDED
|
images/ted.webp
ADDED
|
images/vintage.webp
ADDED
|