bhomik7 commited on
Commit
cb6758d
·
verified ·
1 Parent(s): ef13308

End of training

Browse files
Files changed (8) hide show
  1. .gitattributes +1 -0
  2. README.md +118 -0
  3. image_0.png +0 -0
  4. image_1.png +3 -0
  5. image_2.png +0 -0
  6. image_3.png +0 -0
  7. image_4.png +0 -0
  8. 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_1.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: stabilityai/stable-diffusion-3.5-medium
3
+ library_name: diffusers
4
+ license: other
5
+ instance_prompt: A beautiful <TOK> UI for music app
6
+ widget:
7
+ - text: Create a modern user interface design for a mobile application that focuses
8
+ on fitness tracking. The layout should include a vibrant dashboard displaying
9
+ key metrics such as steps taken, calories burned, and workout summaries. Incorporate
10
+ interactive elements like buttons for starting workouts, viewing progress, and
11
+ accessing nutrition information. Use a color palette that conveys energy and motivation,
12
+ with clear typography and intuitive navigation.
13
+ output:
14
+ url: image_0.png
15
+ - text: Create a modern user interface design for a mobile application that focuses
16
+ on fitness tracking. The layout should include a vibrant dashboard displaying
17
+ key metrics such as steps taken, calories burned, and workout summaries. Incorporate
18
+ interactive elements like buttons for starting workouts, viewing progress, and
19
+ accessing nutrition information. Use a color palette that conveys energy and motivation,
20
+ with clear typography and intuitive navigation.
21
+ output:
22
+ url: image_1.png
23
+ - text: Create a modern user interface design for a mobile application that focuses
24
+ on fitness tracking. The layout should include a vibrant dashboard displaying
25
+ key metrics such as steps taken, calories burned, and workout summaries. Incorporate
26
+ interactive elements like buttons for starting workouts, viewing progress, and
27
+ accessing nutrition information. Use a color palette that conveys energy and motivation,
28
+ with clear typography and intuitive navigation.
29
+ output:
30
+ url: image_2.png
31
+ - text: Create a modern user interface design for a mobile application that focuses
32
+ on fitness tracking. The layout should include a vibrant dashboard displaying
33
+ key metrics such as steps taken, calories burned, and workout summaries. Incorporate
34
+ interactive elements like buttons for starting workouts, viewing progress, and
35
+ accessing nutrition information. Use a color palette that conveys energy and motivation,
36
+ with clear typography and intuitive navigation.
37
+ output:
38
+ url: image_3.png
39
+ - text: Create a modern user interface design for a mobile application that focuses
40
+ on fitness tracking. The layout should include a vibrant dashboard displaying
41
+ key metrics such as steps taken, calories burned, and workout summaries. Incorporate
42
+ interactive elements like buttons for starting workouts, viewing progress, and
43
+ accessing nutrition information. Use a color palette that conveys energy and motivation,
44
+ with clear typography and intuitive navigation.
45
+ output:
46
+ url: image_4.png
47
+ tags:
48
+ - text-to-image
49
+ - diffusers-training
50
+ - diffusers
51
+ - lora
52
+ - template:sd-lora
53
+ - sd3
54
+ - sd3-diffusers
55
+ ---
56
+
57
+ <!-- This model card has been generated automatically according to the information the training script had access to. You
58
+ should probably proofread and complete it, then remove this comment. -->
59
+
60
+
61
+ # SD3 DreamBooth LoRA - bhomik7/sd_3_5m_dreambooth_lora_ft_HIGH_CONFIG
62
+
63
+ <Gallery />
64
+
65
+ ## Model description
66
+
67
+ These are bhomik7/sd_3_5m_dreambooth_lora_ft_HIGH_CONFIG DreamBooth LoRA weights for stabilityai/stable-diffusion-3.5-medium.
68
+
69
+ 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).
70
+
71
+ Was LoRA for the text encoder enabled? True.
72
+
73
+ ## Trigger words
74
+
75
+ You should use `A beautiful <TOK> UI for music app` to trigger the image generation.
76
+
77
+ ## Download model
78
+
79
+ [Download the *.safetensors LoRA](bhomik7/sd_3_5m_dreambooth_lora_ft_HIGH_CONFIG/tree/main) in the Files & versions tab.
80
+
81
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
82
+
83
+ ```py
84
+ from diffusers import AutoPipelineForText2Image
85
+ import torch
86
+ pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3.5-medium, torch_dtype=torch.float16).to('cuda')
87
+ pipeline.load_lora_weights('bhomik7/sd_3_5m_dreambooth_lora_ft_HIGH_CONFIG', weight_name='pytorch_lora_weights.safetensors')
88
+ image = pipeline('Create a modern user interface design for a mobile application that focuses on fitness tracking. The layout should include a vibrant dashboard displaying key metrics such as steps taken, calories burned, and workout summaries. Incorporate interactive elements like buttons for starting workouts, viewing progress, and accessing nutrition information. Use a color palette that conveys energy and motivation, with clear typography and intuitive navigation.').images[0]
89
+ ```
90
+
91
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
92
+
93
+ - **LoRA**: download **[`diffusers_lora_weights.safetensors` here 💾](/bhomik7/sd_3_5m_dreambooth_lora_ft_HIGH_CONFIG/blob/main/diffusers_lora_weights.safetensors)**.
94
+ - Rename it and place it on your `models/Lora` folder.
95
+ - 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/).
96
+
97
+ 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)
98
+
99
+ ## License
100
+
101
+ Please adhere to the licensing terms as described [here](https://huggingface.co/stabilityai/stable-diffusion-3-medium/blob/main/LICENSE.md).
102
+
103
+
104
+ ## Intended uses & limitations
105
+
106
+ #### How to use
107
+
108
+ ```python
109
+ # TODO: add an example code snippet for running this diffusion pipeline
110
+ ```
111
+
112
+ #### Limitations and bias
113
+
114
+ [TODO: provide examples of latent issues and potential remediations]
115
+
116
+ ## Training details
117
+
118
+ [TODO: describe the data used to train the model]
image_0.png ADDED
image_1.png ADDED

Git LFS Details

  • SHA256: 05a871463f7341c29e673f8880da807e944637e3b2ed1a143433598ca5aa5e75
  • Pointer size: 132 Bytes
  • Size of remote file: 1.02 MB
image_2.png ADDED
image_3.png ADDED
image_4.png ADDED
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b027a4b98a46eaaec7c871333a18d93f27ff79c5625ce92b0bb22a731f572d7b
3
+ size 11216336