harshasai-dev
commited on
Commit
•
29bb646
1
Parent(s):
529cf96
Upload 2 files
Browse files- PoojaHegdeFluxV1.safetensors +3 -0
- README.md +46 -0
PoojaHegdeFluxV1.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e7020c2d9099bcf6cf0da2f41a2b18ebfbaa373370ddb4be3613a41ea42081c
|
3 |
+
size 10870106
|
README.md
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
# widget:
|
15 |
+
# - text: >-
|
16 |
+
# prompt
|
17 |
+
# output:
|
18 |
+
# url: https://...
|
19 |
+
instance_prompt: rups
|
20 |
+
---
|
21 |
+
|
22 |
+
# Rupss
|
23 |
+
|
24 |
+
<!-- <Gallery /> -->
|
25 |
+
|
26 |
+
Trained on Replicate using:
|
27 |
+
|
28 |
+
https://replicate.com/ostris/flux-dev-lora-trainer/train
|
29 |
+
|
30 |
+
|
31 |
+
## Trigger words
|
32 |
+
You should use `rups` to trigger the image generation.
|
33 |
+
|
34 |
+
|
35 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
36 |
+
|
37 |
+
```py
|
38 |
+
from diffusers import AutoPipelineForText2Image
|
39 |
+
import torch
|
40 |
+
|
41 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
42 |
+
pipeline.load_lora_weights('harshasai-dev/rupss', weight_name='lora.safetensors')
|
43 |
+
image = pipeline('your prompt').images[0]
|
44 |
+
```
|
45 |
+
|
46 |
+
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)
|