Text-to-Image
Diffusers
stable-diffusion
stable-diffusion-diffusers
simpletuner
lora
template:sd-lora
Instructions to use diegochavez/lora-training with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use diegochavez/lora-training with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("diegochavez/lora-training") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Model card auto-generated by SimpleTuner
Browse files
README.md
CHANGED
|
@@ -48,8 +48,8 @@ You may reuse the base model text encoder for inference.
|
|
| 48 |
|
| 49 |
## Training settings
|
| 50 |
|
| 51 |
-
- Training epochs:
|
| 52 |
-
- Training steps:
|
| 53 |
- Learning rate: 1e-05
|
| 54 |
- Effective batch size: 8
|
| 55 |
- Micro-batch size: 2
|
|
|
|
| 48 |
|
| 49 |
## Training settings
|
| 50 |
|
| 51 |
+
- Training epochs: 90
|
| 52 |
+
- Training steps: 900
|
| 53 |
- Learning rate: 1e-05
|
| 54 |
- Effective batch size: 8
|
| 55 |
- Micro-batch size: 2
|