Text-to-3D
Diffusers
Safetensors
English
StableDiffusionLDM3DPipeline
stable-diffusion
stable-diffusion-diffusers
text-to-image
text-to-panoramic
Eval Results (legacy)
Instructions to use Intel/ldm3d-pano with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Intel/ldm3d-pano with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Intel/ldm3d-pano", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -71,3 +71,11 @@ In order to generate the depth map of those samples, we used [DPT-large](https:/
|
|
| 71 |
|
| 72 |
|
| 73 |
### BibTeX entry and citation info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
|
| 72 |
|
| 73 |
### BibTeX entry and citation info
|
| 74 |
+
@misc{stan2023ldm3dvr,
|
| 75 |
+
title={LDM3D-VR: Latent Diffusion Model for 3D VR},
|
| 76 |
+
author={Gabriela Ben Melech Stan and Diana Wofk and Estelle Aflalo and Shao-Yen Tseng and Zhipeng Cai and Michael Paulitsch and Vasudev Lal},
|
| 77 |
+
year={2023},
|
| 78 |
+
eprint={2311.03226},
|
| 79 |
+
archivePrefix={arXiv},
|
| 80 |
+
primaryClass={cs.CV}
|
| 81 |
+
}
|