|
--- |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- image-generation |
|
- flux |
|
- safetensors |
|
widget: |
|
- text: >- |
|
A cartoon style couple takes a selfie in front of an Egyptian pyramid, which is composed of a man and a woman, both wearing sunglasses. Men wear blue shirts, jeans, and white shoes, while women wear yellow hats, blue jackets, white tops, orange dresses, and pink sneakers. Sand and a group of tourists in the distance. Integrating reality and cartoon elements., |
|
output: |
|
url: >- |
|
images/0cdc31d0ba74c10363c8d852c0396161955faea81a71ddae6486dfe6.jpg |
|
- text: >- |
|
In a picturesque village, a narrow cobblestone street with rustic stone buildings, colorful blinds, and lush green spaces, a cartoon man drawn with simple lines and solid colors stands in the foreground, wearing a red shirt, beige work pants, and brown shoes, carrying a strap on his shoulder. The scene features warm and enticing colors, a pleasant fusion of nature and architecture, and the camera's perspective on the street clearly shows the charming and quaint environment., Integrating elements of reality and cartoon. |
|
output: |
|
url: >- |
|
images/758843a06cf3a2bd115ad5867dbae0a90b1448393e3947aab722998f.jpg |
|
- text: >- |
|
A cartoon-style boy playing games in his living room, artistic style blends reality and illustration elements. |
|
output: |
|
url: >- |
|
images/d6a8f5293bc8b656715470bc769095480676b9c09cc2f618c2bc5ed6.jpg |
|
- text: >- |
|
A cartoon-style pianist is playing in the Golden Hall, and artistic style blends reality and illustration elements. |
|
output: |
|
url: >- |
|
images/c18f0cd86300781b762c71efc1e5167fd45c4cf205924fce656b5fb4.jpg |
|
- text: >- |
|
A cartoon-style basketball player, dunking on the NBA court, artistic style blends reality and illustration elements. |
|
output: |
|
url: >- |
|
images/223187b8b41a0a7ca54df8ab7d86cb7298c0101798d03c38e1c73fa7.jpg |
|
- text: >- |
|
A cartoon-style male singer, Concert, artistic style blends reality and illustration elements. |
|
output: |
|
url: >- |
|
images/f7a66b51c89896854f31bef743dc30f33c6ea3c0ed8f9ff04d24b702.jpg |
|
- text: >- |
|
A cartoon-style Donald Duck, walking on the street, the art style combines reality and illustration elements., |
|
output: |
|
url: >- |
|
images/4cc50fbb33109fd415633c36b165c8adf2b2e5dd4922b33d994e1efb.jpg |
|
- text: >- |
|
A cartoon-style Morty, walking on the street, the art style combines reality and illustration elements., |
|
output: |
|
url: >- |
|
images/283f28591783ee83c5955c2d799a9ae5277c2dcf8adfa4dae635ffb4.jpg |
|
- text: >- |
|
A cartoon-style Batman, walking on the street, the art style combines reality and illustration elements., |
|
output: |
|
url: >- |
|
images/eafbebe9347c7e4db23deeed4234d5ff893be7a2ca074afbcb47e3ef.jpg |
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: artistic style blends reality and illustration elements. |
|
license: other |
|
license_name: flux-1-dev-non-commercial-license |
|
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |
|
language: |
|
- en |
|
pipeline_tag: text-to-image |
|
library_name: diffusers |
|
--- |
|
# FLUX.1-dev-LoRA-Vector-Journey |
|
|
|
This is a LoRA (Vector Journey) trained on FLUX.1-dev for blended realistic illustration by [Muertu](https://www.shakker.ai/userpage/562c8ddb15e147c9b1c31878f865c901/publish), the front character is in illustration style, while the background is realistic. |
|
|
|
<div class="container"> |
|
<img src="./images/poster.jpeg" width="1024"/> |
|
</div> |
|
|
|
|
|
## Showcases |
|
<Gallery /> |
|
|
|
## Trigger words |
|
|
|
You should use `artistic style blends reality and illustration elements.` to trigger the image generation. The recommended scale is `0.8` to `1.0` in diffusers. |
|
|
|
## Inference |
|
|
|
```python |
|
import torch |
|
from diffusers import FluxPipeline |
|
|
|
pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16) |
|
pipe.load_lora_weights("Shakker-Labs/FLUX.1-dev-LoRA-Vector-Journey", weight_name="FLUX-dev-lora-Vector-Journey.safetensors") |
|
pipe.fuse_lora(lora_scale=1.0) |
|
pipe.to("cuda") |
|
|
|
prompt = "A cartoon-style Batman, walking on the street, the art style combines reality and illustration elements." |
|
|
|
image = pipe(prompt, |
|
num_inference_steps=24, |
|
guidance_scale=3.5, |
|
width=768, height=1024, |
|
).images[0] |
|
image.save(f"example.png") |
|
``` |
|
|
|
|
|
## Online Inference |
|
|
|
You can also download this model at [Shakker AI](https://www.shakker.ai/modelinfo/d09361045bf6453085007711b62f33f5?from=personal_page), where we provide an online interface to generate images. |
|
|
|
|
|
## Acknowledgements |
|
This model is trained by our copyrighted users [Muertu](https://www.shakker.ai/userpage/562c8ddb15e147c9b1c31878f865c901/publish). We release this model under permissions. The model follows [flux-1-dev-non-commercial-license](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md). |