Upload . with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: creativeml-openrail-m
|
| 3 |
+
base_model: emilianJR/HRA_hyperrealism_art
|
| 4 |
+
instance_prompt: Joules Lorretta Jersey Blouse
|
| 5 |
+
tags:
|
| 6 |
+
- stable-diffusion
|
| 7 |
+
- stable-diffusion-diffusers
|
| 8 |
+
- text-to-image
|
| 9 |
+
- diffusers
|
| 10 |
+
- lora
|
| 11 |
+
inference: true
|
| 12 |
+
---
|
| 13 |
+
# LoRA DreamBooth - joules-lorretta-jersey-blouse
|
| 14 |
+
|
| 15 |
+
These are LoRA adaption weights for [emilianJR/HRA_hyperrealism_art](https://huggingface.co/emilianJR/HRA_hyperrealism_art). The weights were trained on the instance prompt "Joules Lorretta Jersey Blouse" 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_lora.py --pretrained_model_name_or_path=emilianJR/HRA_hyperrealism_art --instance_data_dir=/home/user/app/training_data/joules-lorretta-jersey-blouse --output_dir=/home/user/app/experiments/joules-lorretta-jersey-blouse --instance_prompt="Joules Lorretta Jersey Blouse" --resolution=512 --train_batch_size=1 --gradient_accumulation_steps=1 --learning_rate=0.0001 --lr_scheduler=constant --lr_warmup_steps=0 --max_train_steps=1000 --checkpointing_steps=100 --validation_prompt="woman wearing joules lorretta jersey blouse" --validation_epochs=100 --seed=0 --mixed_precision fp16
|