Views
No views yet



Qwen-Image-Edit-2511-Hyper-Realistic-Portrait is an adapter LoRA developed for Qwen’s Qwen-Image-Edit-2511 image-to-image model, specifically designed to transform images into ultra-realistic, photorealistic face portraits with strict identity preservation. The model enhances pore-level skin textures, realistic moisture effects, and natural wet hair clumping while preserving original facial structure and details. It applies physically plausible lighting, natural eye reflections, and shallow depth of field to achieve a true photographic look without artificial smoothing or retouching. Strong visual consistency is maintained across lighting, shadows, color tones, and composition, ensuring results remain authentic and camera-realistic. This makes the model well suited for high-fidelity portrait generation where realism and identity accuracy are critical. Above are example outputs demonstrating the model’s ability to deliver high-quality, visually cohesive hyper-realistic portrait results.
[!important] Note: The face identity in the input image used for inference should be well defined to accurately reproduce a Hyper-Realistic Portrait (HRP).
Compatible with versions 2509 and 2511.
pip install -U diffusers transformers accelerate1import torch
2from diffusers import DiffusionPipeline
3from diffusers.utils import load_image
4
5# Switch to "mps" for Apple devices
6pipe = DiffusionPipeline.from_pretrained(
7 "Qwen/Qwen-Image-Edit-2511",
8 dtype=torch.bfloat16,
9 device_map="cuda"
10)
11
12pipe.load_lora_weights("prithivMLmods/Qwen-Image-Edit-2511-Hyper-Realistic-Portrait")
13
14prompt = "Transform into a hyper-realistic face portrait."
15
16input_image = load_image(
17 "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png"
18)
19
20image = pipe(image=input_image, prompt=prompt).images[0]Recommended: HRP_20.safetensors
Transform the image into an ultra-realistic photorealistic portrait with strict identity preservation, facing straight to the camera. Enhance pore-level skin textures, realistic moisture effects, and natural wet hair clumping against the skin. Apply cool-toned soft-box lighting with subtle highlights and shadows, maintain realistic green-hazel eye catchlights without synthetic gloss, and preserve soft natural lip texture. Use shallow depth of field with a clean bokeh background, an 85mm macro photographic look, and raw photo grading without retouching to maintain realism and original details.Transform into a hyper-realistic face portrait1{
2 "portrait_config": {
3 "version": "1.0",
4 "mode": "hyper_realistic_transformation",
5 "aspect_ratio": "3:4"
6 },
7 "identity_preservation": {
8 "reference_source": "uploaded_image",
9 "matching_strength": 1.0,
10 "facial_structure_lock": true,
11 "feature_fidelity": "maximum"
12 },
13 "skin_rendering": {
14 "texture_level": "pore_resolution",
15 "detail_maps": [
16 "micro_texture",
17 "subsurface_scattering",
18 "natural_imperfections"
19 ],
20 "finish": "matte_natural",
21 "post_processing": "no_airbrushing"
22 },
23 "facial_features": {
24 "eyes": {
25 "color_mode": "preserve_natural",
26 "enhancements": {
27 "catchlights": "realistic_reflections",
28 "iris_detail": "high",
29 "clarity": "sharp"
30 },
31 "constraints": ["no_synthetic_gloss", "natural_moisture_only"]
32 },
33 "lips": {
34 "texture": "natural_ridges",
35 "moisture": "soft_gloss",
36 "state": "slightly_parted",
37 "detail": "fine_lines_visible"
38 },
39 "hair": {
40 "state": "wet_saturated",
41 "behavior": "natural_clumping",
42 "strand_separation": true,
43 "adherence": ["forehead", "temples", "neck"]
44 }
45 },
46 "environmental_effects": {
47 "moisture": {
48 "sweat_layer": {
49 "coverage": ["nose_bridge", "forehead", "upper_lip"],
50 "intensity": "fine_mist",
51 "appearance": "glistening"
52 },
53 "water_droplets": {
54 "size": "micro",
55 "distribution": ["cheekbones", "jawline", "temple"],
56 "surface_tension": "realistic"
57 }
58 }
59 },
60 "lighting_setup": {
61 "primary_light": {
62 "type": "softbox_diffusion",
63 "angle": 45,
64 "intensity": "medium_high"
65 },
66 "color_temperature": "cool",
67 "palette": {
68 "primary": ["steel_blue", "soft_cyan"],
69 "secondary": ["natural_skin_tones"],
70 "accents": ["white", "light_grey"]
71 },
72 "shadows": {
73 "softness": "high",
74 "fill_ratio": 0.6
75 }
76 },
77 "background": {
78 "style": "minimalist_bokeh",
79 "depth_of_field": "shallow",
80 "colors": ["light_grey", "pure_white"],
81 "blur_intensity": "high"
82 },
83 "camera_simulation": {
84 "focal_length": "85mm",
85 "aperture": "f/2.0",
86 "focus": "eyes",
87 "sensor_type": "full_frame",
88 "style": "raw_photography"
89 },
90 "render_settings": {
91 "engine": "photorealistic_cgi",
92 "quality": "maximum",
93 "anti_aliasing": "high",
94 "color_depth": "16bit",
95 "output_format": "uncompressed"
96 },
97 "constraints": {
98 "no_artificial_smoothing": true,
99 "preserve_natural_imperfections": true,
100 "avoid_over_saturation": true,
101 "maintain_realistic_proportions": true
102 }
103}Transform the image into an ultra-realistic photorealistic portrait with strict identity preservation, facing straight to the camera. Enhance pore-level skin textures, realistic moisture effects, and natural wet hair clumping against the skin. Apply cool-toned soft-box lighting with subtle highlights and shadows, maintain realistic green-hazel eye catchlights without synthetic gloss, and preserve soft natural lip texture. Use shallow depth of field with a clean bokeh background, an 85mm macro photographic look, and raw photo grading without retouching to maintain realism and original details.