ostris commited on
Commit
89b7786
1 Parent(s): 8796d00

Upload folder using huggingface_hub

Browse files
Files changed (10) hide show
  1. 1341130.jpeg +0 -0
  2. 1342915.jpeg +0 -0
  3. 1343143.jpeg +0 -0
  4. 1398697.jpeg +0 -0
  5. 1398705.jpeg +0 -0
  6. 1398710.jpeg +0 -0
  7. 1398715.jpeg +0 -0
  8. 1398718.jpeg +0 -0
  9. README.md +114 -0
  10. nighttime_v1.safetensors +3 -0
1341130.jpeg ADDED
1342915.jpeg ADDED
1343143.jpeg ADDED
1398697.jpeg ADDED
1398705.jpeg ADDED
1398710.jpeg ADDED
1398715.jpeg ADDED
1398718.jpeg ADDED
README.md ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - dark
13
+ - concept
14
+ - lighting
15
+ - tools
16
+ - night
17
+ - scene
18
+ - nighttime
19
+ - darken
20
+
21
+ base_model: runwayml/stable-diffusion-v1-5
22
+ instance_prompt:
23
+ widget:
24
+ - text: ' '
25
+
26
+ output:
27
+ url: >-
28
+ 1341130.jpeg
29
+ - text: 'close up of a homeless man, sitting near a dumpster, looking into the aley, dirty face, beard, worn beanie '
30
+ parameters:
31
+ negative_prompt: cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
32
+
33
+ output:
34
+ url: >-
35
+ 1342915.jpeg
36
+ - text: 'a man sitting alone at a bar, beart, worn beanie, side view, big beer, hands in pockets'
37
+ parameters:
38
+ negative_prompt: closed eyes, hair, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
39
+
40
+ output:
41
+ url: >-
42
+ 1343143.jpeg
43
+ - text: 'photo of a woman looking at christmas lights '
44
+ parameters:
45
+ negative_prompt: cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
46
+
47
+ output:
48
+ url: >-
49
+ 1398697.jpeg
50
+ - text: 'woman reading a book in the park, flashlight , close up '
51
+ parameters:
52
+ negative_prompt: cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
53
+
54
+ output:
55
+ url: >-
56
+ 1398705.jpeg
57
+ - text: 'man holding a lantern, close up, shocked, mustache '
58
+ parameters:
59
+ negative_prompt: cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
60
+
61
+ output:
62
+ url: >-
63
+ 1398710.jpeg
64
+ - text: 'woman sitting in a coffee shop, black robe, red hair, holding a lightsaber
65
+ '
66
+ parameters:
67
+ negative_prompt: cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
68
+
69
+ output:
70
+ url: >-
71
+ 1398715.jpeg
72
+ - text: 'a woman super excited, holding a jar with fireflies '
73
+ parameters:
74
+ negative_prompt: too many fingers, bad anatomy,, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution
75
+
76
+ output:
77
+ url: >-
78
+ 1398718.jpeg
79
+
80
+ ---
81
+
82
+ # Nighttime LoRA
83
+
84
+ <Gallery />
85
+
86
+
87
+
88
+
89
+
90
+ ## Model description
91
+
92
+ <p>This lora can turn any scene into a night scene, indoors and outdoors. Not just darker, but with flashlights, car lights, etc. Some scenes will need a stronger weight than others. So adjust as needed. </p><p>This is an experiment in a training process concept I am working on I call seed locking. Initial results looked good, but it still needs work. The basic idea is to generate training images and regularization images with a specific seed, then alter the training images with the desired effect while maintaining image consistency, and then retrain with those specific seeds to target very specific concepts you want to adjust and keeping everything else the same. It is not perfect because of the sampling methods. I hope to find a way to regularize for the sampler in the loss, hopefully soon. </p><p>But for now, enjoy the experiment.</p><p></p>
93
+
94
+
95
+
96
+ ## Download model
97
+
98
+ Weights for this model are available in Safetensors format.
99
+
100
+ [Download](/ostris/nighttime-lora/tree/main) them in the Files & versions tab.
101
+
102
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
103
+
104
+ ```py
105
+ from diffusers import AutoPipelineForText2Image
106
+ import torch
107
+
108
+ pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
109
+ pipeline.load_lora_weights('ostris/nighttime-lora', weight_name='nighttime_v1.safetensors')
110
+ image = pipeline('a woman super excited, holding a jar with fireflies ').images[0]
111
+ ```
112
+
113
+ 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)
114
+
nighttime_v1.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cfb0252b9fcd37312d5b1885481e4be6c20db40456d3a6c0557e56e7ba0beda
3
+ size 151121710