Instructions to use tugan0329/flux-dev-otake with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use tugan0329/flux-dev-otake 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("tugan0329/flux-dev-otake") prompt = "A photo of a cartoon wolf OTAKE standing in a snowy winter scene, surrounded by softly falling snowflakes and frosted pine trees. The wolf is wearing a colorful parka with festive white patterns, a cozy red scarf, and a red Christmas hat with a fluffy white trim. OTAKE has a serious expression, gazing intently into the distance, with his orange fur contrasting against the snowy backdrop. The atmosphere is serene, capturing the chilly essence of Christmas day." image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Add generated example
#2
by tugan0329 - opened
- README.md +23 -6
- images/example_08ws8ls5l.png +0 -0
- images/example_ccvco2fyt.png +0 -0
- images/example_zkg8pbdty.png +0 -0
README.md
CHANGED
|
@@ -9,14 +9,31 @@ tags:
|
|
| 9 |
- diffusers
|
| 10 |
- lora
|
| 11 |
- replicate
|
| 12 |
-
base_model:
|
| 13 |
pipeline_tag: text-to-image
|
| 14 |
-
# widget:
|
| 15 |
-
# - text: >-
|
| 16 |
-
# prompt
|
| 17 |
-
# output:
|
| 18 |
-
# url: https://...
|
| 19 |
instance_prompt: OTAKE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
---
|
| 21 |
|
| 22 |
# Flux Dev Otake
|
|
|
|
| 9 |
- diffusers
|
| 10 |
- lora
|
| 11 |
- replicate
|
| 12 |
+
base_model: black-forest-labs/FLUX.1-dev
|
| 13 |
pipeline_tag: text-to-image
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
instance_prompt: OTAKE
|
| 15 |
+
widget:
|
| 16 |
+
- text: >-
|
| 17 |
+
A photo of a cartoon wolf OTAKE, sitting by a campfire roasting
|
| 18 |
+
marshmallows. The wolf is wearing a green hoodie and has a relaxed, content
|
| 19 |
+
expression.
|
| 20 |
+
example_title: Campfire
|
| 21 |
+
output:
|
| 22 |
+
url: images/example_zkg8pbdty.png
|
| 23 |
+
- text: >-
|
| 24 |
+
A photo of a cartoon wolf OTAKE, holding an umbrella in a rainy city street.
|
| 25 |
+
The orange wolf wears a navy blue trench coat and looks thoughtful.
|
| 26 |
+
example_title: Rainy Day
|
| 27 |
+
output:
|
| 28 |
+
url: images/example_08ws8ls5l.png
|
| 29 |
+
- text: >-
|
| 30 |
+
A photo of a cartoon wolf OTAKE, leaping through the air with a basketball
|
| 31 |
+
in hand. The orange wolf wears a red jersey and displays a determined
|
| 32 |
+
expression.
|
| 33 |
+
example_title: Basketball
|
| 34 |
+
output:
|
| 35 |
+
url: images/example_ccvco2fyt.png
|
| 36 |
+
|
| 37 |
---
|
| 38 |
|
| 39 |
# Flux Dev Otake
|
images/example_08ws8ls5l.png
ADDED
|
images/example_ccvco2fyt.png
ADDED
|
images/example_zkg8pbdty.png
ADDED
|