CoolFace
Modelpublic

prithivMLmods/Simple-Doodle-SD3.5-Turbo

sourceHugging Facecreativeml-openrail-mupdated 2y agoView on Hugging Face
5likes40downloads
Model Card

Simple-Doodle-SD3.5-Turbo

<Gallery />

The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.

Model description

prithivMLmods/Simple-Doodle-SD3.5-Turbo

Image Processing Parameters

ParameterValueParameterValue
LR SchedulerconstantNoise Offset0.03
OptimizerAdamWMultires Noise Discount0.1
Network Dim64Multires Noise Iterations10
Network Alpha32Repeat & Steps20 & 2300
Epoch10Save Every N Epochs1

Labeling: florence2-en(natural language & English)

Total Images Used for Training : 18

App File Structure

/project-root/

├── .gitattributes ├── README.md ├── app.py ├── pythonproject.py

Setting Up

from diffusers import DiffusionPipeline
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"
model_repo_id = "stabilityai/stable-diffusion-3.5-large-turbo"

torch_dtype = torch.bfloat16 if torch.cuda.is_available() else torch.float32

pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
pipe = pipe.to(device)

pipe.load_lora_weights("prithivMLmods/Simple-Doodle-SD3.5-Turbo", weight_name="SD3.5-Turbo-Realism-2.0-LoRA.safetensors")
trigger_word = "Simple Doodle"  
pipe.fuse_lora(lora_scale=1.0)

Trigger words

You should use Simple Doodle to trigger the image generation.

Download model

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.