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
|
@@ -13,8 +13,7 @@ from pipeline import StableDiffusionImage2MVCustomPipeline
|
|
| 13 |
|
| 14 |
|
| 15 |
pipe = StableDiffusionImage2MVCustomPipeline.from_pretrained(
|
| 16 |
-
"
|
| 17 |
-
# "Luffuly/unique3d-mv-variation-diffuser",
|
| 18 |
torch_dtype=torch.float16,
|
| 19 |
trust_remote_code=True,
|
| 20 |
class_labels=torch.tensor(range(4)),
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
pipe = StableDiffusionImage2MVCustomPipeline.from_pretrained(
|
| 16 |
+
"Luffuly/unique3d-mv-variation-diffuser",
|
|
|
|
| 17 |
torch_dtype=torch.float16,
|
| 18 |
trust_remote_code=True,
|
| 19 |
class_labels=torch.tensor(range(4)),
|