Keltezaa commited on
Commit
00bcf0d
1 Parent(s): fc11199

Upload folder using huggingface_hub

Browse files
32433737.jpeg ADDED
32433878.jpeg ADDED
Gillian_Anderson_1993_Flux.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49a883b105fcf68010a98f23e8535c30e878298b24c09f3ed35ed97199affd8d
3
+ size 158607592
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - gillian anderson
13
+ - actress
14
+ - celebrity
15
+ - dana scully
16
+ - the x-files
17
+
18
+ base_model: black-forest-labs/FLUX.1-dev
19
+ instance_prompt: Gillian Anderson
20
+ widget:
21
+ - text: 'a highly detailed photo depicting Gillian Anderson'
22
+
23
+ output:
24
+ url: >-
25
+ 32433737.jpeg
26
+ - text: 'Dana Scully is seen in a candid upper-body photo, captured with a 2000s digital camera. The image has a grainy, low-resolution look typical of that time. She’s leaning against a wall in a casual pose, wearing a simple t-shirt and jeans. she has a red bobcut, reflecting the early 2000s fashion, and the photo captures her in a natural, relaxed moment, possibly mid-conversation. The lighting is uneven and slightly overexposed, creating a nostalgic, snapshot feel with a genuine, unpolished vibe'
27
+
28
+ output:
29
+ url: >-
30
+ 32433878.jpeg
31
+
32
+ ---
33
+
34
+ # Gillian Anderson (1993) [Flux]
35
+
36
+ <Gallery />
37
+
38
+
39
+
40
+ ([CivitAI](https://civitai.com/models/))
41
+
42
+ ## Model description
43
+
44
+ <p><strong>Gillian Leigh Anderson</strong> (born August 9, 1968) is an American actress, writer, and activist. She is best known for her roles as FBI Special Agent Dana Scully in the sci-fi series The X-Files (1993–2002; 2016–2018)</p><p></p><p><span style="color:rgb(253, 126, 20)">Based on 100 screenshots from "The X-Files" (Season 1 - 1080p Blu-Ray)</span></p><p></p><p></p>
45
+
46
+ ## Trigger words
47
+ You should use `Gillian Anderson`, `Dana Scully` to trigger the image generation.
48
+
49
+
50
+ ## Download model
51
+
52
+ Weights for this model are available in Safetensors format.
53
+
54
+ [Download](/Keltezaa/gillian-anderson-1993-flux/tree/main) them in the Files & versions tab.
55
+
56
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
57
+
58
+ ```py
59
+ from diffusers import AutoPipelineForText2Image
60
+ import torch
61
+
62
+ device = "cuda" if torch.cuda.is_available() else "cpu"
63
+
64
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
65
+ pipeline.load_lora_weights('Keltezaa/gillian-anderson-1993-flux', weight_name='Gillian_Anderson_1993_Flux.safetensors')
66
+ image = pipeline('Dana Scully is seen in a candid upper-body photo, captured with a 2000s digital camera. The image has a grainy, low-resolution look typical of that time. She’s leaning against a wall in a casual pose, wearing a simple t-shirt and jeans. she has a red bobcut, reflecting the early 2000s fashion, and the photo captures her in a natural, relaxed moment, possibly mid-conversation. The lighting is uneven and slightly overexposed, creating a nostalgic, snapshot feel with a genuine, unpolished vibe').images[0]
67
+ ```
68
+
69
+ 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)
70
+