Instructions to use onethousand/AnimPortrait3D_controlnet with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use onethousand/AnimPortrait3D_controlnet with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("onethousand/AnimPortrait3D_controlnet") pipe = StableDiffusionControlNetPipeline.from_pretrained( "SG161222/Realistic_Vision_V5.1_noVAE", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -78,7 +78,9 @@ Image.fromarray(image).save("test.png")
|
|
| 78 |
|
| 79 |
|
| 80 |
|
| 81 |
-
# =================================================
|
|
|
|
|
|
|
| 82 |
|
| 83 |
|
| 84 |
# Controlnet - v1.1 - *openpose Version*
|
|
|
|
| 78 |
|
| 79 |
|
| 80 |
|
| 81 |
+
# =================================================
|
| 82 |
+
# Original Readme of ControlNet
|
| 83 |
+
# =================================================
|
| 84 |
|
| 85 |
|
| 86 |
# Controlnet - v1.1 - *openpose Version*
|