Text-to-Image
Diffusers
English
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
image-to-image
aiart
anime
Instructions to use TheRafal/everything-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TheRafal/everything-v1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TheRafal/everything-v1", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -53,8 +53,7 @@ git clone https://huggingface.co/TheRafal/everything-v1
|
|
| 53 |
|
| 54 |
# Diffusers
|
| 55 |
|
| 56 |
-
This model can be used just like any other Stable Diffusion model.
|
| 57 |
-
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
| 58 |
|
| 59 |
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
|
| 60 |
|
|
|
|
| 53 |
|
| 54 |
# Diffusers
|
| 55 |
|
| 56 |
+
This model can be used just like any other Stable Diffusion model.
|
|
|
|
| 57 |
|
| 58 |
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
|
| 59 |
|