Keltezaa commited on
Commit
23534c0
·
verified ·
1 Parent(s): 81e309d

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. 37476641.jpeg +0 -0
  2. 37476759.jpeg +0 -0
  3. 37478669.jpeg +0 -0
  4. Jennifer_Morrison.safetensors +3 -0
  5. README.md +74 -0
37476641.jpeg ADDED
37476759.jpeg ADDED
37478669.jpeg ADDED
Jennifer_Morrison.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f03c2991aa736db78ad24887289f7ce164672f81a97c275515922f258fbc424
3
+ size 18211196
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=True
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - woman
13
+ - celebrity
14
+ - tv
15
+ - celebrity,
16
+
17
+ base_model: black-forest-labs/FLUX.1-dev
18
+ instance_prompt: woman
19
+ widget:
20
+ - text: 'woman, blonde, a RAW photo, 16mm film, artistic full color, serene and intimate portrait, subject sits in the center of the frame, subject has perfect posture, they directly face the viewer with their eyes locked onto the camera, they wear a cotton dress shirt, buttoned-up all but the topmost button, wearing a heart necklace which adds a touch of elegance to the overall appearance, soft, blurred background along with the soft lighting create a cozy atmosphere, drawing the viewer''s attention to the subject''s serene expression, the overall effect is one of calm and introspection, inviting the viewer to step into their world, in the background you will find the typical items found in an 18th London sitting room.'
21
+
22
+ output:
23
+ url: >-
24
+ 37476641.jpeg
25
+ - text: 'a woman average height, close-up, perfect body, half smiles, carries a G36 assault rifle that is pointed at the ground, post-apocalyptic, rubble, modest cargo shorts, a loyal mutt sits on the ground wearing a bandana around his neck, vintage graphic design t-shirt'
26
+
27
+ output:
28
+ url: >-
29
+ 37476759.jpeg
30
+ - text: ' woman, blonde, as a doctor, white lab coat, eyeglasses, stethoscope, looking at viewer, hospital environment'
31
+
32
+ output:
33
+ url: >-
34
+ 37478669.jpeg
35
+
36
+ ---
37
+
38
+ # Jennifer Morrison
39
+
40
+ <Gallery />
41
+
42
+
43
+
44
+
45
+
46
+ ## Model description
47
+
48
+ <p>This is my first LoRA in Flux so go easy. :) I think it turned out pretty good.</p>
49
+
50
+ ## Trigger words
51
+ You should use `woman` to trigger the image generation.
52
+
53
+
54
+ ## Download model
55
+
56
+ Weights for this model are available in Safetensors format.
57
+
58
+ [Download](/Keltezaa/jennifer-morrison/tree/main) them in the Files & versions tab.
59
+
60
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
61
+
62
+ ```py
63
+ from diffusers import AutoPipelineForText2Image
64
+ import torch
65
+
66
+ device = "cuda" if torch.cuda.is_available() else "cpu"
67
+
68
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
69
+ pipeline.load_lora_weights('Keltezaa/jennifer-morrison', weight_name='Jennifer_Morrison.safetensors')
70
+ image = pipeline(' woman, blonde, as a doctor, white lab coat, eyeglasses, stethoscope, looking at viewer, hospital environment').images[0]
71
+ ```
72
+
73
+ 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)
74
+