Instructions to use 8BitStudio/Aniimage-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use 8BitStudio/Aniimage-2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("8BitStudio/Aniimage-2", 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
|
@@ -56,6 +56,35 @@ text, signature, washed out, flat colors, manga panel, disfigured, poorly drawn,
|
|
| 56 |
|
| 57 |
for the best quality, use DPM++ SDE at 50 steps.
|
| 58 |
|
| 59 |
-
**important** If you do not put 'NSFW' in the negative prompt, it
|
| 60 |
-
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
for the best quality, use DPM++ SDE at 50 steps.
|
| 58 |
|
| 59 |
+
**important** If you do not put 'NSFW' in the negative prompt, it may make nsfw images.
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
## Capabilities
|
| 63 |
+
|
| 64 |
+
Aniimage-2 has significantly higher capabilities than [Aniimage-1](https://huggingface.co/8BitStudio/Aniimage-1). Especially when it comes to backgrounds.
|
| 65 |
+
|
| 66 |
+
<table width="700">
|
| 67 |
+
<tr>
|
| 68 |
+
<td colspan="2">
|
| 69 |
+
<img
|
| 70 |
+
src="https://huggingface.co/8BitStudio/Aniimage-2/resolve/main/Softly%20lit%20forest%20at%20midday%2C%20peaceful%20atmosphere%2C%20no%20people.png"
|
| 71 |
+
width="700"
|
| 72 |
+
>
|
| 73 |
+
</td>
|
| 74 |
+
</tr>
|
| 75 |
+
|
| 76 |
+
<tr>
|
| 77 |
+
<td align="center" width="50%">
|
| 78 |
+
<b>Aniimage-1</b>
|
| 79 |
+
</td>
|
| 80 |
+
<td align="center" width="50%">
|
| 81 |
+
<b>Aniimage-2</b>
|
| 82 |
+
</td>
|
| 83 |
+
</tr>
|
| 84 |
+
|
| 85 |
+
<tr>
|
| 86 |
+
<td colspan="2">
|
| 87 |
+
<sub>Prompt: Softly lit forest at midday, peaceful atmosphere, no people.</sub>
|
| 88 |
+
</td>
|
| 89 |
+
</tr>
|
| 90 |
+
</table>
|