Upload folder using huggingface_hub
Browse files- README.md +55 -0
- morgenstern.safetensors +3 -0
- samples/1737568270138__000001000_0.jpg +0 -0
- samples/1737568299914__000001000_1.jpg +0 -0
- samples/1737568329180__000001000_2.jpg +0 -0
- samples/1737569817133__000001881_0.jpg +0 -0
- samples/1737569847006__000001881_1.jpg +0 -0
- samples/1737569876463__000001881_2.jpg +0 -0
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- text-to-image
|
4 |
+
- flux
|
5 |
+
- lora
|
6 |
+
- diffusers
|
7 |
+
- template:sd-lora
|
8 |
+
- ai-toolkit
|
9 |
+
widget:
|
10 |
+
- text: President of the USA - Morgenstern, real photo, 26K, perfect face, rainbow
|
11 |
+
suit, orange hair color
|
12 |
+
output:
|
13 |
+
url: samples/1737569817133__000001881_0.jpg
|
14 |
+
- text: Morgenstern as SWAT, real photo, 26K, happy face, purple hair color
|
15 |
+
output:
|
16 |
+
url: samples/1737569847006__000001881_1.jpg
|
17 |
+
- text: Morgenstern as world famous rapper, real photo, 26K, happy face, red hair
|
18 |
+
color, brown suit
|
19 |
+
output:
|
20 |
+
url: samples/1737569876463__000001881_2.jpg
|
21 |
+
base_model: black-forest-labs/FLUX.1-dev
|
22 |
+
instance_prompt: Morgenstern
|
23 |
+
license: other
|
24 |
+
license_name: flux-1-dev-non-commercial-license
|
25 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
26 |
+
---
|
27 |
+
|
28 |
+
# morgenstern
|
29 |
+
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
|
30 |
+
<Gallery />
|
31 |
+
|
32 |
+
## Trigger words
|
33 |
+
|
34 |
+
You should use `Morgenstern` to trigger the image generation.
|
35 |
+
|
36 |
+
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
|
37 |
+
|
38 |
+
Weights for this model are available in Safetensors format.
|
39 |
+
|
40 |
+
[Download](/openfree/morgenstern/tree/main) them in the Files & versions tab.
|
41 |
+
|
42 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
43 |
+
|
44 |
+
```py
|
45 |
+
from diffusers import AutoPipelineForText2Image
|
46 |
+
import torch
|
47 |
+
|
48 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
49 |
+
pipeline.load_lora_weights('openfree/morgenstern', weight_name='morgenstern.safetensors')
|
50 |
+
image = pipeline('President of the USA - Morgenstern, real photo, 26K, perfect face, rainbow suit, orange hair color').images[0]
|
51 |
+
image.save("my_image.png")
|
52 |
+
```
|
53 |
+
|
54 |
+
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)
|
55 |
+
|
morgenstern.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b16972fed5ce9073cdf09b26ddf4388d006206a68a5e6e5fe817379af4d413a
|
3 |
+
size 171969408
|
samples/1737568270138__000001000_0.jpg
ADDED
samples/1737568299914__000001000_1.jpg
ADDED
samples/1737568329180__000001000_2.jpg
ADDED
samples/1737569817133__000001881_0.jpg
ADDED
samples/1737569847006__000001881_1.jpg
ADDED
samples/1737569876463__000001881_2.jpg
ADDED