Skip to content

Commit

Permalink
MultiLoRA image generation
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova committed Nov 7, 2024
1 parent a08c2b1 commit 9819114
Show file tree
Hide file tree
Showing 2 changed files with 330 additions and 0 deletions.
45 changes: 45 additions & 0 deletions notebooks/sdxl-multilora-image-generation/lora_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
LORA = [
{
"model_id": "DoctorDiffusion/doctor-diffusion-s-xray-xl-lora",
"prompt": "xray <subject>",
"file_name": "DD-xray-v1.safetensors",
"weight": 0.8,
"name": "X-ray"
},
{
"model_id": "alvdansen/the-point",
"prompt": "<subject>",
"name": "Point style",
"file_name": "araminta_k_the_point.safetensors",
"weight": 0.6
},
{
"model_id": "KappaNeuro/ukiyo-e-art",
"prompt": "an illustration of <subject> in Ukiyo-e Art style",
"negative": "realistic, portrait, 3d",
"file_name": "Ukiyo-e Art.safetensors",
"weight": 0.8,
"name": "Ukiyo-e Style"
},
{
"model_id": "DoctorDiffusion/doctor-diffusion-s-controllable-vector-art-xl-lora",
"prompt": "vector <subject>",
"file_name": "DD-vector-v2.safetensors",
"weight": 0.8,
"name": "Vector Art"
},
{
"model_id": "Norod78/sdxl-chalkboarddrawing-lora",
"prompt": "A colorful chalkboard drawing of <subject>",
"name": "Chalkboard drawing",
"file_name": "SDXL_ChalkBoardDrawing_LoRA_r8.safetensors",
"weight": 0.45,
},
{
"model_id": "ProomptEngineer/pe-shitty-medieval-paintings",
"prompt": "<subject> in the style of bad medieval art, PEBadMedivalArt",
"weight": 1.0,
"name": "Medieval style",
"file_name": "PE_BadMedivalArt.safetensors"
}
]

Large diffs are not rendered by default.

0 comments on commit 9819114

Please sign in to comment.