Instructions to use cebas/oneClick_Windows_ImageTo3D_install with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use cebas/oneClick_Windows_ImageTo3D_install with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("cebas/oneClick_Windows_ImageTo3D_install", 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
Edwin Braun commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -37,5 +37,6 @@ How to install:
|
|
| 37 |
|
| 38 |
<b>IMPORTANT:</b>
|
| 39 |
Be patient when you run the model the first time! Depending on your PC, it can take about 20 seconds to start up and show some initial messages. Additionally, there will be several WARNING messages shown; do not be alarmed as they are just warnings. As you would always do on Windows systems - ignore them :)
|
| 40 |
-
At the end of the process, you should get a ZIP file with a 3D Model OBJ and textures.
|
|
|
|
| 41 |
As mentioned above, read more about the model here: https://huggingface.co/Zhengyi/CRM
|
|
|
|
| 37 |
|
| 38 |
<b>IMPORTANT:</b>
|
| 39 |
Be patient when you run the model the first time! Depending on your PC, it can take about 20 seconds to start up and show some initial messages. Additionally, there will be several WARNING messages shown; do not be alarmed as they are just warnings. As you would always do on Windows systems - ignore them :)
|
| 40 |
+
At the end of the process, you should get a ZIP file with a 3D Model OBJ and textures. This file can be foudn in the OUT folder.
|
| 41 |
+
You can use Windows 3D Viewer to check it out. Use your own images and try it out locally!
|
| 42 |
As mentioned above, read more about the model here: https://huggingface.co/Zhengyi/CRM
|