Squaad AI commited on
Commit
9cca8b1
1 Parent(s): 3c1e0f3

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +17 -0
  2. train.sh +1 -0
README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
4
+ instance_prompt: Zeke Abuh
5
+ tags:
6
+ - stable-diffusion
7
+ - stable-diffusion-diffusers
8
+ - text-to-image
9
+ - diffusers
10
+ - lora
11
+ inference: true
12
+ ---
13
+ # LoRA DreamBooth - zekeabuh
14
+
15
+ These are LoRA adaption weights for [stabilityai/stable-diffusion-xl-base-1.0](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0). The weights were trained on the instance prompt "Zeke Abuh" using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following.
16
+
17
+
train.sh ADDED
@@ -0,0 +1 @@
 
 
1
+ accelerate launch train_dreambooth_b-lora_sdxl.py --pretrained_model_name_or_path=stabilityai/stable-diffusion-xl-base-1.0 --instance_data_dir=/home/user/app/training_data/zekeabuh --output_dir=/home/user/app/experiments/zekeabuh --instance_prompt="Zeke Abuh" --resolution=1024 --rank=64 --train_batch_size=1 --gradient_accumulation_steps=1 --learning_rate=None --lr_scheduler=constant --lr_warmup_steps=0 --max_train_steps=1000 --checkpointing_steps=1000 --validation_prompt="A photo of a Zeke Abuh" --validation_epochs=250 --seed=0 --mixed_precision fp16