Instructions to use ezhoureal/aura_style with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ezhoureal/aura_style with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.2-dev,black-forest-labs/FLUX.2-klein-4B,stabilityai/stable-diffusion-3.5-medium", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("ezhoureal/aura_style") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
File size: 2,989 Bytes
5917310 9a492d0 5917310 9a492d0 5917310 9a492d0 5917310 f891357 5917310 9a492d0 5917310 9a492d0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | ---
license: apache-2.0
base_model:
- black-forest-labs/FLUX.2-dev
- black-forest-labs/FLUX.2-klein-4B
- stabilityai/stable-diffusion-3.5-medium
library_name: diffusers
pipeline_tag: image-to-image
tags:
- flux
- flux-2
- flux-2-edit
- lora
- image-to-image
- image-editing
- style-transfer
- aura-style
datasets:
- ezhoureal/aura_style
---
# Flux Aura Style LoRA
This repository contains LoRA adapters for applying a radiant aura style to image edits. The style emphasizes smooth colorful gradients, ethereal haze, subtle contour lighting, and a polished cinematic glow while aiming to preserve the source subject and composition.
## Training Details
- Base/edit model: `black-forest-labs/FLUX.2-dev` / Flux-2 Edit
- Training service: `fal-ai/flux-2/lora/edit`
- Steps: 1,000
- Learning rate: `5e-5`
- Dataset: 25 paired image-edit examples
- Training data size: 25 target images, 25 conditioning/source images, and metadata
- Output style: radiant aura lighting, smooth colorful gradients, haze, contour highlights, cinematic glow
Default training instruction:
```text
Apply a radiant aura lighting style with smooth colorful gradients, ethereal haze, subtle contour lighting, and a refined cinematic glow while preserving the subject and composition.
```
## Usage
Use the adapter with compatible Image2Image inference. A useful prompt pattern is:
```text
Transform this photorealistic image into the trained radiant aura style: smooth colorful gradients, ethereal haze, subtle contour lighting, and a refined cinematic glow. Preserve the subject identity, composition, pose, silhouette, camera framing, and important details.
```
Suggested starting settings:
- LoRA scale: `1.0`
- Guidance scale: `2.5`
- Inference steps: `28`
For local Diffusers workflows, load the Diffusers-format adapter:
```python
from diffusers import Flux2Pipeline
pipe = Flux2Pipeline.from_pretrained("diffusers/FLUX.2-dev-bnb-4bit")
pipe.load_lora_weights(
"fal_flux2_edit_lora/pytorch_lora_weights.diffusers.safetensors",
adapter_name="aura",
)
pipe.set_adapters(["aura"], adapter_weights=[1.0])
```
## Evaluation Assets
`eval_data/` contains the input images used for evaluation. `output_sync/` contains corresponding stylized outputs generated with the uploaded adapter.
## Intended Use
This LoRA is intended for stylized image editing where the source image should remain recognizable while receiving a luminous aura treatment. It works best with clear subjects, simple-to-medium complexity compositions, and prompts that explicitly preserve identity, pose, framing, and important details.
## Limitations
- The adapter is style-focused and may over-apply glow or color gradients at high LoRA scales.
- The training set is compact, so unusual image domains may need prompt tuning or a lower adapter strength.
- It inherits behavior, restrictions, and access requirements from the Flux-2 Edit base model.
- The dataset and outputs are included for reproducibility and inspection. |