|
--- |
|
license: apache-2.0 |
|
language: |
|
- en |
|
base_model: |
|
- black-forest-labs/FLUX.1-dev |
|
tags: |
|
- lora |
|
- flux |
|
- diffusers |
|
- image-generation |
|
pipeline_tag: text-to-image |
|
library_name: diffusers |
|
instance_prompt: photo of a soonr style sculpture, Modern Sculpture |
|
widget: |
|
- text: >- |
|
photo of a soonr style sculpture of a militant gigantic cat, bigger than a |
|
mountain |
|
output: |
|
url: images/example_4zvivxso9.png |
|
- text: >- |
|
photo of a soonr style modern sculpture with an anti-war theme, eclectic |
|
elements, meta-modernism, radical experimental installation |
|
output: |
|
url: images/example_kahpg9hxt.png |
|
- text: >- |
|
photo of a soonr style meta-modern installation with spelling out the |
|
phrase: "MODERN SCULPTURE FLUX", eclectic elements, meta-modernism, radical |
|
experimental installation |
|
output: |
|
url: images/example_khg8juigv.png |
|
- text: >- |
|
photo of a soonr style modern sculptural monument with experimental abstract |
|
features and revolutionary eclectic elements, meta-modernism, modern |
|
installation, radical experimental installation, rebelling proletarians, an |
|
androgynous revolutionary sailor on the left and a Ukrainian Bolshevik |
|
cossack on the right. They are tying up and capturing a third: a flabby |
|
green malicious fanged top-hatted monster with clawed hands, and whose name |
|
is "Capital": title text atop. The image features a refined, modern design |
|
with stirring and vivid forms. Elaborate intricate fine details. Detailed |
|
realistic textures. Raw blemished textured surfaces and unpolished |
|
materials. Title text reads: “Capital” |
|
output: |
|
url: images/example_vloju8yje.png |
|
|
|
--- |
|
|
|
## (Meta-)Modern Sculpture Flux LoRA |
|
## ||| By SilverAgePoets.com ||| |
|
|
|
Fine-tuned on an eclectic mix of sculptures, monuments, & installations – most of them crafted in the 21st century – via photos taken at a range of European museums and galleries. <br> |
|
|
|
<Gallery /> |
|
|
|
## Trigger words |
|
You should use `photo of a soonr style sculpture`, and/or (optionally) `Modern Sculpture`, or ` Meta-Modern Monument`, to forge your own simulacral ghost of meaning given dimensions. <br> |
|
|
|
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) |
|
|
|
```py |
|
from diffusers import AutoPipelineForText2Image |
|
import torch |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda') |
|
pipeline.load_lora_weights('AlekseyCalvin/Modern_Sculpture_FLUXlora_BySilverAgePoets') |
|
image = pipeline('your prompt').images[0] |
|
``` |