dfrer commited on
Commit
5788519
1 Parent(s): 3541b53

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. 7381798.jpeg +3 -0
  2. 7381799.jpeg +3 -0
  3. README.md +46 -10
7381798.jpeg ADDED

Git LFS Details

  • SHA256: d10772d5c035c4f997210a04a8d4bb233b03aafad566cddfd2be137e011d0c62
  • Pointer size: 130 Bytes
  • Size of remote file: 12.1 kB
7381799.jpeg ADDED

Git LFS Details

  • SHA256: 911c7c61fddd62041bef75d3b23ee3e020503991fdfc65aed03f5e456b1fafef
  • Pointer size: 130 Bytes
  • Size of remote file: 14.3 kB
README.md CHANGED
@@ -1,26 +1,62 @@
1
  ---
 
 
 
2
  tags:
3
- - text-to-image
4
- - stable-diffusion
5
- - lora
6
- - diffusers
7
- - template:sd-lora
 
 
 
 
 
8
  widget:
9
- - text: '-'
 
 
 
 
 
 
10
  output:
11
- url: images/nanasa_20240303062053_e000009_00.png
12
- base_model: ByteDance/SDXL-Lightning
13
- instance_prompt: null
14
 
15
  ---
16
- # nanasa
 
17
 
18
  <Gallery />
19
 
20
 
21
 
 
 
 
 
 
 
 
 
22
  ## Download model
23
 
24
  Weights for this model are available in Safetensors format.
25
 
26
  [Download](/dfrer/nanasa/tree/main) them in the Files & versions tab.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
5
  tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - style
13
+
14
+ base_model: stabilityai/stable-diffusion-2-1-base
15
+ instance_prompt:
16
  widget:
17
+ - text: 'Man sleeping next to clock'
18
+
19
+ output:
20
+ url: >-
21
+ 7381798.jpeg
22
+ - text: 'Lady death'
23
+
24
  output:
25
+ url: >-
26
+ 7381799.jpeg
 
27
 
28
  ---
29
+
30
+ # nanasa
31
 
32
  <Gallery />
33
 
34
 
35
 
36
+
37
+
38
+ ## Model description
39
+
40
+ <p>Model based on my personal artwork for experimentation.</p>
41
+
42
+
43
+
44
  ## Download model
45
 
46
  Weights for this model are available in Safetensors format.
47
 
48
  [Download](/dfrer/nanasa/tree/main) them in the Files & versions tab.
49
+
50
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
51
+
52
+ ```py
53
+ from diffusers import AutoPipelineForText2Image
54
+ import torch
55
+
56
+ pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-2-1-base', torch_dtype=torch.float16).to('cuda')
57
+ pipeline.load_lora_weights('dfrer/nanasa', weight_name='nanasa-000009.safetensors')
58
+ image = pipeline('Lady death').images[0]
59
+ ```
60
+
61
+ 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)
62
+