Keltezaa commited on
Commit
8a3487b
·
verified ·
1 Parent(s): 10f0843

Upload folder using huggingface_hub

Browse files
28002658.jpeg ADDED
28002660.jpeg ADDED
28002661.jpeg ADDED
28002662.jpeg ADDED
28002663.jpeg ADDED
Jennifer_Carpenter_2012_Flux.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c61b409168403ed9599c624f9e757d46fb888f0dde7376ada628fd2ce4145824
3
+ size 153277752
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - photorealistic
13
+ - sexy
14
+ - woman
15
+ - actor
16
+ - celebrity
17
+ - cute
18
+ - girls
19
+ - realistic
20
+ - pretty
21
+ - influencer
22
+ - jennifer carpenter
23
+
24
+ base_model: black-forest-labs/FLUX.1-dev
25
+ instance_prompt: c4rp3
26
+ widget:
27
+ - text: 'woman, light makeup, sweater, smiling, kitchen'
28
+
29
+ output:
30
+ url: >-
31
+ 28002660.jpeg
32
+ - text: 'woman, light makeup, sitting at a table wearing a light grey sweatshirt, holding a sign that has the handwriting "Welcome to FLUX!!" written on it. She is looking at the camera and in the background are some office plants on either side of her out of focus'
33
+
34
+ output:
35
+ url: >-
36
+ 28002661.jpeg
37
+ - text: 'woman, light makeup, Expressionistic abstract painting utilizing a rough palette knife technique depicting the face of a woman with long flowing hair in the fall. The autumn theme is respresented through primary use of the colors red, orange and brown as well as autumn trees and leaves'
38
+
39
+ output:
40
+ url: >-
41
+ 28002658.jpeg
42
+ - text: 'woman, light makeup,kodachrome, neon,cyberpunk, looking at viewer, frontview'
43
+
44
+ output:
45
+ url: >-
46
+ 28002662.jpeg
47
+ - text: 'woman, light makeup, wearing a basketball jersey, at a basketball court, looking at camera'
48
+
49
+ output:
50
+ url: >-
51
+ 28002663.jpeg
52
+
53
+ ---
54
+
55
+ # Jennifer Carpenter 2012 Flux and SDXL
56
+
57
+ <Gallery />
58
+
59
+
60
+
61
+
62
+
63
+ ## Model description
64
+
65
+ <h2 id="flux-n6m8np7yu"><strong><span style="color:rgb(253, 126, 20)">Flux</span></strong></h2><p>Jennifer Carpenter in 2012.. All sample images are with no face detailer or hi-res fix, they are 1024x1024 resolution. They are generated on Euler at 20 steps. This lora is trained on 1024x1024 resolution as well. I used flux dev in the sample images.I recommend putting "light makeup" some where in your prompt. I've done testing and there are 2 ways my loras usually work best:</p><p></p><ol><li><p>Strength at 0.9-1 with no trigger word</p></li><li><p>Strength at 0.85-.0.95 with trigger word: c4rp3</p></li></ol><p></p><p><span style="color:rgb(193, 194, 197)">i use comfy ui and theres a strength_clip option in the lora node and i set it to 0.85. Idk whats best but thats what i do</span></p><h2 id="sdxl-s1vw5tjek"><strong><span style="color:rgb(253, 126, 20)">SDXL</span></strong></h2><p>Jennifer Carpenter in 2012. I recommend putting "light makeup" at the end of the prompt and seeing if it brings better results, if not just remove it. It depends on the checkpoint. This goes all my loras of women.</p><p></p><p><span style="color:rgb(193, 194, 197)">put this in negative prompt: </span><strong><span style="color:rgb(193, 194, 197)">ugly, deformed, airbrushed, photoshop, rendered, (multiple people), blurry, child, mouth open<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1886b959-733f-4060-ba02-f8810ad87a47/width=525/1886b959-733f-4060-ba02-f8810ad87a47.jpeg" /></span></strong></p>
66
+
67
+ ## Trigger words
68
+ You should use `c4rp3`, `light makeup` to trigger the image generation.
69
+
70
+
71
+ ## Download model
72
+
73
+ Weights for this model are available in Safetensors format.
74
+
75
+ [Download](/Keltezaa/jennifer-carpenter-2012-flux-and-sdxl/tree/main) them in the Files & versions tab.
76
+
77
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
78
+
79
+ ```py
80
+ from diffusers import AutoPipelineForText2Image
81
+ import torch
82
+
83
+ device = "cuda" if torch.cuda.is_available() else "cpu"
84
+
85
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
86
+ pipeline.load_lora_weights('Keltezaa/jennifer-carpenter-2012-flux-and-sdxl', weight_name='Jennifer_Carpenter_2012_Flux.safetensors')
87
+ image = pipeline('woman, light makeup, wearing a basketball jersey, at a basketball court, looking at camera').images[0]
88
+ ```
89
+
90
+ 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)
91
+