Instructions to use Luffuly/unique3d-mvimage-diffuser with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Luffuly/unique3d-mvimage-diffuser with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Luffuly/unique3d-mvimage-diffuser", 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
Browse files
README.md
CHANGED
|
@@ -23,7 +23,7 @@ seed = -1
|
|
| 23 |
generator = torch.Generator(device='cuda').manual_seed(-1)
|
| 24 |
|
| 25 |
|
| 26 |
-
image = Image.open('
|
| 27 |
forward_args = dict(
|
| 28 |
width=256,
|
| 29 |
height=256,
|
|
|
|
| 23 |
generator = torch.Generator(device='cuda').manual_seed(-1)
|
| 24 |
|
| 25 |
|
| 26 |
+
image = Image.open('image.png')
|
| 27 |
forward_args = dict(
|
| 28 |
width=256,
|
| 29 |
height=256,
|