Instructions to use NickKolok/flat2DanimergeV20 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use NickKolok/flat2DanimergeV20 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("NickKolok/flat2DanimergeV20", 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
I don’t know how to use this in comfyui
#1
by zzunls - opened
Hi! I don't know how to use it in comfyui too. I have never used comfyui. But these two points are worth considering:
a) The model is in diffusers format, that is non-common and a bit outdated. I used to work with this format in order to run ShivamShrirao's Dreambooth.
b) The model is not unique and has not been done by me.
So, I advice you to download an appropriate (possibly .safetensors ) file of the model from here:
https://civitai.com/models/35960?modelVersionId=91560
You may also want to have a look at newer versions of the same model.
Happy generating!