MeinaMix objective is to be able to do good art with little prompting.
I have a
discord where you can share images, discuss prompt and ask for help.
https://discord.gg/meinaverse
I also have a
ko-fi and
Patreon page where you can
support me or buy me a coffee <3, it will be very much appreciated:
https://ko-fi.com/meina and
https://www.patreon.com/MeinaMix
MeinaMix and the other of Meinas will ALWAYS be FREE.
This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the
Diffusers.
1import torch
2from diffusers import DiffusionPipeline
3
4pipe = DiffusionPipeline.from_pretrained(
5 'kamillaova/MeinaMix',
6 torch_dtype=torch.float16, # or bfloat16 for Ampere+ GPUs
7).to('cuda')
8
9img = pipe(
10 prompt='positive prompt',
11 negative_prompt='negative prompt',
12
13 guidance_scale=5.0,
14 num_inference_steps=30,
15 width=512, height=768,
16).images[0]
17
18img.save('image.png')