--- license: other license_name: bespoke-lora-trained-license license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=True tags: - text-to-image - stable-diffusion - lora - diffusers - template:sd-lora - migrated - gillian anderson - actress - celebrity - dana scully - the x-files base_model: black-forest-labs/FLUX.1-dev instance_prompt: Gillian Anderson widget: - text: 'a highly detailed photo depicting Gillian Anderson' output: url: >- 32433737.jpeg - 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' output: url: >- 32433878.jpeg --- # Gillian Anderson (1993) [Flux] ([CivitAI](https://civitai.com/models/)) ## Model description

Gillian Leigh Anderson (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)

Based on 100 screenshots from "The X-Files" (Season 1 - 1080p Blu-Ray)

## Trigger words You should use `Gillian Anderson`, `Dana Scully` to trigger the image generation. ## Download model Weights for this model are available in Safetensors format. [Download](/Keltezaa/gillian-anderson-1993-flux/tree/main) them in the Files & versions tab. ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) ```py from diffusers import AutoPipelineForText2Image import torch device = "cuda" if torch.cuda.is_available() else "cpu" pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device) pipeline.load_lora_weights('Keltezaa/gillian-anderson-1993-flux', weight_name='Gillian_Anderson_1993_Flux.safetensors') 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] ``` 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)