File size: 2,671 Bytes
ee147ba
 
 
 
 
 
0c551bd
 
 
ee147ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c73fc59
0c551bd
5f487d6
 
 
 
 
0c551bd
ee147ba
 
ee970a3
 
 
ee147ba
0c551bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ee147ba
0c551bd
ee147ba
 
0c551bd
c73fc59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- image-generation
- flux
- safetensors
widget:
- text: >-
    A purple lovely plush monster, sitting on the top of a high building in New
    York, looking up at the perspective, Times Square, there are some colored
    balloons, the ground is pink, billboards, rich design sense of the picture,
    excellent advertising ideas
  output:
    url: images/5217c705409cdf78f6d49b1bd234ced636694f580d03a0462679913b.jpg
- text: >-
    A cartoon 3D monkey lies in the middle of the city,aerial view,shift axis
    photography,
  output:
    url: images/51a716fb6fe9ba5d54c260b70e7ff661d38acedc7fb725552fa77bcf.jpg
- text: >-
    A colorful cartoon monkey sits on a bus as it rolls down the street in Times
    Square, New York
  output:
    url: images/c5dafa68197f677c6ba55e68e63e94afefe6cf710d80298adc62ab7b.jpg
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: null
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
---
# FLUX.1-dev-LoRA-live-3D

This is a LoRA (Live 3D) trained on FLUX.1-dev for 3D elements by [Hongke](https://www.shakker.ai/userpage/b1f1d4128cec474c8085576e6c9fb761/publish) on [Shakker AI](https://www.shakker.ai/modelinfo/0210878e637047c6bad4db62ebfcefe8?from=feed).

<div class="container">
  <img src="./poster.jpg" width="1024"/>
</div>


## Showcases
<Gallery />

## Trigger words
Trigger is not required. The recommended scale is `0.9` to `1.3` 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-live-3D", weight_name="FLUX-dev-lora-live_3D.safetensors")
pipe.fuse_lora(lora_scale=1.1)
pipe.to("cuda")

prompt = "A colorful cartoon monkey sits on a bus as it rolls down the street in Times Square, New York"

image = pipe(prompt, 
             num_inference_steps=24, 
             guidance_scale=3.5,
            ).images[0]
image.save(f"example.png")
```

## Online Inference

You can also download this model at [Shakker AI](https://www.shakker.ai/modelinfo/0210878e637047c6bad4db62ebfcefe8?from=feed), where we provide an online interface to generate images.


## Acknowledgements
This model is trained by our copyrighted users [Hongke](https://www.shakker.ai/userpage/b1f1d4128cec474c8085576e6c9fb761/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).