Instructions to use DeverStyle/Ideogram-4.0-Loras with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use DeverStyle/Ideogram-4.0-Loras with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ideogram-ai/ideogram-4-fp8", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("DeverStyle/Ideogram-4.0-Loras") prompt = "Arcane samples" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -38,6 +38,19 @@ Add the trigger word `arcvfx` in the art_style section of the style description,
|
|
| 38 |
}
|
| 39 |
```
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
### Download model
|
| 43 |
|
|
|
|
| 38 |
}
|
| 39 |
```
|
| 40 |
|
| 41 |
+
Other examples:
|
| 42 |
+
```
|
| 43 |
+
"aesthetics":"moody, cinematic, atmospheric","lighting"
|
| 44 |
+
"aesthetics":"stylized, colorful, cinematic"
|
| 45 |
+
"aesthetics":"moody, cold, atmospheric"
|
| 46 |
+
"aesthetics":"cinematic, ethereal, moody"
|
| 47 |
+
|
| 48 |
+
"art_style":"arcvfx, stylized digital illustration with clean lines and soft gradients"
|
| 49 |
+
"art_style":"arcvfx, stylized digital art with detailed textures and painterly finishes"
|
| 50 |
+
"art_style":"arcvfx, modern 2D animation style with clean lines and painterly shading"
|
| 51 |
+
"art_style":"arcvfx, hyper-realistic CGI"
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
|
| 55 |
### Download model
|
| 56 |
|