Instructions to use IcelosAI/lichtspiel-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use IcelosAI/lichtspiel-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("IcelosAI/lichtspiel-diffusion", torch_dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Meisser commited on
Commit ·
f122d81
1
Parent(s): 9b6ccde
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,13 +4,25 @@ tags:
|
|
| 4 |
- text-to-image
|
| 5 |
- stable-diffusion
|
| 6 |
---
|
| 7 |
-
### Lichtspiel-Diffusion Dreambooth model trained by FricktionMaster with [TheLastBen's fast-DreamBooth](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast-DreamBooth.ipynb) notebook
|
| 8 |
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
|
|
|
| 12 |
|
| 13 |
Sample pictures of this concept:
|
| 14 |
|
| 15 |

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
|
|
|
| 4 |
- text-to-image
|
| 5 |
- stable-diffusion
|
| 6 |
---
|
|
|
|
| 7 |
|
| 8 |
|
| 9 |
+
### Lichtspiel Diffusion
|
| 10 |
+
This is a fine-tuned Stable Diffusion 1.5 model trained on stills from movies by celebrated cinematographers.
|
| 11 |
+
|
| 12 |
|
| 13 |
Sample pictures of this concept:
|
| 14 |
|
| 15 |

|
| 16 |
+
|
| 17 |
+
Use the token LichtspielStyle or style LichtspielStyle to activate the effect. It works particularly well for portraits and if you reference specific films like Blade Runner, True Grit or The Revenant.
|
| 18 |
+
|
| 19 |
+
The model was trained using dreambooth by TheLastBen based on the SD implementation by XavierXiao.
|
| 20 |
+
|
| 21 |
+
Trained with 10.500 steps.
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
Test the model with A1111 Colab [fast-Colab-A1111](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast_stable_diffusion_AUTOMATIC1111.ipynb)
|
| 26 |
+
Or you can run your new concept via `diffusers` [Colab Notebook for Inference](https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_inference.ipynb)
|
| 27 |
+
|
| 28 |
|