Instructions to use TMElyralab/MuseV with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TMElyralab/MuseV with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TMElyralab/MuseV", 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
Issues using this with Diffusers
#1
by theAdoringFan - opened
I'm trying to download this model to run locally, but running into issues with diffusers. Just using it as it says above:
from diffusers import DiffusionPipeline
pipeline = DiffusionPipeline.from_pretrained("TMElyralab/MuseV")
Running into this error when I try to download the model:
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://huggingface.co/TMElyralab/MuseV/resolve/main/model_index.json
@theAdoringFan Hi,we don't support diffusers load way. You can follow instruction in https://github.com/TMElyralab/MuseV?tab=readme-ov-file#quickstart
anchorxia changed discussion status to closed