Implementation of FLUX-Text
FLUX-Text: A Simple and Advanced Diffusion Transformer Baseline for Scene Text Editing
Rui Lan, Yancheng Bai, Xu Duan, Mingxing Li, Lei Sun, Xiangxiang Chu
ALibaba Group

π Overview
- Motivation: Scene text editing is a challenging task that aims to modify or add text in images while maintaining the fidelity of newly generated text and visual coherence with the background. The main challenge of this task is that we need to edit multiple line texts with diverse language attributes (e.g., fonts, sizes, and styles), language types (e.g., English, Chinese), and visual scenarios (e.g., poster, advertising, gaming).
- Contribution: We propose FLUX-Text, a novel text editing framework for editing multi-line texts in complex visual scenes. By incorporating a lightweight Condition Injection LoRA module, Regional text perceptual loss, and two-stage training strategy, we significantly significant improvements on both Chinese and English benchmarks.
News
2025-07-03: π₯ We have released our pre-trained checkpoints on Hugging Face! You can now try out FLUX-Text with the official weights.
2025-06-26: βοΈ Inference and evaluate code are released. Once we have ensured that everything is functioning correctly, the new model will be merged into this repository.
Todo List
- Inference code
- Pre-trained weights
- Gradio demo
- ComfyUI
- Training code
π οΈ Installation
We recommend using Python 3.10 and PyTorch with CUDA support. To set up the environment:
# Create a new conda environment
conda create -n flux_text python=3.10
conda activate flux_text
# Install other dependencies
pip install -r requirements.txt
pip install flash_attn --no-build-isolation
pip install Pillow==9.5.0
π€ Model Introduction
FLUX-Text is an open-source version of the scene text editing model. FLUX-Text can be used for editing posters, emotions, and more. The table below displays the list of text editing models we currently offer, along with their foundational information.
Model Name | Image Resolution | Memory Usage | English Sen.Acc | Chinese Sen.Acc | Download Link |
---|---|---|---|---|---|
FLUX-Text-512 | 512*512 | 34G | 0.8419 | 0.7132 | π€ HuggingFace |
FLUX-Text | Multi Resolution | 34G for (512*512) | 0.8228 | 0.7161 | π€ HuggingFace |
π₯ Quick Start
Here's a basic example of using FLUX-Text:
import numpy as np
from PIL import Image
import torch
import yaml
from src.flux.condition import Condition
from src.flux.generate_fill import generate_fill
from src.train.model import OminiModelFIll
from safetensors.torch import load_file
config_path = ""
lora_path = ""
with open(config_path, "r") as f:
config = yaml.safe_load(f)
model = OminiModelFIll(
flux_pipe_id=config["flux_path"],
lora_config=config["train"]["lora_config"],
device=f"cuda",
dtype=getattr(torch, config["dtype"]),
optimizer_config=config["train"]["optimizer"],
model_config=config.get("model", {}),
gradient_checkpointing=True,
byt5_encoder_config=None,
)
state_dict = load_file(lora_path)
state_dict_new = {x.replace('lora_A', 'lora_A.default').replace('lora_B', 'lora_B.default').replace('transformer.', ''): v for x, v in state_dict.items()}
model.transformer.load_state_dict(state_dict_new, strict=False)
pipe = model.flux_pipe
prompt = "lepto college of education, the written materials on the picture: LESOTHO , COLLEGE OF , RE BONA LESELI LESEL , EDUCATION ."
hint = Image.open("assets/hint.png").resize((512, 512)).convert('RGB')
img = Image.open("assets/hint_imgs.jpg").resize((512, 512))
condition_img = Image.open("assets/hint_imgs_word.png").resize((512, 512)).convert('RGB')
hint = np.array(hint) / 255
condition_img = np.array(condition_img)
condition_img = (255 - condition_img) / 255
condition_img = [condition_img, hint, img]
position_delta = [0, 0]
condition = Condition(
condition_type='word_fill',
condition=condition_img,
position_delta=position_delta,
)
generator = torch.Generator(device="cuda")
res = generate_fill(
pipe,
prompt=prompt,
conditions=[condition],
height=512,
width=512,
generator=generator,
model_config=config.get("model", {}),
default_lora=True,
)
res.images[0].save('flux_fill.png')