Text-to-3D
Diffusers
Safetensors
English
StableDiffusionLDM3DPipeline
stable-diffusion
stable-diffusion-diffusers
text-to-image
Eval Results (legacy)
Instructions to use Intel/ldm3d with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Intel/ldm3d 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", torch_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
|
@@ -18,6 +18,11 @@ LDM3D got accepted to [CVPRW'23]([https://aaai.org/Conferences/AAAI-23/](https:/
|
|
| 18 |
|
| 19 |
For better results, do not hesitate to use [our new checkpoint](https://huggingface.co/Intel/ldm3d-4c) based on a slighlty different architecture.
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
## Model description
|
| 22 |
|
| 23 |
The abstract from the paper is the following:
|
|
|
|
| 18 |
|
| 19 |
For better results, do not hesitate to use [our new checkpoint](https://huggingface.co/Intel/ldm3d-4c) based on a slighlty different architecture.
|
| 20 |
|
| 21 |
+
New checkpoints have been released:
|
| 22 |
+
- [ldm3d-4c](https://huggingface.co/Intel/ldm3d-4c). A new version of LDM3D with higher quality results
|
| 23 |
+
- [ldm3d-pano](https://huggingface.co/Intel/ldm3d-pano). LDM3D applied to panoramic images
|
| 24 |
+
- [ldm3d-sr](https://huggingface.co/Intel/ldm3d-sr). Upscaler for LDM3D
|
| 25 |
+
|
| 26 |
## Model description
|
| 27 |
|
| 28 |
The abstract from the paper is the following:
|