Image-Text-to-Video
Diffusers
text-to-video
image-to-video
video-to-video
text-to-audio-video
multimodal
comfyui
Instructions to use Abiray/MiniMax-H3-Turbo-Lora-Pruned-ComfyUI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Abiray/MiniMax-H3-Turbo-Lora-Pruned-ComfyUI with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Abiray/MiniMax-H3-Turbo-Lora-Pruned-ComfyUI", 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
The LoRA naming is incorrect.
#4
by sunnyboxs - opened
The "500" and "850" versions from the original author are v1,
while the later "600" version is v4, as it represents the author's fourth training attempt.
minimax_h3_turbo_v4_step600.safetensors
Version v5 is also due for release soon.
Therefore, you should adjust your naming to avoid confusion later on.