Instructions to use aipicasso/emi-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use aipicasso/emi-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("aipicasso/emi-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
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -43,6 +43,12 @@ positive prompt: 1boy, face, silver very short hair, red eyes, smile:0.1, lookin
|
|
| 43 |
negative prompt: (embedding:unaestheticXLv31:0.5)
|
| 44 |
```
|
| 45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
# モデルの出力向上について
|
| 47 |
- 使えるプロンプトはWaifu Diffusionと同じです。また、Stable Diffusionのように使うこともできます。
|
| 48 |
- ネガティブプロンプトに[Textual Inversion](https://civitai.com/models/119032/unaestheticxl-or-negative-ti)を使用することをおすすめします。
|
|
|
|
| 43 |
negative prompt: (embedding:unaestheticXLv31:0.5)
|
| 44 |
```
|
| 45 |
|
| 46 |
+

|
| 47 |
+
```
|
| 48 |
+
positive prompt: 1girl standing on an abandoned ruin, brown long hair, brown eyes, full body, from front
|
| 49 |
+
negative prompt: (embedding:unaestheticXLv31:0.5), bad hand, bad anatomy, low quality
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
# モデルの出力向上について
|
| 53 |
- 使えるプロンプトはWaifu Diffusionと同じです。また、Stable Diffusionのように使うこともできます。
|
| 54 |
- ネガティブプロンプトに[Textual Inversion](https://civitai.com/models/119032/unaestheticxl-or-negative-ti)を使用することをおすすめします。
|