Prgckwb commited on
Commit
c7547cb
1 Parent(s): 2d45fd1

End of training

Browse files
Files changed (11) hide show
  1. .gitattributes +1 -0
  2. README.md +103 -0
  3. image_0.png +0 -0
  4. image_1.png +0 -0
  5. image_2.png +0 -0
  6. image_3.png +0 -0
  7. image_4.png +0 -0
  8. image_5.png +3 -0
  9. image_6.png +0 -0
  10. image_7.png +0 -0
  11. pytorch_lora_weights.safetensors +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ image_5.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: stabilityai/stable-diffusion-3.5-large
3
+ library_name: diffusers
4
+ license: other
5
+ instance_prompt: an icon of trpfrog
6
+ widget:
7
+ - text: an icon of trpfrog eating ramen
8
+ output:
9
+ url: image_0.png
10
+ - text: an icon of trpfrog eating ramen
11
+ output:
12
+ url: image_1.png
13
+ - text: an icon of trpfrog eating ramen
14
+ output:
15
+ url: image_2.png
16
+ - text: an icon of trpfrog eating ramen
17
+ output:
18
+ url: image_3.png
19
+ - text: an icon of trpfrog eating ramen
20
+ output:
21
+ url: image_4.png
22
+ - text: an icon of trpfrog eating ramen
23
+ output:
24
+ url: image_5.png
25
+ - text: an icon of trpfrog eating ramen
26
+ output:
27
+ url: image_6.png
28
+ - text: an icon of trpfrog eating ramen
29
+ output:
30
+ url: image_7.png
31
+ tags:
32
+ - text-to-image
33
+ - diffusers-training
34
+ - diffusers
35
+ - lora
36
+ - template:sd-lora
37
+ - sd3.5-large
38
+ - sd3.5
39
+ - sd3.5-diffusers
40
+ ---
41
+
42
+ <!-- This model card has been generated automatically according to the information the training script had access to. You
43
+ should probably proofread and complete it, then remove this comment. -->
44
+
45
+
46
+ # SD3.5-Large DreamBooth LoRA - Prgckwb/trpfrog-sd3.5l-lora-2
47
+
48
+ <Gallery />
49
+
50
+ ## Model description
51
+
52
+ These are Prgckwb/trpfrog-sd3.5l-lora-2 DreamBooth LoRA weights for stabilityai/stable-diffusion-3.5-large.
53
+
54
+ The weights were trained using [DreamBooth](https://dreambooth.github.io/) with the [SD3 diffusers trainer](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/README_sd3.md).
55
+
56
+ Was LoRA for the text encoder enabled? False.
57
+
58
+ ## Trigger words
59
+
60
+ You should use `an icon of trpfrog` to trigger the image generation.
61
+
62
+ ## Download model
63
+
64
+ [Download the *.safetensors LoRA](Prgckwb/trpfrog-sd3.5l-lora-2/tree/main) in the Files & versions tab.
65
+
66
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
67
+
68
+ ```py
69
+ from diffusers import AutoPipelineForText2Image
70
+ import torch
71
+ pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3.5-large, torch_dtype=torch.float16).to('cuda')
72
+ pipeline.load_lora_weights('Prgckwb/trpfrog-sd3.5l-lora-2', weight_name='pytorch_lora_weights.safetensors')
73
+ image = pipeline('an icon of trpfrog eating ramen').images[0]
74
+ ```
75
+
76
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
77
+
78
+ - **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/Prgckwb/trpfrog-sd3.5l-lora-2/blob/main/diffusers_lora_weights.safetensors)**.
79
+ - Rename it and place it on your `models/Lora` folder.
80
+ - On AUTOMATIC1111, load the LoRA by adding `<lora:your_new_name:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
81
+
82
+ 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)
83
+
84
+ ## License
85
+
86
+ Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
87
+
88
+
89
+ ## Intended uses & limitations
90
+
91
+ #### How to use
92
+
93
+ ```python
94
+ # TODO: add an example code snippet for running this diffusion pipeline
95
+ ```
96
+
97
+ #### Limitations and bias
98
+
99
+ [TODO: provide examples of latent issues and potential remediations]
100
+
101
+ ## Training details
102
+
103
+ [TODO: describe the data used to train the model]
image_0.png ADDED
image_1.png ADDED
image_2.png ADDED
image_3.png ADDED
image_4.png ADDED
image_5.png ADDED

Git LFS Details

  • SHA256: d1eed36717920f7d91924cd15238ccdff9a6b89fe5b87a0dadd62a540ff3db28
  • Pointer size: 132 Bytes
  • Size of remote file: 1.05 MB
image_6.png ADDED
image_7.png ADDED
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5337e9df662bb15bd88e29445a2b3f9722ebdb47510c051487bb083cdd95d079
3
+ size 47241832