Instructions to use hongk1998/merge-base-depth-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use hongk1998/merge-base-depth-v1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("hongk1998/merge-base-depth-v1", 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
Improve model card: Fix paper links, add abstract and sample usage
#1
by nielsr HF Staff - opened
This PR improves the model card by:
- Correcting the placeholder Arxiv paper link to the official one.
- Adding a direct link badge to the Hugging Face paper page.
- Including the paper abstract for better context.
- Adding a 'Sample Usage' section with inference code snippets from the official GitHub repository, making it easier for users to get started.
- Incorporating the BibTeX citation and Acknowledgements from the GitHub README for completeness.