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
Process using diffusers
Hello, @CiaraRowles ! Thanks for posting this model. I tried using it through api using your script and got great results. Now I can't figure out how to use it in the diffusers. Could you give a code example on how to use it with diffusers? It would be great)
Hi, also wondering if we can use this as a regular ControlNet model in a ControlNet pipe?
Actually we can use it like any other ControlNet model with ControlNetModel.from_pretrained("CiaraRowles/TemporalNet", torch_dtype=torch.float16)
Actually we can use it like any other ControlNet model with
ControlNetModel.from_pretrained("CiaraRowles/TemporalNet", torch_dtype=torch.float16)

Yes, thank you. But actually I have an issue using temporalnet in this process @CiaraRowles described