Image-to-Image
Diffusers
Safetensors
English
diffusion
image-to-3d
3d-reconstruction
gaussian-splatting
pose-free
sparse-view
rgbd
Instructions to use mvp18/gscenes-checkpoints with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mvp18/gscenes-checkpoints with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("mvp18/gscenes-checkpoints", dtype=torch.bfloat16, device_map="cuda") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -29,7 +29,7 @@ These checkpoints are intended for research use and model reproducibility.
|
|
| 29 |
|
| 30 |
## Usage
|
| 31 |
|
| 32 |
-
For a guide on how to use this model, check out the [https://github.com/gaussian-scenes
|
| 33 |
|
| 34 |
## Citation
|
| 35 |
|
|
@@ -48,4 +48,4 @@ note={}
|
|
| 48 |
}
|
| 49 |
```
|
| 50 |
|
| 51 |
-
The HuggingFace paper page can be found [https://huggingface.co/papers/2411.15966
|
|
|
|
| 29 |
|
| 30 |
## Usage
|
| 31 |
|
| 32 |
+
For a guide on how to use this model, check out the [official repository](https://github.com/gaussian-scenes).
|
| 33 |
|
| 34 |
## Citation
|
| 35 |
|
|
|
|
| 48 |
}
|
| 49 |
```
|
| 50 |
|
| 51 |
+
The HuggingFace paper page can be found [here](https://huggingface.co/papers/2411.15966).
|