Created
February 22, 2023 07:38
-
-
Save wey-gu/54db65ac5551b473de2feb34c0985110 to your computer and use it in GitHub Desktop.
controlNet_video.ipynb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nbformat": 4, | |
"nbformat_minor": 0, | |
"metadata": { | |
"colab": { | |
"provenance": [], | |
"authorship_tag": "ABX9TyPD1cPUZcJSjHrhZTfCzwU6", | |
"include_colab_link": true | |
}, | |
"kernelspec": { | |
"name": "python3", | |
"display_name": "Python 3" | |
}, | |
"language_info": { | |
"name": "python" | |
}, | |
"accelerator": "GPU", | |
"gpuClass": "standard" | |
}, | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "view-in-github", | |
"colab_type": "text" | |
}, | |
"source": [ | |
"<a href=\"https://colab.research.google.com/gist/wey-gu/54db65ac5551b473de2feb34c0985110/controlnet_video.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "GGMoeTMr-e0u", | |
"outputId": "dc0ee189-1652-43d9-f97e-46f1860d1484" | |
}, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"Mon Feb 20 05:07:55 2023 \n", | |
"+-----------------------------------------------------------------------------+\n", | |
"| NVIDIA-SMI 510.47.03 Driver Version: 510.47.03 CUDA Version: 11.6 |\n", | |
"|-------------------------------+----------------------+----------------------+\n", | |
"| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |\n", | |
"| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |\n", | |
"| | | MIG M. |\n", | |
"|===============================+======================+======================|\n", | |
"| 0 Tesla T4 Off | 00000000:00:04.0 Off | 0 |\n", | |
"| N/A 57C P0 27W / 70W | 0MiB / 15360MiB | 0% Default |\n", | |
"| | | N/A |\n", | |
"+-------------------------------+----------------------+----------------------+\n", | |
" \n", | |
"+-----------------------------------------------------------------------------+\n", | |
"| Processes: |\n", | |
"| GPU GI CI PID Type Process name GPU Memory |\n", | |
"| ID ID Usage |\n", | |
"|=============================================================================|\n", | |
"| No running processes found |\n", | |
"+-----------------------------------------------------------------------------+\n" | |
] | |
} | |
], | |
"source": [ | |
"!nvidia-smi" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"import torch\n", | |
"print(str(torch.cuda.is_available()))" | |
], | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "sArSIIL4-3QT", | |
"outputId": "05d7df6b-479b-48d3-9263-8760fb9e1a3b" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"True\n" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!git clone https://huggingface.co/spaces/fffiloni/ControlNet-Video" | |
], | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "s7ecER4g_dZX", | |
"outputId": "643be18c-1c98-4bae-88b1-919b52412080" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"Cloning into 'ControlNet-Video'...\n", | |
"remote: Enumerating objects: 116, done.\u001b[K\n", | |
"remote: Counting objects: 100% (92/92), done.\u001b[K\n", | |
"remote: Compressing objects: 100% (92/92), done.\u001b[K\n", | |
"remote: Total 116 (delta 50), reused 0 (delta 0), pack-reused 24\u001b[K\n", | |
"Receiving objects: 100% (116/116), 34.03 KiB | 11.34 MiB/s, done.\n", | |
"Resolving deltas: 100% (58/58), done.\n" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"%cd ControlNet-Video" | |
], | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "QeTipMnJ_guE", | |
"outputId": "4112c61c-313a-4f41-bff8-14a878f54797" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"/content/ControlNet-Video\n" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!pip install -r requirements.txt -q" | |
], | |
"metadata": { | |
"id": "qaCNmB2s_jBc" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!pip install gradio -q" | |
], | |
"metadata": { | |
"id": "iq81JX9mAe0x" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!tail -n 1 app.py" | |
], | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "euFggVObBA2R", | |
"outputId": "18310138-f9ec-4049-9968-03be130489df" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"demo.launch(share=True).queue(max_size=12)" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Run it" | |
], | |
"metadata": { | |
"id": "Kp5LpM5P_-Qh" | |
} | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!pip install imageio==2.4.1 -q" | |
], | |
"metadata": { | |
"id": "MQ6LQMRNBIr9" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!git submodule update --init --recursive" | |
], | |
"metadata": { | |
"id": "yNRO2Xt1BOHd" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!python app.py" | |
], | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "v4VpNrsOA9Ws", | |
"outputId": "c79c5890-3848-467a-cb1a-b7e569ae2075" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"2023-02-20 05:11:27.204668: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer.so.7'; dlerror: libnvinfer.so.7: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/lib/python3.8/dist-packages/cv2/../../lib64:/usr/local/lib/python3.8/dist-packages/cv2/../../lib64:/usr/lib64-nvidia\n", | |
"2023-02-20 05:11:27.204801: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer_plugin.so.7'; dlerror: libnvinfer_plugin.so.7: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/lib/python3.8/dist-packages/cv2/../../lib64:/usr/local/lib/python3.8/dist-packages/cv2/../../lib64:/usr/lib64-nvidia\n", | |
"2023-02-20 05:11:27.204825: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly.\n", | |
"cuda\n", | |
"cuda\n", | |
"Use Checkpoint: False\n", | |
"Checkpoint Number: [0, 0, 0, 0]\n", | |
"Use global window for all blocks in stage3\n", | |
"load checkpoint from local path: annotator/ckpts/upernet_global_small.pth\n", | |
"WARNING:xformers:A matching Triton is not available, some optimizations will not be enabled.\n", | |
"Error caught was: No module named 'triton'\n", | |
"logging improved.\n", | |
"WARNING:py.warnings:/usr/local/lib/python3.8/dist-packages/pytorch_lightning/utilities/distributed.py:258: LightningDeprecationWarning: `pytorch_lightning.utilities.distributed.rank_zero_only` has been deprecated in v1.8.1 and will be removed in v2.0.0. You can import it from `pytorch_lightning.utilities` instead.\n", | |
" rank_zero_deprecation(\n", | |
"\n", | |
"ControlLDM: Running in eps-prediction mode\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"DiffusionWrapper has 859.52 M params.\n", | |
"making attention of type 'vanilla-xformers' with 512 in_channels\n", | |
"building MemoryEfficientAttnBlock with 512 in_channels...\n", | |
"Working with z of shape (1, 4, 32, 32) = 4096 dimensions.\n", | |
"making attention of type 'vanilla-xformers' with 512 in_channels\n", | |
"building MemoryEfficientAttnBlock with 512 in_channels...\n", | |
"Downloading (…)olve/main/vocab.json: 100% 961k/961k [00:00<00:00, 2.08MB/s]\n", | |
"Downloading (…)olve/main/merges.txt: 100% 525k/525k [00:00<00:00, 3.76MB/s]\n", | |
"Downloading (…)cial_tokens_map.json: 100% 389/389 [00:00<00:00, 144kB/s]\n", | |
"Downloading (…)okenizer_config.json: 100% 905/905 [00:00<00:00, 338kB/s]\n", | |
"Downloading (…)lve/main/config.json: 100% 4.52k/4.52k [00:00<00:00, 587kB/s]\n", | |
"Downloading (…)\"pytorch_model.bin\";: 100% 1.71G/1.71G [00:12<00:00, 139MB/s]\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 320, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 640, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is None and using 8 heads.\n", | |
"Setting up MemoryEfficientCrossAttention. Query dim is 1280, context_dim is 768 and using 8 heads.\n", | |
"Loaded model config from [ControlNet/models/cldm_v15.yaml]\n", | |
"--2023-02-20 05:12:37-- https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 3.231.67.228, 54.235.118.239, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|3.231.67.228|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/6b/20/6b201da5f0f5c60524535ebb7deac2eef68605655d3bbacfee9cce0087f3b3f5/6ce0161689b3853acaa03779ec93eafe75a02f4ced659bee03f50797806fa2fa?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27v1-5-pruned-emaonly.safetensors%3B+filename%3D%22v1-5-pruned-emaonly.safetensors%22%3B&Expires=1677128261&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zLzZiLzIwLzZiMjAxZGE1ZjBmNWM2MDUyNDUzNWViYjdkZWFjMmVlZjY4NjA1NjU1ZDNiYmFjZmVlOWNjZTAwODdmM2IzZjUvNmNlMDE2MTY4OWIzODUzYWNhYTAzNzc5ZWM5M2VhZmU3NWEwMmY0Y2VkNjU5YmVlMDNmNTA3OTc4MDZmYTJmYT9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgyNjF9fX1dfQ__&Signature=jrwXivI3cSZfX%7EZH%7EgBc0actgx2byefLCJ0WtjqQwGvPb%7EByGzTt4g7E-KS90rRj8KCGyhRg%7EJuzdAA10toHoDS9fiZZoclsdmtVJxl8iifxVOYTPPQuCRFKnc4MYR0CmM03YKkdlitcIUxT4HIkmTONMckSyOdWO7xOe5uqqHouhI0lqNpPA1VTwUHVE5UZg9ciBjRMsA40ENEyrR%7E-809M0USLd54vQTr9YM95TVEZqEXV%7Ez0YAx9R6bQCmCj-vr9Lr6vEOGPmZFX%7EMa8x1VzendAy6mRyzRh%7EGwygQBqAO3C2UsQU0K3iZI9pMMzFktb45XoN62tinaRKlC18DA__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:12:37-- https://cdn-lfs.huggingface.co/repos/6b/20/6b201da5f0f5c60524535ebb7deac2eef68605655d3bbacfee9cce0087f3b3f5/6ce0161689b3853acaa03779ec93eafe75a02f4ced659bee03f50797806fa2fa?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27v1-5-pruned-emaonly.safetensors%3B+filename%3D%22v1-5-pruned-emaonly.safetensors%22%3B&Expires=1677128261&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zLzZiLzIwLzZiMjAxZGE1ZjBmNWM2MDUyNDUzNWViYjdkZWFjMmVlZjY4NjA1NjU1ZDNiYmFjZmVlOWNjZTAwODdmM2IzZjUvNmNlMDE2MTY4OWIzODUzYWNhYTAzNzc5ZWM5M2VhZmU3NWEwMmY0Y2VkNjU5YmVlMDNmNTA3OTc4MDZmYTJmYT9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgyNjF9fX1dfQ__&Signature=jrwXivI3cSZfX%7EZH%7EgBc0actgx2byefLCJ0WtjqQwGvPb%7EByGzTt4g7E-KS90rRj8KCGyhRg%7EJuzdAA10toHoDS9fiZZoclsdmtVJxl8iifxVOYTPPQuCRFKnc4MYR0CmM03YKkdlitcIUxT4HIkmTONMckSyOdWO7xOe5uqqHouhI0lqNpPA1VTwUHVE5UZg9ciBjRMsA40ENEyrR%7E-809M0USLd54vQTr9YM95TVEZqEXV%7Ez0YAx9R6bQCmCj-vr9Lr6vEOGPmZFX%7EMa8x1VzendAy6mRyzRh%7EGwygQBqAO3C2UsQU0K3iZI9pMMzFktb45XoN62tinaRKlC18DA__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.23, 13.249.85.11, 13.249.85.12, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.23|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 4265146304 (4.0G) [binary/octet-stream]\n", | |
"Saving to: ‘models/v1-5-pruned-emaonly.safetensors’\n", | |
"\n", | |
"models/v1-5-pruned- 100%[===================>] 3.97G 70.0MB/s in 59s \n", | |
"\n", | |
"2023-02-20 05:13:36 (68.9 MB/s) - ‘models/v1-5-pruned-emaonly.safetensors’ saved [4265146304/4265146304]\n", | |
"\n", | |
"Loaded state_dict from [models/v1-5-pruned-emaonly.safetensors]\n", | |
"--2023-02-20 05:13:57-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_canny-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/f2549278df9a7b3d7a6058f6cedb0ccf2ff09118054a0f7e6940bd6bcfa98557?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_canny-fp16.safetensors%3B+filename%3D%22control_canny-fp16.safetensors%22%3B&Expires=1677128270&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZjI1NDkyNzhkZjlhN2IzZDdhNjA1OGY2Y2VkYjBjY2YyZmYwOTExODA1NGEwZjdlNjk0MGJkNmJjZmE5ODU1Nz9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgyNzB9fX1dfQ__&Signature=HO%7EeL8xuTiw16MLrBT0yDxzvjco9jrqnk72YhUa5PfIRR8Ue3IMh0%7EAT-J%7EU%7EU4Cuz5JYQzJfsmhsxZeNfNZcL3jnzSCwN%7Ejhj8UFutFFQ4FHa5GbjrWLplzFlgnZXYYyqTuJuUcxSK-ix29v2mhrqc2ccfJChs4fy7FnqWHeyvN9Vg-cE2LztJb4yWGWmNZ9YOS9V8w9UftU%7ENMPSFeUriKmH%7EHD8zErMbyqGG7SnHbvFmcAGcq%7EP86wD-WQXZaU3PQuTUrgubfG4OrGwzw9M0sBRvNpsTjxL1MGltcYpmhgx16AwM7-h1WN2RCcP4IFw7rlXPJdksfJagwIt2O1g__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:13:57-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/f2549278df9a7b3d7a6058f6cedb0ccf2ff09118054a0f7e6940bd6bcfa98557?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_canny-fp16.safetensors%3B+filename%3D%22control_canny-fp16.safetensors%22%3B&Expires=1677128270&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZjI1NDkyNzhkZjlhN2IzZDdhNjA1OGY2Y2VkYjBjY2YyZmYwOTExODA1NGEwZjdlNjk0MGJkNmJjZmE5ODU1Nz9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgyNzB9fX1dfQ__&Signature=HO%7EeL8xuTiw16MLrBT0yDxzvjco9jrqnk72YhUa5PfIRR8Ue3IMh0%7EAT-J%7EU%7EU4Cuz5JYQzJfsmhsxZeNfNZcL3jnzSCwN%7Ejhj8UFutFFQ4FHa5GbjrWLplzFlgnZXYYyqTuJuUcxSK-ix29v2mhrqc2ccfJChs4fy7FnqWHeyvN9Vg-cE2LztJb4yWGWmNZ9YOS9V8w9UftU%7ENMPSFeUriKmH%7EHD8zErMbyqGG7SnHbvFmcAGcq%7EP86wD-WQXZaU3PQuTUrgubfG4OrGwzw9M0sBRvNpsTjxL1MGltcYpmhgx16AwM7-h1WN2RCcP4IFw7rlXPJdksfJagwIt2O1g__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.11, 13.249.85.12, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_canny-fp16.safetensors’\n", | |
"\n", | |
"models/control_cann 100%[===================>] 689.12M 224MB/s in 3.6s \n", | |
"\n", | |
"2023-02-20 05:14:01 (190 MB/s) - ‘models/control_canny-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:01-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_mlsd-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/d8513fa9c65046467ed1a575f5593ac3e05f4cdffc8f07bf5f3c075afe0ea3d9?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_mlsd-fp16.safetensors%3B+filename%3D%22control_mlsd-fp16.safetensors%22%3B&Expires=1677128114&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZDg1MTNmYTljNjUwNDY0NjdlZDFhNTc1ZjU1OTNhYzNlMDVmNGNkZmZjOGYwN2JmNWYzYzA3NWFmZTBlYTNkOT9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgxMTR9fX1dfQ__&Signature=mWQLAc219a9D8UPy90sE-ZO4xUf6t03oJ4re%7EYH45O5KooJQeXOaiQM1P1SXJHmIkPDvKi4VL5rwSq%7EvHaWfGzWQTN0tjcv0B4WDIfgA6%7EQMk89FD3Pg6rgPAD3jarAl1n8XTUlfkY1-wnQyW9bjvMU94uDWOIy49P16YsL4t023EhkKBWd1qngD38so2ausnhurGGNVOrpdsp7CKTKYj%7E3uM%7En-fRawxuX%7EKeiMvtSPTiafaSt7ACaaw1SBXYdSim7IpVTiyHL1GN5OSn6QfO%7ErRFI7zG77RZPOpAqD%7Ea1iIq0oVlDRvefni9K48QBbmxuMwBpLwNd-OAAnfEbT3w__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:01-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/d8513fa9c65046467ed1a575f5593ac3e05f4cdffc8f07bf5f3c075afe0ea3d9?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_mlsd-fp16.safetensors%3B+filename%3D%22control_mlsd-fp16.safetensors%22%3B&Expires=1677128114&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZDg1MTNmYTljNjUwNDY0NjdlZDFhNTc1ZjU1OTNhYzNlMDVmNGNkZmZjOGYwN2JmNWYzYzA3NWFmZTBlYTNkOT9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgxMTR9fX1dfQ__&Signature=mWQLAc219a9D8UPy90sE-ZO4xUf6t03oJ4re%7EYH45O5KooJQeXOaiQM1P1SXJHmIkPDvKi4VL5rwSq%7EvHaWfGzWQTN0tjcv0B4WDIfgA6%7EQMk89FD3Pg6rgPAD3jarAl1n8XTUlfkY1-wnQyW9bjvMU94uDWOIy49P16YsL4t023EhkKBWd1qngD38so2ausnhurGGNVOrpdsp7CKTKYj%7E3uM%7En-fRawxuX%7EKeiMvtSPTiafaSt7ACaaw1SBXYdSim7IpVTiyHL1GN5OSn6QfO%7ErRFI7zG77RZPOpAqD%7Ea1iIq0oVlDRvefni9K48QBbmxuMwBpLwNd-OAAnfEbT3w__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_mlsd-fp16.safetensors’\n", | |
"\n", | |
"models/control_mlsd 100%[===================>] 689.12M 203MB/s in 3.4s \n", | |
"\n", | |
"2023-02-20 05:14:04 (203 MB/s) - ‘models/control_mlsd-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:05-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_hed-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/f19bdd6e721adfd3b5474121a62716193581cdf45b8c0b8b48a0cc1d167e1a42?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_hed-fp16.safetensors%3B+filename%3D%22control_hed-fp16.safetensors%22%3B&Expires=1677128785&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZjE5YmRkNmU3MjFhZGZkM2I1NDc0MTIxYTYyNzE2MTkzNTgxY2RmNDViOGMwYjhiNDhhMGNjMWQxNjdlMWE0Mj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjg3ODV9fX1dfQ__&Signature=wq8qVEPZaTf8pYPh1DA4Gb5zzJdqvA3u%7ExrqTYoZZiNR3BTtI7faam6jlsU3zlhOYJiXz4dS5FUreURMiYK%7EYDotp9Jqy26-IiinNnLV2LMnh4HZI57BopVqVWIH9cHbcV5og%7EcK4WZ8swEfFyxQIkp-zEoVOIpUh3cRVZfy4ZQYjw6H2EaQp-l7H430TELhIFdib4a3VBiGhpkd3psOBPjBEgo8b8z7yxQp8XwgiaunB4v8SdIQHZVXXLg4cVYapMyv25cYfQtjyFQbqQW9LYJwfU2EescNFwadf1l-1CiJbYBeKHHVOfnH2FpOUwZZo6D8Ct3GtlnM1F4jseWb0A__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:05-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/f19bdd6e721adfd3b5474121a62716193581cdf45b8c0b8b48a0cc1d167e1a42?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_hed-fp16.safetensors%3B+filename%3D%22control_hed-fp16.safetensors%22%3B&Expires=1677128785&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZjE5YmRkNmU3MjFhZGZkM2I1NDc0MTIxYTYyNzE2MTkzNTgxY2RmNDViOGMwYjhiNDhhMGNjMWQxNjdlMWE0Mj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjg3ODV9fX1dfQ__&Signature=wq8qVEPZaTf8pYPh1DA4Gb5zzJdqvA3u%7ExrqTYoZZiNR3BTtI7faam6jlsU3zlhOYJiXz4dS5FUreURMiYK%7EYDotp9Jqy26-IiinNnLV2LMnh4HZI57BopVqVWIH9cHbcV5og%7EcK4WZ8swEfFyxQIkp-zEoVOIpUh3cRVZfy4ZQYjw6H2EaQp-l7H430TELhIFdib4a3VBiGhpkd3psOBPjBEgo8b8z7yxQp8XwgiaunB4v8SdIQHZVXXLg4cVYapMyv25cYfQtjyFQbqQW9LYJwfU2EescNFwadf1l-1CiJbYBeKHHVOfnH2FpOUwZZo6D8Ct3GtlnM1F4jseWb0A__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_hed-fp16.safetensors’\n", | |
"\n", | |
"models/control_hed- 100%[===================>] 689.12M 198MB/s in 3.6s \n", | |
"\n", | |
"2023-02-20 05:14:08 (193 MB/s) - ‘models/control_hed-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:08-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_scribble-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/b186c052c65a3281f5d0d2636f7d9ba4640b7697dc99ffa09cd9928236df13b6?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_scribble-fp16.safetensors%3B+filename%3D%22control_scribble-fp16.safetensors%22%3B&Expires=1677128381&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvYjE4NmMwNTJjNjVhMzI4MWY1ZDBkMjYzNmY3ZDliYTQ2NDBiNzY5N2RjOTlmZmEwOWNkOTkyODIzNmRmMTNiNj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgzODF9fX1dfQ__&Signature=o%7EjL-sOmdb8%7EKPbN4ZiSjbgsX5JY8newG963dvdraXSa5Bh8FlYp8p9MnN4CiuKg2UTDJ0KO3RfQHfjI5SOp%7E6q0s2dge%7ER5qKlfnRv-NK8SBokmbJe%7E0j7GuN1RcfBf8ooZyGF-fxyKv8yI-L6SzPXh66fJwh07Q8iO4ERS2A5stT4C3VM-V9-GfFa7hcEV2lMpXTBHB2jaAB1HKq%7ETGrKw6N6XOWyCR%7EXG4isEtCwxlL46jJEtbxaU0cjwvnFKTt-DkAzrqepJnqvlHDYKGbNA4PSDk50u6ZWj3X6wa-d7U7HDbbD7TGPy5QXykbdc1UObHpy9fkvkSMhLrfscJA__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:09-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/b186c052c65a3281f5d0d2636f7d9ba4640b7697dc99ffa09cd9928236df13b6?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_scribble-fp16.safetensors%3B+filename%3D%22control_scribble-fp16.safetensors%22%3B&Expires=1677128381&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvYjE4NmMwNTJjNjVhMzI4MWY1ZDBkMjYzNmY3ZDliYTQ2NDBiNzY5N2RjOTlmZmEwOWNkOTkyODIzNmRmMTNiNj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgzODF9fX1dfQ__&Signature=o%7EjL-sOmdb8%7EKPbN4ZiSjbgsX5JY8newG963dvdraXSa5Bh8FlYp8p9MnN4CiuKg2UTDJ0KO3RfQHfjI5SOp%7E6q0s2dge%7ER5qKlfnRv-NK8SBokmbJe%7E0j7GuN1RcfBf8ooZyGF-fxyKv8yI-L6SzPXh66fJwh07Q8iO4ERS2A5stT4C3VM-V9-GfFa7hcEV2lMpXTBHB2jaAB1HKq%7ETGrKw6N6XOWyCR%7EXG4isEtCwxlL46jJEtbxaU0cjwvnFKTt-DkAzrqepJnqvlHDYKGbNA4PSDk50u6ZWj3X6wa-d7U7HDbbD7TGPy5QXykbdc1UObHpy9fkvkSMhLrfscJA__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_scribble-fp16.safetensors’\n", | |
"\n", | |
"models/control_scri 100%[===================>] 689.12M 203MB/s in 3.5s \n", | |
"\n", | |
"2023-02-20 05:14:12 (197 MB/s) - ‘models/control_scribble-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:12-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_openpose-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/337a30c5636697704370bd2413b43cebf1937abcdccc96f3525018ad5c220702?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_openpose-fp16.safetensors%3B+filename%3D%22control_openpose-fp16.safetensors%22%3B&Expires=1677128307&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvMzM3YTMwYzU2MzY2OTc3MDQzNzBiZDI0MTNiNDNjZWJmMTkzN2FiY2RjY2M5NmYzNTI1MDE4YWQ1YzIyMDcwMj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgzMDd9fX1dfQ__&Signature=YzQ406T%7EBx8GRjXwsP1LTwfdkObnP-0ocxIUgDMMUKc3d8sGZmreCBVL56vXsy8gboEwaYMxuPOgf78b6tiTXbWZyE9lYhqdCzkElGZ-brk9V-EvzFf0ABhOMUpS-gZaxoKSUzDOOClGnacWYHT3JvlGjA17Fv30FAsiDGY7efTf1ZS4VYQYg5QE1BsFHd5qArMZ7wQdFfSLVH0boqZD5lvvtA6mNUmoiKVBvxwhPiXJUoDgCqHu8fCad10xC6L6y%7Eqg%7EiLYV6QdkCWvR-RAfUF7Jqo4pu6jg8t3CVftTf8QsKKyfcfjhaE2LWogTn6ltzotjJKh2lxn7x7tnGdjEQ__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:12-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/337a30c5636697704370bd2413b43cebf1937abcdccc96f3525018ad5c220702?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_openpose-fp16.safetensors%3B+filename%3D%22control_openpose-fp16.safetensors%22%3B&Expires=1677128307&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvMzM3YTMwYzU2MzY2OTc3MDQzNzBiZDI0MTNiNDNjZWJmMTkzN2FiY2RjY2M5NmYzNTI1MDE4YWQ1YzIyMDcwMj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgzMDd9fX1dfQ__&Signature=YzQ406T%7EBx8GRjXwsP1LTwfdkObnP-0ocxIUgDMMUKc3d8sGZmreCBVL56vXsy8gboEwaYMxuPOgf78b6tiTXbWZyE9lYhqdCzkElGZ-brk9V-EvzFf0ABhOMUpS-gZaxoKSUzDOOClGnacWYHT3JvlGjA17Fv30FAsiDGY7efTf1ZS4VYQYg5QE1BsFHd5qArMZ7wQdFfSLVH0boqZD5lvvtA6mNUmoiKVBvxwhPiXJUoDgCqHu8fCad10xC6L6y%7Eqg%7EiLYV6QdkCWvR-RAfUF7Jqo4pu6jg8t3CVftTf8QsKKyfcfjhaE2LWogTn6ltzotjJKh2lxn7x7tnGdjEQ__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_openpose-fp16.safetensors’\n", | |
"\n", | |
"models/control_open 100%[===================>] 689.12M 219MB/s in 3.2s \n", | |
"\n", | |
"2023-02-20 05:14:16 (213 MB/s) - ‘models/control_openpose-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:16-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_seg-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/a8c735dccfafcacfc9a0d6c99783895ef8b70244b85170c4ac70f34077189f2e?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_seg-fp16.safetensors%3B+filename%3D%22control_seg-fp16.safetensors%22%3B&Expires=1677126656&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvYThjNzM1ZGNjZmFmY2FjZmM5YTBkNmM5OTc4Mzg5NWVmOGI3MDI0NGI4NTE3MGM0YWM3MGYzNDA3NzE4OWYyZT9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjY2NTZ9fX1dfQ__&Signature=cCRMzxRU1T6IPNVspJOeQkmzEXgMysMLZnWGcN9lkhtalsz2uv%7EI7ZpobzUDrzZWy9aUVq49lQvlxdMzt6qWpEtZCxPM1vV7F6G6UmTxYVYoDFor8Co81cmMySCqTj2oVRWQlOCQNgZtWlyZF7USP1Sz-b2-6LqaxONUe7zslSwhbuvAiKWO5o8K4zV74ewGo7HxRvBLxPRZpLfL2hXgNQDrUQS5T2e97U08fBHY1jLVjofNr2mf1YUqb9D5qkrx20KxwXzqWCnS7cWPebm0uo4RuXkIse7nWFFLgpJoqhF8fly2MVXIjzY47dVRkr1kKmRtWiqaoaCfA7S%7EhUCTlA__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:16-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/a8c735dccfafcacfc9a0d6c99783895ef8b70244b85170c4ac70f34077189f2e?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_seg-fp16.safetensors%3B+filename%3D%22control_seg-fp16.safetensors%22%3B&Expires=1677126656&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvYThjNzM1ZGNjZmFmY2FjZmM5YTBkNmM5OTc4Mzg5NWVmOGI3MDI0NGI4NTE3MGM0YWM3MGYzNDA3NzE4OWYyZT9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjY2NTZ9fX1dfQ__&Signature=cCRMzxRU1T6IPNVspJOeQkmzEXgMysMLZnWGcN9lkhtalsz2uv%7EI7ZpobzUDrzZWy9aUVq49lQvlxdMzt6qWpEtZCxPM1vV7F6G6UmTxYVYoDFor8Co81cmMySCqTj2oVRWQlOCQNgZtWlyZF7USP1Sz-b2-6LqaxONUe7zslSwhbuvAiKWO5o8K4zV74ewGo7HxRvBLxPRZpLfL2hXgNQDrUQS5T2e97U08fBHY1jLVjofNr2mf1YUqb9D5qkrx20KxwXzqWCnS7cWPebm0uo4RuXkIse7nWFFLgpJoqhF8fly2MVXIjzY47dVRkr1kKmRtWiqaoaCfA7S%7EhUCTlA__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_seg-fp16.safetensors’\n", | |
"\n", | |
"models/control_seg- 100%[===================>] 689.12M 220MB/s in 3.2s \n", | |
"\n", | |
"2023-02-20 05:14:19 (217 MB/s) - ‘models/control_seg-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:19-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_depth-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/f0a50531fa706fec36899d8499f228dcc917583b2de87e2f44f3374684b5c9c3?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_depth-fp16.safetensors%3B+filename%3D%22control_depth-fp16.safetensors%22%3B&Expires=1677128293&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZjBhNTA1MzFmYTcwNmZlYzM2ODk5ZDg0OTlmMjI4ZGNjOTE3NTgzYjJkZTg3ZTJmNDRmMzM3NDY4NGI1YzljMz9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgyOTN9fX1dfQ__&Signature=aRrVbELx8ePPXluKaoMo82Y2DH-W4tYagVcTUKr6Ewp3EOWi9Nh6fu8Kya9SsACLYENJEegY%7EK7Opy4IQoZsR5HwpajAQPlIyVlqZqT66HTJHyv1dlxrpYqYGMuiHaxa5h5nAutm13U4du3pyHEya-aCpRJg31e19Vw1Ggt3yDdHmcQC7f%7EG3iBWV6ZvndnrYPDcO-GpimpMf7-aSJC-ewfvf0IgYLghJdfTtCnyBjOvZGkfx%7E8UETHjet8anQ98yQwa7uECUscaollo6Xgsl%7EWiexHkB7oRuBpMizwRfnqYb1fkZ%7EcdFLr075pnYTk0GGzhf6FUB5%7EUm5vsm-QWog__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:19-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/f0a50531fa706fec36899d8499f228dcc917583b2de87e2f44f3374684b5c9c3?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_depth-fp16.safetensors%3B+filename%3D%22control_depth-fp16.safetensors%22%3B&Expires=1677128293&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvZjBhNTA1MzFmYTcwNmZlYzM2ODk5ZDg0OTlmMjI4ZGNjOTE3NTgzYjJkZTg3ZTJmNDRmMzM3NDY4NGI1YzljMz9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgyOTN9fX1dfQ__&Signature=aRrVbELx8ePPXluKaoMo82Y2DH-W4tYagVcTUKr6Ewp3EOWi9Nh6fu8Kya9SsACLYENJEegY%7EK7Opy4IQoZsR5HwpajAQPlIyVlqZqT66HTJHyv1dlxrpYqYGMuiHaxa5h5nAutm13U4du3pyHEya-aCpRJg31e19Vw1Ggt3yDdHmcQC7f%7EG3iBWV6ZvndnrYPDcO-GpimpMf7-aSJC-ewfvf0IgYLghJdfTtCnyBjOvZGkfx%7E8UETHjet8anQ98yQwa7uECUscaollo6Xgsl%7EWiexHkB7oRuBpMizwRfnqYb1fkZ%7EcdFLr075pnYTk0GGzhf6FUB5%7EUm5vsm-QWog__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_depth-fp16.safetensors’\n", | |
"\n", | |
"models/control_dept 100%[===================>] 689.12M 210MB/s in 3.3s \n", | |
"\n", | |
"2023-02-20 05:14:23 (207 MB/s) - ‘models/control_depth-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"--2023-02-20 05:14:23-- https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_normal-fp16.safetensors\n", | |
"Resolving huggingface.co (huggingface.co)... 54.235.118.239, 3.231.67.228, 2600:1f18:147f:e850:e203:c458:10cd:fc3c, ...\n", | |
"Connecting to huggingface.co (huggingface.co)|54.235.118.239|:443... connected.\n", | |
"HTTP request sent, awaiting response... 302 Found\n", | |
"Location: https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/0e778bc30b7278aef1126b685a7ad2a4a0de6a5d8a29172cb5c9aab90e465096?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_normal-fp16.safetensors%3B+filename%3D%22control_normal-fp16.safetensors%22%3B&Expires=1677128303&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvMGU3NzhiYzMwYjcyNzhhZWYxMTI2YjY4NWE3YWQyYTRhMGRlNmE1ZDhhMjkxNzJjYjVjOWFhYjkwZTQ2NTA5Nj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgzMDN9fX1dfQ__&Signature=l8H3BD%7EiIy8-1qO5J5G0yGVOmai952OmpYQpsuQlWUK34e3fRDqkMC8zX4KC4thSknWUvaYTn%7E8MyXUFDmH1msIPogpGpZh3l7tAST-lHvvmJ4teJHn1DAOPdEIERdGPohutUpWupkyV0PPOxGHQJk%7Em-47UIpwA3JXBKVm-RItje5sAXC5xVzmv7IJsgizqN7ftumO1qBWRkED99Hr%7EINnDDWkTeOB3wenw9x5BXGVnqeEDuuklE4psGOv5225UF9ETY%7Eq7pdOyL8zEWcsiurbgb3Btep2kDCZe-FjzEU0fMcEkU0crJTJwQ8RBMm1RhBNRwXpIONX--YBA2sgiPg__&Key-Pair-Id=KVTP0A1DKRTAX [following]\n", | |
"--2023-02-20 05:14:23-- https://cdn-lfs.huggingface.co/repos/fa/92/fa92d9224a56414259967038c19ee88a74c7e23cba4de1890ef401b27e699a29/0e778bc30b7278aef1126b685a7ad2a4a0de6a5d8a29172cb5c9aab90e465096?response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_normal-fp16.safetensors%3B+filename%3D%22control_normal-fp16.safetensors%22%3B&Expires=1677128303&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jZG4tbGZzLmh1Z2dpbmdmYWNlLmNvL3JlcG9zL2ZhLzkyL2ZhOTJkOTIyNGE1NjQxNDI1OTk2NzAzOGMxOWVlODhhNzRjN2UyM2NiYTRkZTE4OTBlZjQwMWIyN2U2OTlhMjkvMGU3NzhiYzMwYjcyNzhhZWYxMTI2YjY4NWE3YWQyYTRhMGRlNmE1ZDhhMjkxNzJjYjVjOWFhYjkwZTQ2NTA5Nj9yZXNwb25zZS1jb250ZW50LWRpc3Bvc2l0aW9uPSoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NzcxMjgzMDN9fX1dfQ__&Signature=l8H3BD%7EiIy8-1qO5J5G0yGVOmai952OmpYQpsuQlWUK34e3fRDqkMC8zX4KC4thSknWUvaYTn%7E8MyXUFDmH1msIPogpGpZh3l7tAST-lHvvmJ4teJHn1DAOPdEIERdGPohutUpWupkyV0PPOxGHQJk%7Em-47UIpwA3JXBKVm-RItje5sAXC5xVzmv7IJsgizqN7ftumO1qBWRkED99Hr%7EINnDDWkTeOB3wenw9x5BXGVnqeEDuuklE4psGOv5225UF9ETY%7Eq7pdOyL8zEWcsiurbgb3Btep2kDCZe-FjzEU0fMcEkU0crJTJwQ8RBMm1RhBNRwXpIONX--YBA2sgiPg__&Key-Pair-Id=KVTP0A1DKRTAX\n", | |
"Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 13.249.85.116, 13.249.85.12, 13.249.85.23, ...\n", | |
"Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|13.249.85.116|:443... connected.\n", | |
"HTTP request sent, awaiting response... 200 OK\n", | |
"Length: 722596338 (689M) [binary/octet-stream]\n", | |
"Saving to: ‘models/control_normal-fp16.safetensors’\n", | |
"\n", | |
"models/control_norm 100%[===================>] 689.12M 196MB/s in 3.6s \n", | |
"\n", | |
"2023-02-20 05:14:27 (191 MB/s) - ‘models/control_normal-fp16.safetensors’ saved [722596338/722596338]\n", | |
"\n", | |
"WARNING:py.warnings:/usr/local/lib/python3.8/dist-packages/gradio/deprecation.py:40: UserWarning: The 'type' parameter has been deprecated. Use the Number component instead.\n", | |
" warnings.warn(value)\n", | |
"\n", | |
"WARNING:py.warnings:/usr/local/lib/python3.8/dist-packages/gradio/deprecation.py:43: UserWarning: You have unused kwarg parameters in Slider, please remove them: {'minimun': 1}\n", | |
" warnings.warn(\n", | |
"\n", | |
"Running on local URL: http://127.0.0.1:7860\n", | |
"Running on public URL: https://52a3bab2-a313-455a.gradio.live\n", | |
"\n", | |
"This share link expires in 72 hours. For free permanent hosting and GPU upgrades (NEW!), check out Spaces: https://huggingface.co/spaces\n", | |
"\n", | |
" ———————————————\n", | |
" Hermione sat talking\n", | |
" ———————————————\n", | |
"video rate is OK\n", | |
"[MoviePy] >>>> Building video video_resized.mp4\n", | |
"[MoviePy] Writing audio in video_resizedTEMP_MPY_wvf_snd.mp3\n", | |
"100% 24/24 [00:00<00:00, 2403.96it/s]\n", | |
"[MoviePy] Done.\n", | |
"[MoviePy] Writing video video_resized.mp4\n", | |
"100% 33/33 [00:00<00:00, 147.23it/s]\n", | |
"[MoviePy] Done.\n", | |
"[MoviePy] >>>> Video ready: video_resized.mp4 \n", | |
"\n", | |
"video resized to 512 height\n", | |
"video fps: 29.97\n", | |
"broke the video into frames\n", | |
"set stop frames to: 29\n", | |
"Loaded state_dict from [models/control_openpose-fp16.safetensors]\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.33s/it]\n", | |
"frame kang0.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.34s/it]\n", | |
"frame kang1.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.30s/it]\n", | |
"frame kang2.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang3.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.33s/it]\n", | |
"frame kang4.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang5.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang6.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang7.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang8.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.31s/it]\n", | |
"frame kang9.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang10.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang11.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang12.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang13.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang14.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang15.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang16.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang17.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang18.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang19.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang20.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang21.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang22.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang23.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang24.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang25.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang26.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang27.jpg/29: done;\n", | |
"Global seed set to 123456\n", | |
"Data shape for DDIM sampling is (1, 4, 64, 112), eta 0.0\n", | |
"Running DDIM Sampling with 20 timesteps\n", | |
"DDIM Sampler: 100% 20/20 [00:26<00:00, 1.32s/it]\n", | |
"frame kang28.jpg/29: done;\n", | |
"building video result\n", | |
"[MoviePy] >>>> Building video movie.mp4\n", | |
"[MoviePy] Writing video movie.mp4\n", | |
"100% 30/30 [00:00<00:00, 91.86it/s]\n", | |
"[MoviePy] Done.\n", | |
"[MoviePy] >>>> Video ready: movie.mp4 \n", | |
"\n", | |
"finished !\n", | |
"Keyboard interruption in main thread... closing server.\n", | |
"Traceback (most recent call last):\n", | |
" File \"/usr/local/lib/python3.8/dist-packages/gradio/blocks.py\", line 1664, in block_thread\n", | |
" time.sleep(0.1)\n", | |
"KeyboardInterrupt\n", | |
"\n", | |
"During handling of the above exception, another exception occurred:\n", | |
"\n", | |
"Traceback (most recent call last):\n", | |
" File \"app.py\", line 244, in <module>\n", | |
" demo.launch(share=True).queue(max_size=12)\n", | |
" File \"/usr/local/lib/python3.8/dist-packages/gradio/blocks.py\", line 1581, in launch\n", | |
" self.block_thread()\n", | |
" File \"/usr/local/lib/python3.8/dist-packages/gradio/blocks.py\", line 1667, in block_thread\n", | |
" self.server.close()\n", | |
" File \"/usr/local/lib/python3.8/dist-packages/gradio/networking.py\", line 43, in close\n", | |
" self.thread.join()\n", | |
" File \"/usr/lib/python3.8/threading.py\", line 1011, in join\n", | |
" self._wait_for_tstate_lock()\n", | |
" File \"/usr/lib/python3.8/threading.py\", line 1027, in _wait_for_tstate_lock\n", | |
" elif lock.acquire(block, timeout):\n", | |
"KeyboardInterrupt\n", | |
"Killing tunnel 127.0.0.1:7860 <> https://52a3bab2-a313-455a.gradio.live\n", | |
"^C\n" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"import sys\n", | |
"sys.path.append('ControlNet')\n", | |
"import config\n", | |
"from model import Model" | |
], | |
"metadata": { | |
"id": "sLkikmUtMCmj" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"!ln -s ControlNet/annotator/ annotator" | |
], | |
"metadata": { | |
"id": "cAoChC93MPO6" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment