File size: 1,739 Bytes
7fc4e30
 
 
 
d1797bd
7fc4e30
52639bd
7fc4e30
52639bd
 
 
7fc4e30
52639bd
7fc4e30
52639bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4f4ef7c
 
52639bd
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
library_name: diffusers
---

# Mann-E Art

This is the news _Stable Diffusion XL_ based model from our company [Mann-E](https://mann-e.com) with more focus on artistic results closer to midjourney. 

<p align="center">
  <img src="collage.png" width=416 height=608/>
</p>

This model has been trained on around 1000 midjourney outputs in addition to photos gathered by our team. It is good in making photos, art, digital paintings, but may not be that great on pixel art or vector illustration. 

## How to use

For now, it is a diffusers model. We recommend using this piece of code:

```python
from diffusers import DiffusionPipeline, DPMSolverSinglestepScheduler
import torch

pipe = DiffusionPipeline.from_pretrained(
    "mann-e/Mann-E_Art", torch_dtype=torch.float16
).to("cuda")

#This is equivalent to DPM++ SDE Karras, as noted in https://huggingface.co/docs/diffusers/main/en/api/schedulers/overview
pipe.scheduler = DPMSolverSinglestepScheduler.from_config(pipe.scheduler.config, use_karras_sigmas=True)

image = pipe(
  prompt="a cat in a bustling middle eastern city",
  num_inference_steps=8,
  guidance_scale=4,
  width=768,
  height=768,
  clip_skip=1
).images[0]
image.save("a_cat.png")
```

## Additional Notes

- SDXL 1.0 LoRas are working just fine with the model.
- ControlNet, IPAdapter, InstantID are just fine.
- Although we still recommend 768x768, but it is just working fine with bigger resolutions up to 1024x1024.
- For rectangular images, 832x1216 and 608x1080 are working fine as well.
- The model isn't good at vector or pixel without additional LoRA adapters.

## Donations

- __Tron/USDT (TRC20)__ : `TPXpiWACUZXtUszDbpLeDYR75NQTwngD8o`
- __ETH (ERC20)__: `0x44e262f121b88bcb21caac3d353edd78c3717e08`