drew-barrymore-flux / README.md
Keltezaa's picture
Upload folder using huggingface_hub
16eb1c5 verified
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- photorealistic
- sexy
- woman
- actress
- celebrity
- girls
- realistic
base_model: black-forest-labs/FLUX.1-dev
instance_prompt:
widget:
- text: ' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.'
output:
url: >-
31779364.jpeg
- text: ' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.'
output:
url: >-
31779400.jpeg
- text: ' The image is a photograph of a woman with a fair complexion and short wavy golden blonde hair cascading down to her shoulders. Her hair appears slightly unkempt, delicate nose, in a cafe wearing a dress. Looking at the viewer smiling.'
output:
url: >-
31779370.jpeg
- text: ' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.'
output:
url: >-
31779421.jpeg
---
# Drew Barrymore (Flux)
<Gallery />
([CivitAI](https://civitai.com/models/))
## Model description
<p>Drew Barrymore - Trained for Flux. Dataset gathered from 1995-2000 images</p>
## Download model
Weights for this model are available in Safetensors format.
[Download](/Keltezaa/drew-barrymore-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/drew-barrymore-flux', weight_name='Drew_Barrymore_Flux.safetensors')
image = pipeline(' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.').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)