Instructions to use MyneFactory/MF-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MyneFactory/MF-Base with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MyneFactory/MF-Base", 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
How to use this .vae file? It does not have the normal extension, it has the same extension as the model itself.
#2
by Jamerrone - opened
I also can't select it in the settings menu, it only accepts .pt files.
If you are refering to vae-ft-mse-840000-ema-pruned.ckpt, that one gets accepted as a vae if it is in the models folder. At least on webui.
It seems it needed to be inside the Vae folder, I was used placing it in the models/Stable Diffusion folder. Thanks for your help, it worked.
Jamerrone changed discussion status to closed