mmaluchnick commited on
Commit
df859c0
1 Parent(s): 2f97992

Upload folder using huggingface_hub

Browse files
37318308.jpeg ADDED
37318309.jpeg ADDED
37318310.jpeg ADDED
37419358.jpeg ADDED
37421306.jpeg ADDED
JenniferLoveHewittFluxModel.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5e26af4635584b95ceb1d2bdf9aacb8e9c770a63c8836e68b1682ca7437cd31
3
+ size 89745224
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - jennifer love hewitt
13
+ - woman
14
+ - celebrity
15
+
16
+ base_model: black-forest-labs/FLUX.1-dev
17
+ instance_prompt: jlh
18
+ widget:
19
+ - text: ' '
20
+
21
+ output:
22
+ url: >-
23
+ 37318308.jpeg
24
+ - text: ' '
25
+
26
+ output:
27
+ url: >-
28
+ 37421306.jpeg
29
+ - text: ' '
30
+
31
+ output:
32
+ url: >-
33
+ 37318310.jpeg
34
+ - text: ' '
35
+
36
+ output:
37
+ url: >-
38
+ 37318309.jpeg
39
+ - text: ' '
40
+
41
+ output:
42
+ url: >-
43
+ 37419358.jpeg
44
+
45
+ ---
46
+
47
+ # Jennifer Love Hewitt Flux Model
48
+
49
+ <Gallery />
50
+
51
+
52
+
53
+
54
+
55
+ ## Model description
56
+
57
+ <p>Jennifer Love Hewitt, born February 21, 1979, in Waco, TX, is an American actress, singer/songwriter, and producer. Hewitt began her career as a child actress and singer, appearing in national television commercials and touring with the Texas Show Team, before joining the cast of the Disney Channel series “Kids Incorporated.” During this time, she also appeared on the short-lived television shows “Shaky Ground,” “The Byrds of Paradise,” and “McKenna,” and had a small part in the film “Sister Act II: Back in the Habit” (1993). Hewitt's breakthrough came in 1995 when she landed the role of Sarah Reeves Merrin on the hit series “Party of Five.” She further solidified her star status with roles in the films “I Know What You Did Last Summer” (1997) and “I Still Know What You Did Last Summer” (1998); “Can’t Hardly Wait” (1998); and "Heartbreakers" (2001).</p><p></p><p>Hewitt's other notable films include “The Tuxedo” (2002); “Garfield: The Movie” (2004) and “Garfield: A Tail of Two Kitties” (2006); “A Christmas Carol” (2004); “Confessions of a Sociopathic Social Climber” (2005); and “The Client List” (2010), which earned her a Golden Globe nomination for Best Actress – Miniseries or Television Film.  In 2012, Hewitt and Lifetime adapted that film into a series that aired for two seasons. Hewitt also starred on the series “Ghost Whisperer” for five seasons, and appeared on the tenth season of “Criminal Minds." She can currently be seen on "9-1-1," which she joined in 2018 during the second season. Hewitt is expected to headline the upcoming reboot of the "I Know What You Did Last Summer" film series, set for release in July 2025.</p><p></p><p>In addition to her successful acting career, Hewitt is an accomplished musician, having released four studio albums: “Love Songs” (1992); “Let's Go Bang” (1995), “Jennifer Love Hewitt” (1996) and “BareNaked” (2002), the latter of which became her first album to chart in the US, peaking at No. 37 on the Billboard 200. </p>
58
+
59
+ ## Trigger words
60
+ You should use `jlh` to trigger the image generation.
61
+
62
+
63
+ ## Download model
64
+
65
+ Weights for this model are available in Safetensors format.
66
+
67
+ [Download](/mmaluchnick/jennifer-love-hewitt-flux-model/tree/main) them in the Files & versions tab.
68
+
69
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
70
+
71
+ ```py
72
+ from diffusers import AutoPipelineForText2Image
73
+ import torch
74
+
75
+ device = "cuda" if torch.cuda.is_available() else "cpu"
76
+
77
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
78
+ pipeline.load_lora_weights('mmaluchnick/jennifer-love-hewitt-flux-model', weight_name='JenniferLoveHewittFluxModel.safetensors')
79
+ image = pipeline('`jlh`').images[0]
80
+ ```
81
+
82
+ 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)
83
+