Instructions to use Paulington/Allowable with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Paulington/Allowable with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Paulington/Allowable", dtype=torch.bfloat16, device_map="cuda") prompt = "oops" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
| 1 |
---
|
| 2 |
base_model:
|
| 3 |
- black-forest-labs/FLUX.1-dev
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
# Model Card for Model ID
|
|
|
|
| 1 |
---
|
| 2 |
base_model:
|
| 3 |
- black-forest-labs/FLUX.1-dev
|
| 4 |
+
tags:
|
| 5 |
+
- art
|
| 6 |
+
- text-to-image
|
| 7 |
+
- template:diffusion-lora
|
| 8 |
+
- diffusers
|
| 9 |
+
instance_prompt: oops
|
| 10 |
+
|
| 11 |
---
|
| 12 |
|
| 13 |
# Model Card for Model ID
|