Instructions to use qian43/Sat3DGen with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use qian43/Sat3DGen with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("qian43/Sat3DGen", 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 and add metadata
#1
by nielsr HF Staff - opened
This PR improves the model card for Sat3DGen by adding relevant metadata and documentation.
- Added
pipeline_tag: image-to-3dto the YAML metadata. - Included links to the paper, GitHub repository, and project page.
- Added a sample usage code snippet from the official repository.
- Included the BibTeX citation for the paper.
qian43 changed pull request status to merged
Thanks!