Instructions to use gomirageai/Alice-T2V-14B-MoE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use gomirageai/Alice-T2V-14B-MoE with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("gomirageai/Alice-T2V-14B-MoE", 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
Made Comfyui nodes / wrapper
#2
by EricRollei - opened
Hi MirageAI,
Thank you for sharing Alice!
I was curious and so I made some very basic comfyui nodes to load and run it. Initial tests show your model to be very nice!
Do you have any prompting directions or other information on getting best output?
My nodes are here with instructions on how to set up and run: https://github.com/EricRollei/Eric-Alice-T2V-ComfyUI-Wrapper
Regards,
Eric