Instructions to use CiaraRowles/TemporalNet with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CiaraRowles/TemporalNet with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("CiaraRowles/TemporalNet") pipe = StableDiffusionControlNetPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
Can I consider it as "deforum + controlnet"
#10
by bojohn - opened
I think it is same as "deforum + controlnet"
to a limited extent, I think.
@CiaraRowles ,Hi,I have read your code carefully. I think it is exactly to say that it is same as the hed controlnet but the input? The input of hed controlnet is hed map, and the input of TemporalNet is last generated img? looking forward your reply.