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
Ciara commited on
Commit ·
7a5565f
1
Parent(s): 030796b
Upload temporalvideo.py
Browse files- temporalvideo.py +1 -1
temporalvideo.py
CHANGED
|
@@ -9,7 +9,7 @@ from io import BytesIO
|
|
| 9 |
|
| 10 |
# Replace with the actual path to your image file and folder
|
| 11 |
x_path = "./init.png"
|
| 12 |
-
y_folder = "./
|
| 13 |
|
| 14 |
output_folder = "output"
|
| 15 |
os.makedirs(output_folder, exist_ok=True)
|
|
|
|
| 9 |
|
| 10 |
# Replace with the actual path to your image file and folder
|
| 11 |
x_path = "./init.png"
|
| 12 |
+
y_folder = "./Input_Images"
|
| 13 |
|
| 14 |
output_folder = "output"
|
| 15 |
os.makedirs(output_folder, exist_ok=True)
|