Instructions to use TencentARC/InstantMesh with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TencentARC/InstantMesh with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TencentARC/InstantMesh", 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
Can't use the model
#15
by gainikkk - opened
Hi!
I am trying to load the model using:
from diffusers import DiffusionPipeline
pipeline = DiffusionPipeline.from_pretrained("TencentARC/InstantMesh")
I upgraded my transformers and diffusion packages, but I get: huggingface_hub.utils._errors.EntryNotFoundError: 404 Client Error. (Request ID: Root=1-66b2f79e-18e0abfb322b519d3ae935e5;b85bb7a8-2155-4158-91e6-983ff7db31fc)
any updates?