Instructions to use GeorgeQi/SDXL-Shadow_Generation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use GeorgeQi/SDXL-Shadow_Generation with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("GeorgeQi/SDXL-Shadow_Generation") pipe = StableDiffusionControlNetPipeline.from_pretrained( "stabilityai/stable-diffusion-xl-base-1.0", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
upload test images
Browse files- .gitattributes +3 -0
- test_images/bottle.png +3 -0
- test_images/chair.png +3 -0
- test_images/shoe.png +3 -0
.gitattributes
CHANGED
|
@@ -42,3 +42,6 @@ pictures/pic6.png filter=lfs diff=lfs merge=lfs -text
|
|
| 42 |
pictures/pic7.png filter=lfs diff=lfs merge=lfs -text
|
| 43 |
pictures/pic8.png filter=lfs diff=lfs merge=lfs -text
|
| 44 |
pictures/pic9.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
pictures/pic7.png filter=lfs diff=lfs merge=lfs -text
|
| 43 |
pictures/pic8.png filter=lfs diff=lfs merge=lfs -text
|
| 44 |
pictures/pic9.png filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
test_images/bottle.png filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
test_images/chair.png filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
test_images/shoe.png filter=lfs diff=lfs merge=lfs -text
|
test_images/bottle.png
ADDED
|
Git LFS Details
|
test_images/chair.png
ADDED
|
Git LFS Details
|
test_images/shoe.png
ADDED
|
Git LFS Details
|