Muhammadreza commited on
Commit
52639bd
1 Parent(s): 5066eb1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -4,6 +4,48 @@ library_name: diffusers
4
 
5
  # Mann-E Art
6
 
 
7
 
 
 
 
8
 
 
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  # Mann-E Art
6
 
7
+ 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.
8
 
9
+ <p align="center">
10
+ <img src="collage.png" width=416 height=608/>
11
+ </p>
12
 
13
+ 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.
14
 
15
+ ## How to use
16
+
17
+ For now, it is a diffusers model. We recommend using this piece of code:
18
+
19
+ ```python
20
+ from diffusers import DiffusionPipeline, DPMSolverSinglestepScheduler
21
+ import torch
22
+
23
+ pipe = DiffusionPipeline.from_pretrained(
24
+ "mann-e/Mann-E_Art", torch_dtype=torch.float16
25
+ ).to("cuda")
26
+
27
+ #This is equivalent to DPM++ SDE Karras, as noted in https://huggingface.co/docs/diffusers/main/en/api/schedulers/overview
28
+ pipe.scheduler = DPMSolverSinglestepScheduler.from_config(pipe.scheduler.config, use_karras_sigmas=True)
29
+
30
+ image = pipe(
31
+ prompt="a cat in a bustling middle eastern city",
32
+ num_inference_steps=8,
33
+ guidance_scale=4,
34
+ width=768,
35
+ height=768,
36
+ clip_skip=1
37
+ ).images[0]
38
+ image.save("a_cat.png")
39
+ ```
40
+
41
+ ## Additional Notes
42
+
43
+ - SDXL 1.0 LoRas are working just fine with the model.
44
+ - ControlNet, IPAdapter, InstantID are just fine.
45
+ - Although we still recommend 768x768, but it is just working fine with bigger resolutions up to 1024x1024.
46
+ - For rectangular images, 832x1216 and 608x1080 are working fine as well.
47
+
48
+ ## Donations
49
+
50
+ - __Tron/USDT (TRC20)__ : `TPXpiWACUZXtUszDbpLeDYR75NQTwngD8o`
51
+ - __ETH (ERC20)__: `0x44e262f121b88bcb21caac3d353edd78c3717e08`