Views
No views yet
DADADOLL style in your prompts for best results. The gallery above shows sample generations.DADADOLL style to your prompt, for example:DADADOLL style <your prompt here>




lora_scale=0.5. You can tune this when running inference (e.g. lower for a subtler effect, higher for a stronger style).1import replicate
2
3output = replicate.run(
4 "prunaai/p-image-lora:393190dc623ef136356d6a7221c561f48771f39c5cff90ef903ca49d1bd47574",
5 input={
6 "prompt": "DADADOLL style your prompt here",
7 "lora_weights": "https://huggingface.co/davidberenstein1957/p-image-photos-modernism-art-lora/resolve/main/weights.safetensors",
8 "lora_scale": 0.5,
9 "hf_api_token": "your-hf-token",
10 }
11)