Upload folder using huggingface_hub
Browse files- 31773249.jpeg +0 -0
- Magic of Art 2 (FLUX).safetensors +3 -0
- README.md +61 -0
31773249.jpeg
ADDED
Magic of Art 2 (FLUX).safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4308effd78010495e367f0fe587ce9e31e05d9152cddcf2b5425e75b3fa4666a
|
3 |
+
size 612755288
|
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=False&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- character
|
13 |
+
|
14 |
+
base_model: black-forest-labs/FLUX.1-dev
|
15 |
+
instance_prompt: Cinematic style
|
16 |
+
widget:
|
17 |
+
- text: 'Beauty, realism, chiaroscuro, cinematic quality, rays of light, play of shadow and light, Abstract lighting effects, Victorian style. Gothic girl in a masquerade mask in the Baroque style, with gold and indigo decorative details, rough style'
|
18 |
+
|
19 |
+
output:
|
20 |
+
url: >-
|
21 |
+
31773249.jpeg
|
22 |
+
|
23 |
+
---
|
24 |
+
|
25 |
+
# Magic of Art 2 (FLUX)
|
26 |
+
|
27 |
+
<Gallery />
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
([CivitAI](https://civitai.com/models/))
|
32 |
+
|
33 |
+
## Model description
|
34 |
+
|
35 |
+
<p>CFG Scale: 2.0 - 3.5 experiment with the values</p><p>Steps: 14 - 22 experiment with the values</p><p>Weight: 0.3 - 1.</p><p>Works well with weight: ( 0.6 - 0.8 ), experiment with weights up to 1</p>
|
36 |
+
|
37 |
+
## Trigger words
|
38 |
+
You should use `Cinematic style`, `Beauty`, `Realism`, `Photorealism`, `Chiaroscuro`, `High quality` to trigger the image generation.
|
39 |
+
|
40 |
+
|
41 |
+
## Download model
|
42 |
+
|
43 |
+
Weights for this model are available in Safetensors format.
|
44 |
+
|
45 |
+
[Download](/Keltezaa/magic-of-art-2-flux/tree/main) them in the Files & versions tab.
|
46 |
+
|
47 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
48 |
+
|
49 |
+
```py
|
50 |
+
from diffusers import AutoPipelineForText2Image
|
51 |
+
import torch
|
52 |
+
|
53 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
54 |
+
|
55 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
|
56 |
+
pipeline.load_lora_weights('Keltezaa/magic-of-art-2-flux', weight_name='Magic of Art 2 (FLUX).safetensors')
|
57 |
+
image = pipeline('Beauty, realism, chiaroscuro, cinematic quality, rays of light, play of shadow and light, Abstract lighting effects, Victorian style. Gothic girl in a masquerade mask in the Baroque style, with gold and indigo decorative details, rough style').images[0]
|
58 |
+
```
|
59 |
+
|
60 |
+
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|
61 |
+
|