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
)