SteveWCG commited on
Commit
a3538e9
·
verified ·
1 Parent(s): b84fc76

End of training

Browse files
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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_0.png filter=lfs diff=lfs merge=lfs -text
37
+ image_1.png filter=lfs diff=lfs merge=lfs -text
38
+ image_2.png filter=lfs diff=lfs merge=lfs -text
39
+ image_3.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: stabilityai/stable-diffusion-3-medium-diffusers
3
+ library_name: diffusers
4
+ license: other
5
+ instance_prompt: 'A separated cycling path runs parallel to the roadway, protected
6
+ by bollards on the left and bordered by a hedge on the right, within the sunurban
7
+ area. '
8
+ widget:
9
+ - text: 'A photo of a separated cycling path runs parallel to the roadway, protected
10
+ by bollards on the left and bordered by a hedge on the right, within the sunurban
11
+ area. '
12
+ output:
13
+ url: image_0.png
14
+ - text: 'A photo of a separated cycling path runs parallel to the roadway, protected
15
+ by bollards on the left and bordered by a hedge on the right, within the sunurban
16
+ area. '
17
+ output:
18
+ url: image_1.png
19
+ - text: 'A photo of a separated cycling path runs parallel to the roadway, protected
20
+ by bollards on the left and bordered by a hedge on the right, within the sunurban
21
+ area. '
22
+ output:
23
+ url: image_2.png
24
+ - text: 'A photo of a separated cycling path runs parallel to the roadway, protected
25
+ by bollards on the left and bordered by a hedge on the right, within the sunurban
26
+ area. '
27
+ output:
28
+ url: image_3.png
29
+ tags:
30
+ - text-to-image
31
+ - diffusers-training
32
+ - diffusers
33
+ - lora
34
+ - template:sd-lora
35
+ - sd3
36
+ - sd3-diffusers
37
+ ---
38
+
39
+ <!-- This model card has been generated automatically according to the information the training script had access to. You
40
+ should probably proofread and complete it, then remove this comment. -->
41
+
42
+
43
+ # SD3 DreamBooth LoRA - SteveWCG/trained-5
44
+
45
+ <Gallery />
46
+
47
+ ## Model description
48
+
49
+ These are SteveWCG/trained-5 DreamBooth LoRA weights for stabilityai/stable-diffusion-3-medium-diffusers.
50
+
51
+ 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).
52
+
53
+ Was LoRA for the text encoder enabled? True.
54
+
55
+ ## Trigger words
56
+
57
+ You should use `A separated cycling path runs parallel to the roadway, protected by bollards on the left and bordered by a hedge on the right, within the sunurban area. ` to trigger the image generation.
58
+
59
+ ## Download model
60
+
61
+ [Download the *.safetensors LoRA](SteveWCG/trained-5/tree/main) in the Files & versions tab.
62
+
63
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
64
+
65
+ ```py
66
+ from diffusers import AutoPipelineForText2Image
67
+ import torch
68
+ pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3-medium-diffusers, torch_dtype=torch.float16).to('cuda')
69
+ pipeline.load_lora_weights('SteveWCG/trained-5', weight_name='pytorch_lora_weights.safetensors')
70
+ image = pipeline('A photo of a separated cycling path runs parallel to the roadway, protected by bollards on the left and bordered by a hedge on the right, within the sunurban area. ').images[0]
71
+ ```
72
+
73
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
74
+
75
+ - **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/SteveWCG/trained-5/blob/main/diffusers_lora_weights.safetensors)**.
76
+ - Rename it and place it on your `models/Lora` folder.
77
+ - 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/).
78
+
79
+ 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)
80
+
81
+ ## License
82
+
83
+ Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3-medium/blob/main/LICENSE.md).
84
+
85
+
86
+ ## Intended uses & limitations
87
+
88
+ #### How to use
89
+
90
+ ```python
91
+ # TODO: add an example code snippet for running this diffusion pipeline
92
+ ```
93
+
94
+ #### Limitations and bias
95
+
96
+ [TODO: provide examples of latent issues and potential remediations]
97
+
98
+ ## Training details
99
+
100
+ [TODO: describe the data used to train the model]
checkpoint-500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fad1329454557202e83a0a67351fdc7eb93d05e6cf7b0fae3f516ce5eb35b19
3
+ size 127102828
checkpoint-500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99178720eece40879dd9c77b713db612c70b1a4c2e4f8d5d92403e6d2c698c3f
3
+ size 63343480
checkpoint-500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:820e9e7ff3a6562e174c6aa740aa49a5203554727ddd3f13338a74c18cd9c6b2
3
+ size 14344
checkpoint-500/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95b1529327aa70ad2dc92cafe84940ea0b5df9039e5d1cb7b21294f073cefd1e
3
+ size 988
checkpoint-500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fe1486d475272308059b0ad022a7664ecb61d6280cbb365524f40a7cfaaac92
3
+ size 1064
image_0.png ADDED

Git LFS Details

  • SHA256: 93b891e9a518c39d377946131b750ffc5483f8c9a8cc193ffb745ae35137e39c
  • Pointer size: 132 Bytes
  • Size of remote file: 2.36 MB
image_1.png ADDED

Git LFS Details

  • SHA256: 96ff866fed824b78b36eddda6d94af0dd58a5bb4f09086c07e9d020b8d8a75b3
  • Pointer size: 132 Bytes
  • Size of remote file: 2.03 MB
image_2.png ADDED

Git LFS Details

  • SHA256: 4122deb207380115f0f19f0e6a0e88d1e1081b534893f72ca74fe9e05360d720
  • Pointer size: 132 Bytes
  • Size of remote file: 2.33 MB
image_3.png ADDED

Git LFS Details

  • SHA256: 7929f5fbcf10eb4cfc5387279c39b048ac01863eb4981dc264757d92adffed08
  • Pointer size: 132 Bytes
  • Size of remote file: 2.38 MB
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e720fc4a17d4061b0577d0cd9e1364421c799ff54fdde978afce27f7591f0c98
3
+ size 44567416