Instructions to use ashawkey/mvdream-sd2.1-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ashawkey/mvdream-sd2.1-diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ashawkey/mvdream-sd2.1-diffusers", 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
|
@@ -1,3 +1,22 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: openrail
|
| 3 |
---
|
| 4 |
+
# MVDream-diffusers Model Card
|
| 5 |
+
This is a port of https://huggingface.co/MVDream/MVDream into diffusers.
|
| 6 |
+
|
| 7 |
+
For usage, please check: https://github.com/ashawkey/mvdream_diffusers
|
| 8 |
+
|
| 9 |
+
## Citation
|
| 10 |
+
```
|
| 11 |
+
@article{shi2023MVDream,
|
| 12 |
+
author = {Shi, Yichun and Wang, Peng and Ye, Jianglong and Mai, Long and Li, Kejie and Yang, Xiao},
|
| 13 |
+
title = {MVDream: Multi-view Diffusion for 3D Generation},
|
| 14 |
+
journal = {arXiv:2308.16512},
|
| 15 |
+
year = {2023},
|
| 16 |
+
}
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Misuse, Malicious Use, and Out-of-Scope Use
|
| 20 |
+
|
| 21 |
+
The model should not be used to intentionally create or disseminate images that create hostile or alienating environments for people. This includes generating images that people would foreseeably find disturbing, distressing, or offensive; or content that propagates historical or current stereotypes.
|
| 22 |
+
|