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", 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 ·
5bd9cbe
1
Parent(s): 9d83f33
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,4 +27,4 @@ Trained with 10.500 steps.
|
|
| 27 |
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)
|
| 28 |
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)
|
| 29 |
|
| 30 |
-
|
|
|
|
| 27 |
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)
|
| 28 |
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)
|
| 29 |
|
| 30 |
+
This model is open access with a CreativeML Open RAIL++-M License further specifying rights and usage -> https://huggingface.co/stabilityai/stable-diffusion-2/blob/main/LICENSE-MODEL
|