CoolFace
Modelpublic

risangpanggalih/doodoov1

sourceHugging Faceotherupdated 2y agoView on Hugging Face
0likes6downloads
Model Card

<html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Flux.1-dev Simple Doodle Lora: doodoov1</title> <style> h1 { font-size: 36px; color: #000000; text-align: center; } </style> </head> <body> <h1>Flux.1-dev Simple Doodle Lora: doodoov1</h1> </body> </html>

<center> <Gallery /> <p><em>The <b>doodoov1</b> LoRA is trained from the FLUX.1-dev, fine-tuned to generate playful, hand-drawn style illustrations with a clean, minimalistic approach. <b>doodoov1</b> excels at producing charming and whimsical artworks that capture a simple sketch-like aesthetic, perfect for various subjects.</em></p> <p><em style="font-weight: bold;">Version Beta 1</em></p> </center>

Trained on Replicate using: https://replicate.com/lucataco/ai-toolkit

Trigger words

You should use doodoov1 to trigger the image generation.

Use it with the 🧨 diffusers library

py
from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('risangpanggalih/doodoov1', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers