Instructions to use dataautogpt3/OpenDalleV1.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use dataautogpt3/OpenDalleV1.1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("dataautogpt3/OpenDalleV1.1", dtype=torch.bfloat16, device_map="cuda") prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
9a18c63
1
Parent(s): d8f1645
Update model_index.json
Browse files- model_index.json +10 -0
model_index.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"models": [
|
| 3 |
+
{
|
| 4 |
+
"name": "Stable Diffusion SDXL",
|
| 5 |
+
"version": "1.1",
|
| 6 |
+
"path": "OpenDalleV1.1.safetensors",
|
| 7 |
+
"description": "Stable Diffusion SDXL model for high-resolution image generation."
|
| 8 |
+
}
|
| 9 |
+
]
|
| 10 |
+
}
|