shivank-pixis commited on
Commit
2b87426
1 Parent(s): 27af292

End of training

Browse files
Fashion_Beauty-lora-20May_new.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6572bb3af971e13da017b819a161d466f46df1db274109caf5e6522b3218dd30
3
+ size 46698072
Fashion_Beauty-lora-20May_new_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - stable-diffusion-xl
4
+ - stable-diffusion-xl-diffusers
5
+ - text-to-image
6
+ - diffusers
7
+ - lora
8
+ - template:sd-lora
9
+ widget:
10
+
11
+ - text: 'in the style of <s0><s1>'
12
+
13
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
14
+ instance_prompt: in the style of <s0><s1>
15
+ license: openrail++
16
+ ---
17
+
18
+ # SDXL LoRA DreamBooth - shivank-pixis/Fashion_Beauty-lora-20May_new
19
+
20
+ <Gallery />
21
+
22
+ ## Model description
23
+
24
+ ### These are shivank-pixis/Fashion_Beauty-lora-20May_new LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
25
+
26
+ ## Download model
27
+
28
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
29
+
30
+ - **LoRA**: download **[`./Fashion_Beauty-lora-20May_new.safetensors` here 💾](/shivank-pixis/Fashion_Beauty-lora-20May_new/blob/main/./Fashion_Beauty-lora-20May_new.safetensors)**.
31
+ - Place it on your `models/Lora` folder.
32
+ - On AUTOMATIC1111, load the LoRA by adding `<lora:./Fashion_Beauty-lora-20May_new:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
33
+ - *Embeddings*: download **[`./Fashion_Beauty-lora-20May_new_emb.safetensors` here 💾](/shivank-pixis/Fashion_Beauty-lora-20May_new/blob/main/./Fashion_Beauty-lora-20May_new_emb.safetensors)**.
34
+ - Place it on it on your `embeddings` folder
35
+ - Use it by adding `./Fashion_Beauty-lora-20May_new_emb` to your prompt. For example, `in the style of ./Fashion_Beauty-lora-20May_new_emb`
36
+ (you need both the LoRA and the embeddings as they were trained together for this LoRA)
37
+
38
+
39
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
40
+
41
+ ```py
42
+ from diffusers import AutoPipelineForText2Image
43
+ import torch
44
+ from huggingface_hub import hf_hub_download
45
+ from safetensors.torch import load_file
46
+
47
+ pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
48
+ pipeline.load_lora_weights('shivank-pixis/Fashion_Beauty-lora-20May_new', weight_name='pytorch_lora_weights.safetensors')
49
+ embedding_path = hf_hub_download(repo_id='shivank-pixis/Fashion_Beauty-lora-20May_new', filename='./Fashion_Beauty-lora-20May_new_emb.safetensors' repo_type="model")
50
+ state_dict = load_file(embedding_path)
51
+ pipeline.load_textual_inversion(state_dict["clip_l"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder, tokenizer=pipeline.tokenizer)
52
+ pipeline.load_textual_inversion(state_dict["clip_g"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder_2, tokenizer=pipeline.tokenizer_2)
53
+
54
+ image = pipeline('in the style of <s0><s1>').images[0]
55
+ ```
56
+
57
+ 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)
58
+
59
+ ## Trigger words
60
+
61
+ To trigger image generation of trained concept(or concepts) replace each concept identifier in you prompt with the new inserted tokens:
62
+
63
+ to trigger concept `TOK` → use `<s0><s1>` in your prompt
64
+
65
+
66
+
67
+ ## Details
68
+ All [Files & versions](/shivank-pixis/Fashion_Beauty-lora-20May_new/tree/main).
69
+
70
+ The weights were trained using [🧨 diffusers Advanced Dreambooth Training Script](https://github.com/huggingface/diffusers/blob/main/examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py).
71
+
72
+ LoRA for the text encoder was enabled. False.
73
+
74
+ Pivotal tuning was enabled: True.
75
+
76
+ Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
77
+
checkpoint-1000/Fashion_Beauty-lora-20May_new_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-1000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7764192c62519fd7bfe7a253937719fa18591b49c8f42454c90ffd79a38b31ef
3
+ size 94209618
checkpoint-1000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6877eb6d4f1b6913d09eef252a2057fe886bc8c80d07c513e8e33dab8ebd3190
3
+ size 23391544
checkpoint-1000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e1fec45e4ef1cb43c51acad8117f0b560cd06d84414352120e5307d4e97dff3
3
+ size 14280
checkpoint-1000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7babe47bfb751f6436f46e92a0639bc1ec9db889e510abc5afa501cfc0de4add
3
+ size 1064
checkpoint-200/Fashion_Beauty-lora-20May_new_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-200/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63e44ca32f38b441a00005666acccebd7cb40664ed5cb42e8bf19ed6f0cf685b
3
+ size 94208530
checkpoint-200/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cb52fb758b793fc9109f2222e21cfc170c593505ab87015c0df70612688ac77
3
+ size 23391544
checkpoint-200/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06906d51768b34150cb010155e5929ff70fd21b38c2ccf0aa1c5c33cd6dd9083
3
+ size 14280
checkpoint-200/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1360bed0106ea1376eea93599f7c3c7b4889e5ba1dca9bc433981b7ee391cc4e
3
+ size 1064
checkpoint-400/Fashion_Beauty-lora-20May_new_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-400/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8e9e553e81da6243a3add25a05334ceaff23b7defdd96eb83d344f1230e505d
3
+ size 94209618
checkpoint-400/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d6e59f36d8249cc14ab5bc5de051925100fe7bda651f6c1f623a261855942e5
3
+ size 23391544
checkpoint-400/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eb65f386ab5ee2c0f8b996088d075ceda4166e64d059b8da86922e404794c71
3
+ size 14280
checkpoint-400/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45437edd7235e60c1fa9c88203ae8bf23e3524843ca4d9e70ce1fa859fe90f3c
3
+ size 1064
checkpoint-600/Fashion_Beauty-lora-20May_new_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-600/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7797432e73d1eafceb75ed42082872c538db2803d6f220903c411ec46e3be8e
3
+ size 94209618
checkpoint-600/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1f21d988ec20c79617b4f793eb81e9c5f2598d01ab78b003d083024d68ecf00
3
+ size 23391544
checkpoint-600/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28af04a8600d65f27063a1734e9a3fadf30c022edaf40b034fc4768c67b72f7d
3
+ size 14280
checkpoint-600/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1afacceaf723433abd192973717404adb1005ee2db7e03769d54ca2bd1e2af45
3
+ size 1064
checkpoint-800/Fashion_Beauty-lora-20May_new_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-800/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e3a6f217d79a4670a753d6687a6630405ee7e0ac5b4e83222cba6bbc0b5c1af
3
+ size 94209618
checkpoint-800/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78ca2ef5bf9399863cd783426b0bd934773f89edde63ce11cdc55d9238dbe65f
3
+ size 23391544
checkpoint-800/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:337ca82e565fe2c1ac4b6e2ca525a92030e846d3040511810f7e29aac2fdbfc7
3
+ size 14280
checkpoint-800/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21b295d17638794f481b221a407d27a1d404ce877aaf1dddbb52c8199dd8a1ff
3
+ size 1064
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0b7669c2c39ec4c633bd65ef5f03de72d6ff955373fcda4b5d14436001e2704
3
+ size 46615272