CoolFace
Modelpublic

PrunaAI/p-image-photos-realism-lora

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes80downloads
Model Card

Photos Realism Lora

<Gallery />

Model description

This is a text-to-image LoRA. Trigger word: use Realism in your prompts for best results. The gallery above shows sample generations.

Trigger word

Prepend `Realism` to your prompt, for example:

Realism <your prompt here>

Gallery

Example 1

[image]

Prompt: Realism A realistic photo portrait of a young woman with curly dark hair and green eyes, laughing gently in natural window light, wearing a soft blue sweater.

Example 2

[image]

Prompt: Realism High-resolution portrait of an older man with a thick gray beard and piercing blue eyes, seated in a classic leather armchair, with a subtle smile.

Example 3

[image]

Prompt: Realism Hyper-realistic headshot of a middle-aged woman with freckles and red hair, looking thoughtfully into the camera, set against a soft-focus indoor background.

Example 4

[image]

Prompt: Realism A candid, natural-light portrait of a man with a trimmed mustache, neatly styled hair, and a tailored suit, sitting at a modern cafe table.

Example 5

[image]

Prompt: Realism Photo of a smiling woman with long blonde hair, wearing a crimson dress, sitting casually in a sunlit living room by a window and a vase of fresh tulips.

Example prompts

Prompts used for the gallery above:

  • Realism A realistic photo portrait of a young woman with curly dark hair and green eyes, laughing gently in natural window light, wearing a soft blue sweater.
  • Realism High-resolution portrait of an older man with a thick gray beard and piercing blue eyes, seated in a classic leather armchair, with a subtle smile.
  • Realism Hyper-realistic headshot of a middle-aged woman with freckles and red hair, looking thoughtfully into the camera, set against a soft-focus indoor background.
  • Realism A candid, natural-light portrait of a man with a trimmed mustache, neatly styled hair, and a tailored suit, sitting at a modern cafe table.
  • Realism Photo of a smiling woman with long blonde hair, wearing a crimson dress, sitting casually in a sunlit living room by a window and a vase of fresh tulips.

LoRA scale

The gallery was generated with `lora_scale=0.5`. You can tune this when running inference (e.g. lower for a subtler effect, higher for a stronger style).

Use on Replicate

python
import replicate

output = replicate.run(
    "prunaai/p-image-lora:393190dc623ef136356d6a7221c561f48771f39c5cff90ef903ca49d1bd47574",
    input={
        "prompt": "Realism your prompt here",
        "lora_weights": "https://huggingface.co/davidberenstein1957/p-image-photos-realism-lora/resolve/main/weights.safetensors",
        "lora_scale": 0.5,
        "hf_api_token": "your-hf-token",
    }
)