Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: flux-1-dev-non-commercial-license
|
| 4 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- flux
|
| 9 |
+
- diffusers
|
| 10 |
+
- lora
|
| 11 |
+
- replicate
|
| 12 |
+
base_model: black-forest-labs/FLUX.1-dev
|
| 13 |
+
pipeline_tag: text-to-image
|
| 14 |
+
instance_prompt: thalian_elenian elf
|
| 15 |
+
widget:
|
| 16 |
+
- text: >-
|
| 17 |
+
(SFW) Photorealistic photography of a Tech priestess, A circuit embedded
|
| 18 |
+
hooded person with with intricate cybernetic pupils on her eyes, looking at
|
| 19 |
+
viewer, her white hair glowing in the dark, with blue binary code floating
|
| 20 |
+
around in a digital world. Seated cross-legged on the floor, surrounded by
|
| 21 |
+
floating data streams. Hands forming a round shape, with a glowing symbol in
|
| 22 |
+
the center. a bunch of random numbers and binary code floating around her
|
| 23 |
+
--n white woman
|
| 24 |
+
output:
|
| 25 |
+
url: images/example_n6nlx80fu.png
|
| 26 |
+
|
| 27 |
+
---
|
| 28 |
+
|
| 29 |
+
# Thalian Elenian
|
| 30 |
+
|
| 31 |
+
<Gallery />
|
| 32 |
+
|
| 33 |
+
Trained on RTX3060 with ComfyUI:
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
## Trigger words
|
| 38 |
+
You should use `thalian_elenian elf` to trigger the image generation.
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 42 |
+
|
| 43 |
+
```py
|
| 44 |
+
from diffusers import AutoPipelineForText2Image
|
| 45 |
+
import torch
|
| 46 |
+
|
| 47 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
| 48 |
+
pipeline.load_lora_weights('obann001/Thalian_Elenian_flux_Lora', weight_name='model.safetensors')
|
| 49 |
+
image = pipeline('your prompt').images[0]
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
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)
|