abby101 commited on
Commit
8424904
1 Parent(s): 0602c6a

run and generate model card

Browse files
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
2
  license: openrail++
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: openrail++
3
+ library_name: diffusers
4
+ tags:
5
+ - text-to-image
6
+ - diffusers
7
+ - diffusers-training
8
+ - lora
9
+ - template:sd-lorastable-diffusion
10
+ - stable-diffusion-diffusers
11
+ base_model: runwayml/stable-diffusion-v1-5
12
+ inference: true
13
+ instance_prompt: A mushroom in [V] style
14
  ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the training script had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+
20
+ # SD1.5 LoRA DreamBooth - cosmo3769/test
21
+
22
+ <Gallery />
23
+
24
+ ## Model description
25
+
26
+ ### These are cosmo3769/test LoRA adaption weights for runwayml/stable-diffusion-v1-5.
27
+
28
+ ## Download model
29
+
30
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
31
+
32
+ - **LoRA**: download **[`..safetensors` here 💾](/cosmo3769/test/blob/main/..safetensors)**.
33
+ - Place it on your `models/Lora` folder.
34
+ - On AUTOMATIC1111, load the LoRA by adding `<lora:.:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
35
+
36
+
37
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
38
+
39
+ ```py
40
+ from diffusers import AutoPipelineForText2Image
41
+ import torch
42
+
43
+ pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
44
+ pipeline.load_lora_weights('cosmo3769/test', weight_name='pytorch_lora_weights.safetensors')
45
+
46
+ image = pipeline('A mushroom in [V] style').images[0]
47
+ ```
48
+
49
+ 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)
50
+
51
+ ## Trigger words
52
+
53
+ You should use A mushroom in [V] style to trigger the image generation.
54
+
55
+ ## Details
56
+ All [Files & versions](/cosmo3769/test/tree/main).
57
+
58
+ The weights were trained using [🧨 diffusers Advanced Dreambooth Training Script](https://github.com/huggingface/diffusers/blob/main/examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py).
59
+
60
+ LoRA for the text encoder was enabled. False.
61
+
62
+ Pivotal tuning was enabled: False.
63
+
64
+ Special VAE used for training: None.
65
+
66
+
67
+
68
+ ## Intended uses & limitations
69
+
70
+ #### How to use
71
+
72
+ ```python
73
+ # TODO: add an example code snippet for running this diffusion pipeline
74
+ ```
75
+
76
+ #### Limitations and bias
77
+
78
+ [TODO: provide examples of latent issues and potential remediations]
79
+
80
+ ## Training details
81
+
82
+ [TODO: describe the data used to train the model]
image_0.png ADDED
image_1.png ADDED
image_2.png ADDED
test-model-card-template-dreambooth-sd15-lora-adv.ipynb ADDED
File without changes