Spaces:
Paused
Paused
app.pyにおいて、Wan2.1のattention.pyをパッチ適用し、flash_attnの要件を無効化する処理を追加しました。また、download_models.shで必要なモデルファイルのリストを更新し、README.mddの起動時のログを拡充しました。これにより、モデルのダウンロードと初期化処理が改善されました。
Browse files- app.py +29 -1
- download_models.sh +3 -2
- エラーログ.md +456 -94
app.py
CHANGED
|
@@ -24,6 +24,32 @@ def initialize():
|
|
| 24 |
except Exception as e:
|
| 25 |
print(f"Warning: Failed to clone VACE: {e}")
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
# Download models using huggingface-cli
|
| 28 |
models = [
|
| 29 |
("Wan-AI/Wan2.1-VACE-1.3B", "Wan2.1-VACE-1.3B"),
|
|
@@ -50,7 +76,9 @@ def initialize():
|
|
| 50 |
# Check for critical model files
|
| 51 |
critical_files = [
|
| 52 |
"Wan2.1-VACE-1.3B/models_t5_umt5-xxl-enc-bf16.pth",
|
| 53 |
-
"Wan2.1-VACE-1.3B/
|
|
|
|
|
|
|
| 54 |
]
|
| 55 |
|
| 56 |
for file_path in critical_files:
|
|
|
|
| 24 |
except Exception as e:
|
| 25 |
print(f"Warning: Failed to clone VACE: {e}")
|
| 26 |
|
| 27 |
+
# Patch Wan2.1 attention.py to disable flash_attn requirement
|
| 28 |
+
attention_file = "Wan2.1/wan/modules/attention.py"
|
| 29 |
+
if os.path.exists(attention_file):
|
| 30 |
+
print("Patching attention.py to disable flash_attn requirement...")
|
| 31 |
+
try:
|
| 32 |
+
with open(attention_file, 'r') as f:
|
| 33 |
+
content = f.read()
|
| 34 |
+
|
| 35 |
+
# Replace the assert statement with a fallback
|
| 36 |
+
if "assert FLASH_ATTN_2_AVAILABLE" in content:
|
| 37 |
+
# First, ensure F is imported
|
| 38 |
+
if "import torch.nn.functional as F" not in content:
|
| 39 |
+
content = "import torch.nn.functional as F\n" + content
|
| 40 |
+
|
| 41 |
+
# Replace the assert with a conditional return
|
| 42 |
+
content = content.replace(
|
| 43 |
+
"assert FLASH_ATTN_2_AVAILABLE",
|
| 44 |
+
"if not FLASH_ATTN_2_AVAILABLE:\n return F.scaled_dot_product_attention(q, k, v, dropout_p=0.0, is_causal=False)"
|
| 45 |
+
)
|
| 46 |
+
|
| 47 |
+
with open(attention_file, 'w') as f:
|
| 48 |
+
f.write(content)
|
| 49 |
+
print("Successfully patched attention.py")
|
| 50 |
+
except Exception as e:
|
| 51 |
+
print(f"Warning: Failed to patch attention.py: {e}")
|
| 52 |
+
|
| 53 |
# Download models using huggingface-cli
|
| 54 |
models = [
|
| 55 |
("Wan-AI/Wan2.1-VACE-1.3B", "Wan2.1-VACE-1.3B"),
|
|
|
|
| 76 |
# Check for critical model files
|
| 77 |
critical_files = [
|
| 78 |
"Wan2.1-VACE-1.3B/models_t5_umt5-xxl-enc-bf16.pth",
|
| 79 |
+
"Wan2.1-VACE-1.3B/diffusion_pytorch_model.safetensors",
|
| 80 |
+
"Wan2.1-FLF2V-14B-720P/models_t5_umt5-xxl-enc-bf16.pth",
|
| 81 |
+
"Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model.safetensors.index.json"
|
| 82 |
]
|
| 83 |
|
| 84 |
for file_path in critical_files:
|
download_models.sh
CHANGED
|
@@ -34,8 +34,9 @@ echo "Verifying downloaded files..."
|
|
| 34 |
|
| 35 |
CRITICAL_FILES=(
|
| 36 |
"Wan2.1-VACE-1.3B/models_t5_umt5-xxl-enc-bf16.pth"
|
| 37 |
-
"Wan2.1-VACE-1.3B/
|
| 38 |
-
"Wan2.1-FLF2V-14B-720P/
|
|
|
|
| 39 |
)
|
| 40 |
|
| 41 |
ALL_GOOD=true
|
|
|
|
| 34 |
|
| 35 |
CRITICAL_FILES=(
|
| 36 |
"Wan2.1-VACE-1.3B/models_t5_umt5-xxl-enc-bf16.pth"
|
| 37 |
+
"Wan2.1-VACE-1.3B/diffusion_pytorch_model.safetensors"
|
| 38 |
+
"Wan2.1-FLF2V-14B-720P/models_t5_umt5-xxl-enc-bf16.pth"
|
| 39 |
+
"Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model.safetensors.index.json"
|
| 40 |
)
|
| 41 |
|
| 42 |
ALL_GOOD=true
|
エラーログ.md
CHANGED
|
@@ -1,119 +1,469 @@
|
|
| 1 |
-
===== Application Startup at 2025-06-21 05:
|
| 2 |
|
| 3 |
Initializing Wan2.1 VACE environment...
|
| 4 |
Cloning Wan2.1 repository...
|
| 5 |
Cloning into 'Wan2.1'...
|
| 6 |
Cloning VACE repository...
|
| 7 |
Cloning into 'VACE'...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
INFO: Started server process [1]
|
| 9 |
INFO: Waiting for application startup.
|
| 10 |
INFO: Application startup complete.
|
| 11 |
INFO: Uvicorn running on http://0.0.0.0:7860 (Press CTRL+C to quit)
|
| 12 |
Invalid port: '7861config'
|
| 13 |
-
INFO: 127.0.0.1:
|
| 14 |
Invalid port: '7861gradio_apiinfo'
|
| 15 |
-
INFO: 127.0.0.1:
|
| 16 |
-
INFO: 10.16.
|
| 17 |
Invalid port: '7861theme.css'
|
| 18 |
-
INFO: 10.16.14.254:
|
| 19 |
-
Invalid port: '7861sveltesvelte.js'
|
| 20 |
-
INFO: 10.16.17.21:18565 - "GET /svelte/svelte.js HTTP/1.1" 200 OK
|
| 21 |
-
Invalid port: '7861sveltesvelte-submodules.js'
|
| 22 |
Invalid port: '7861staticfontsui-sans-serifui-sans-serif-Regular.woff2'
|
| 23 |
-
INFO: 10.16.
|
| 24 |
-
INFO: 10.16.32.173:14159 - "GET /svelte/svelte-submodules.js HTTP/1.1" 200 OK
|
| 25 |
-
Invalid port: '7861staticfontssystem-uisystem-ui-Regular.woff2'
|
| 26 |
-
INFO: 10.16.14.254:3226 - "GET /static/fonts/system-ui/system-ui-Regular.woff2 HTTP/1.1" 404 Not Found
|
| 27 |
Invalid port: '7861config'
|
| 28 |
-
INFO: 10.16.
|
|
|
|
|
|
|
| 29 |
Invalid port: '7861gradio_apiinfo'
|
| 30 |
-
INFO: 10.16.
|
| 31 |
Invalid port: '7861staticfontsui-sans-serifui-sans-serif-Bold.woff2'
|
| 32 |
-
INFO: 10.16.
|
| 33 |
Invalid port: '7861staticfontssystem-uisystem-ui-Bold.woff2'
|
| 34 |
-
INFO: 10.16.
|
| 35 |
-
Invalid port: '7861gradio_apiupload_progress'
|
| 36 |
-
Invalid port: '7861gradio_apiupload'
|
| 37 |
-
INFO: 10.16.17.21:22215 - "GET /gradio_api/upload_progress?upload_id=56of1plbqtd HTTP/1.1" 200 OK
|
| 38 |
-
INFO: 10.16.32.173:12325 - "POST /gradio_api/upload?upload_id=56of1plbqtd HTTP/1.1" 200 OK
|
| 39 |
-
Invalid port: '7861gradio_apifile=tmpgradio36572379139090b9b9db59316b2c231773842b5fa2674db1a567cf45f8470bbeComfyUI_00001_sexxy_1748623055.png'
|
| 40 |
-
INFO: 10.16.32.173:12325 - "GET /gradio_api/file%3D/tmp/gradio/36572379139090b9b9db59316b2c231773842b5fa2674db1a567cf45f8470bbe/ComfyUI_00001_sexxy_1748623055.png HTTP/1.1" 200 OK
|
| 41 |
Invalid port: '7861gradio_apiupload_progress'
|
| 42 |
Invalid port: '7861gradio_apiupload'
|
| 43 |
-
INFO: 10.16.14.254:
|
| 44 |
-
INFO: 10.16.17.21:
|
| 45 |
-
Invalid port: '
|
| 46 |
-
|
| 47 |
-
INFO: 10.16.32.173:29002 - "GET /gradio_api/upload_progress?upload_id=xa1v4k9rhwm HTTP/1.1" 200 OK
|
| 48 |
-
INFO: 10.16.32.173:1307 - "POST /gradio_api/upload?upload_id=xa1v4k9rhwm HTTP/1.1" 200 OK
|
| 49 |
-
Invalid port: '7861staticfontsIBMPlexMonoIBMPlexMono-Regular.woff2'
|
| 50 |
-
INFO: 10.16.32.173:29002 - "GET /static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 HTTP/1.1" 200 OK
|
| 51 |
Invalid port: '7861gradio_apiqueuejoin'
|
| 52 |
-
|
|
|
|
|
|
|
| 53 |
Invalid port: '7861gradio_apiqueuedata'
|
| 54 |
-
INFO: 10.16.
|
| 55 |
-
VACE
|
| 56 |
-
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
| 58 |
File "/home/user/app/Wan2.1/generate.py", line 587, in <module>
|
| 59 |
generate(args)
|
| 60 |
-
File "/home/user/app/Wan2.1/generate.py", line
|
| 61 |
-
|
| 62 |
-
File "/home/user
|
| 63 |
-
|
| 64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
Traceback (most recent call last):
|
| 67 |
-
File "/home/user
|
| 68 |
-
|
| 69 |
-
File "/home/user
|
| 70 |
-
output = await app.get_blocks().process_api(
|
| 71 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/blocks.py", line 2220, in process_api
|
| 72 |
-
result = await self.call_function(
|
| 73 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/blocks.py", line 1731, in call_function
|
| 74 |
-
prediction = await anyio.to_thread.run_sync( # type: ignore
|
| 75 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/anyio/to_thread.py", line 56, in run_sync
|
| 76 |
-
return await get_async_backend().run_sync_in_worker_thread(
|
| 77 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 2470, in run_sync_in_worker_thread
|
| 78 |
-
return await future
|
| 79 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 967, in run
|
| 80 |
-
result = context.run(func, *args)
|
| 81 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/utils.py", line 904, in wrapper
|
| 82 |
-
response = f(*args, **kwargs)
|
| 83 |
-
File "/home/user/app/app.py", line 81, in video_ui
|
| 84 |
-
generate_video(ref_path, first_path, last_path, output)
|
| 85 |
-
File "/home/user/app/wan_runner.py", line 98, in generate_video
|
| 86 |
run_cmd([
|
| 87 |
File "/home/user/app/wan_runner.py", line 14, in run_cmd
|
| 88 |
result = subprocess.run(cmd, check=True, capture_output=True, text=True)
|
| 89 |
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/subprocess.py", line 526, in run
|
| 90 |
raise CalledProcessError(retcode, process.args,
|
| 91 |
-
subprocess.CalledProcessError: Command '['/home/user/.pyenv/versions/3.10.18/bin/python', '/home/user/app/Wan2.1/generate.py', '--task', '
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
INFO: 10.16.17.21:13650 - "GET /gradio_api/upload_progress?upload_id=6pdtjp0apir HTTP/1.1" 200 OK
|
| 95 |
-
INFO: 10.16.17.21:10336 - "POST /gradio_api/upload?upload_id=6pdtjp0apir HTTP/1.1" 200 OK
|
| 96 |
-
Invalid port: '7861gradio_apiqueuejoin'
|
| 97 |
-
INFO: 10.16.17.21:64212 - "POST /gradio_api/queue/join?__theme=system HTTP/1.1" 200 OK
|
| 98 |
-
Invalid port: '7861gradio_apiqueuedata'
|
| 99 |
-
INFO: 10.16.14.254:50299 - "GET /gradio_api/queue/data?session_hash=eigvv8pn4a6 HTTP/1.1" 200 OK
|
| 100 |
-
Command failed: /home/user/.pyenv/versions/3.10.18/bin/python /home/user/app/Wan2.1/generate.py --task vace-1.3B --size 832*480 --ckpt_dir /home/user/app/Wan2.1-VACE-1.3B --src_ref_images /tmp/tmpennebtsp/ref.png --frame_num 1 --prompt Changed to wearing a recruit suit.
|
| 101 |
-
Error: Traceback (most recent call last):
|
| 102 |
-
File "/home/user/app/Wan2.1/generate.py", line 587, in <module>
|
| 103 |
-
generate(args)
|
| 104 |
-
File "/home/user/app/Wan2.1/generate.py", line 523, in generate
|
| 105 |
-
wan_vace = wan.WanVace(
|
| 106 |
-
File "/home/user/app/Wan2.1/wan/vace.py", line 80, in __init__
|
| 107 |
-
self.text_encoder = T5EncoderModel(
|
| 108 |
-
File "/home/user/app/Wan2.1/wan/modules/t5.py", line 496, in __init__
|
| 109 |
-
model.load_state_dict(torch.load(checkpoint_path, map_location='cpu'))
|
| 110 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/serialization.py", line 1319, in load
|
| 111 |
-
with _open_file_like(f, "rb") as opened_file:
|
| 112 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/serialization.py", line 659, in _open_file_like
|
| 113 |
-
return _open_file(name_or_buffer, mode)
|
| 114 |
-
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/serialization.py", line 640, in __init__
|
| 115 |
-
super().__init__(open(name, mode))
|
| 116 |
-
FileNotFoundError: [Errno 2] No such file or directory: '/home/user/app/Wan2.1-VACE-1.3B/models_t5_umt5-xxl-enc-bf16.pth'
|
| 117 |
|
| 118 |
Traceback (most recent call last):
|
| 119 |
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
|
|
@@ -132,12 +482,24 @@ Traceback (most recent call last):
|
|
| 132 |
result = context.run(func, *args)
|
| 133 |
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/utils.py", line 904, in wrapper
|
| 134 |
response = f(*args, **kwargs)
|
| 135 |
-
File "/home/user/app/app.py", line
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
===== Application Startup at 2025-06-21 05:54:08 =====
|
| 2 |
|
| 3 |
Initializing Wan2.1 VACE environment...
|
| 4 |
Cloning Wan2.1 repository...
|
| 5 |
Cloning into 'Wan2.1'...
|
| 6 |
Cloning VACE repository...
|
| 7 |
Cloning into 'VACE'...
|
| 8 |
+
Downloading Wan-AI/Wan2.1-VACE-1.3B...
|
| 9 |
+
/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/huggingface_hub/commands/download.py:139: FutureWarning: Ignoring --local-dir-use-symlinks. Downloading to a local directory does not use symlinks anymore.
|
| 10 |
+
warnings.warn(
|
| 11 |
+
Downloading '.gitattributes' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/wPaCkH-WbT7GsmxMKKrNZTV4nSM=.fbb6bd8eb5d21aabebd595ad008f94ad627e3305.incomplete'
|
| 12 |
+
|
| 13 |
+
.gitattributes: 0%| | 0.00/2.00k [00:00<?, ?B/s]
|
| 14 |
+
.gitattributes: 100%|██████████| 2.00k/2.00k [00:00<00:00, 16.5MB/s]
|
| 15 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/.gitattributes
|
| 16 |
+
Downloading 'LICENSE.txt' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/cyBuwAu93UXke23CJCWORBYR70A=.261eeb9e9f8b2b4b0d119366dda99c6fd7d35c64.incomplete'
|
| 17 |
+
|
| 18 |
+
LICENSE.txt: 0%| | 0.00/11.4k [00:00<?, ?B/s]
|
| 19 |
+
LICENSE.txt: 100%|██████████| 11.4k/11.4k [00:00<00:00, 84.0MB/s]
|
| 20 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/LICENSE.txt
|
| 21 |
+
Downloading 'README.md' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/Xn7B-BWUGOee2Y6hCZtEhtFu4BE=.ecb8cb95edfe06022839144e0d965780482f2321.incomplete'
|
| 22 |
+
|
| 23 |
+
README.md: 0%| | 0.00/40.5k [00:00<?, ?B/s]
|
| 24 |
+
README.md: 100%|██████████| 40.5k/40.5k [00:00<00:00, 112MB/s]
|
| 25 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/README.md
|
| 26 |
+
Downloading 'Wan2.1_VAE.pth' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/OZTShqo6Di7rh0SEswnfwSjKa9w=.38071ab59bd94681c686fa51d75a1968f64e470262043be31f7a094e442fd981.incomplete'
|
| 27 |
+
|
| 28 |
+
Wan2.1_VAE.pth: 0%| | 0.00/508M [00:00<?, ?B/s]
|
| 29 |
+
Wan2.1_VAE.pth: 2%|▏ | 10.5M/508M [00:01<00:51, 9.69MB/s]
|
| 30 |
+
Wan2.1_VAE.pth: 100%|█████████▉| 508M/508M [00:02<00:00, 238MB/s]
|
| 31 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/Wan2.1_VAE.pth
|
| 32 |
+
Downloading 'assets/comp_effic.png' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/X4-4NQEdffK1bUQbDx0NJ4IbcNo=.b0e225caffb4b31295ad150f95ee852e4c3dde4a00ac8f79a2ff500f2ce26b8d.incomplete'
|
| 33 |
+
|
| 34 |
+
comp_effic.png: 0%| | 0.00/1.79M [00:00<?, ?B/s]
|
| 35 |
+
comp_effic.png: 100%|██████████| 1.79M/1.79M [00:00<00:00, 71.3MB/s]
|
| 36 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/comp_effic.png
|
| 37 |
+
Downloading 'assets/data_for_diff_stage.jpg' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/UCVN8O248kjCIp8i1TvUXWfm-q4=.59aec08409f2d46b0e640e4e120dc7cca52c08c3de56d026602dbcff1ebf241a.incomplete'
|
| 38 |
+
|
| 39 |
+
data_for_diff_stage.jpg: 0%| | 0.00/528k [00:00<?, ?B/s]
|
| 40 |
+
data_for_diff_stage.jpg: 100%|██████████| 528k/528k [00:00<00:00, 147MB/s]
|
| 41 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/data_for_diff_stage.jpg
|
| 42 |
+
Downloading 'assets/i2v_res.png' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/GL7zbyOeRDu8VADezw2p_Gw3fW4=.6823b3206d8d0cb18d3b5b949dec1217f1178109ba11f14e977b67e1f7b8a248.incomplete'
|
| 43 |
+
|
| 44 |
+
i2v_res.png: 0%| | 0.00/892k [00:00<?, ?B/s]
|
| 45 |
+
i2v_res.png: 100%|██████████| 892k/892k [00:00<00:00, 182MB/s]
|
| 46 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/i2v_res.png
|
| 47 |
+
Downloading 'assets/logo.png' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/gvouIpVGo_vjLxWDOGAmKk_SZvY=.0c55854cbd9692975f217714ffd83fd4b37f5dca.incomplete'
|
| 48 |
+
|
| 49 |
+
logo.png: 0%| | 0.00/56.3k [00:00<?, ?B/s]
|
| 50 |
+
logo.png: 100%|██████████| 56.3k/56.3k [00:00<00:00, 125MB/s]
|
| 51 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/logo.png
|
| 52 |
+
Downloading 'assets/t2v_res.jpg' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/VwwCFkBXvnWpmAWpzHvOZFYnnp8=.91db579092446be2a834bc67721a8e4346936f38c4edb912f459ca3e10f8f439.incomplete'
|
| 53 |
+
|
| 54 |
+
t2v_res.jpg: 0%| | 0.00/301k [00:00<?, ?B/s]
|
| 55 |
+
t2v_res.jpg: 100%|██████████| 301k/301k [00:00<00:00, 152MB/s]
|
| 56 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/t2v_res.jpg
|
| 57 |
+
Downloading 'assets/vben_vs_sota.png' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/p0uIb0aMIBdDB8sg9tk5UvunoB8=.9a0e86ca85046d2675f97984b88b6e74df07bba8a62a31ab8a1aef50d4eda44e.incomplete'
|
| 58 |
+
|
| 59 |
+
vben_vs_sota.png: 0%| | 0.00/1.55M [00:00<?, ?B/s]
|
| 60 |
+
vben_vs_sota.png: 100%|██████████| 1.55M/1.55M [00:00<00:00, 197MB/s]
|
| 61 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/vben_vs_sota.png
|
| 62 |
+
Downloading 'assets/video_dit_arch.jpg' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/PbT6aGUrWxKRPnz45UQ5EbqxKYE=.195dceec6570289d8b01cc51d2e28a7786216f19de55b23978a52610d1646a66.incomplete'
|
| 63 |
+
|
| 64 |
+
video_dit_arch.jpg: 0%| | 0.00/643k [00:00<?, ?B/s]
|
| 65 |
+
video_dit_arch.jpg: 100%|██████████| 643k/643k [00:00<00:00, 185MB/s]
|
| 66 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/video_dit_arch.jpg
|
| 67 |
+
Downloading 'assets/video_vae_res.jpg' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/assets/_r133FrlYqQbngOMpQWXWYhhvVM=.d8f9e7f7353848056a615c8ef35ab86ec22976bb46cb27405008b4089701945c.incomplete'
|
| 68 |
+
|
| 69 |
+
video_vae_res.jpg: 0%| | 0.00/213k [00:00<?, ?B/s]
|
| 70 |
+
video_vae_res.jpg: 100%|██████████| 213k/213k [00:00<00:00, 115MB/s]
|
| 71 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/assets/video_vae_res.jpg
|
| 72 |
+
Downloading 'config.json' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/8_PA_wEVGiVa2goH2H4KQOQpvVY=.75c3b83dcd4d66a530e6f6049069f41b6c5c3f5a.incomplete'
|
| 73 |
+
|
| 74 |
+
config.json: 0%| | 0.00/349 [00:00<?, ?B/s]
|
| 75 |
+
config.json: 100%|██████████| 349/349 [00:00<00:00, 3.98MB/s]
|
| 76 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/config.json
|
| 77 |
+
Downloading 'diffusion_pytorch_model.safetensors' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/4SfAgk9U607e8pVunEB9nSiU10k=.c46a6f5f7d32c453c3983bbc59761ea41cd02ad584fb55d1a7ee2b76145847a2.incomplete'
|
| 78 |
+
|
| 79 |
+
diffusion_pytorch_model.safetensors: 0%| | 0.00/7.15G [00:00<?, ?B/s]
|
| 80 |
+
diffusion_pytorch_model.safetensors: 2%|▏ | 157M/7.15G [00:01<00:57, 122MB/s]
|
| 81 |
+
diffusion_pytorch_model.safetensors: 7%|▋ | 493M/7.15G [00:02<00:28, 232MB/s]
|
| 82 |
+
diffusion_pytorch_model.safetensors: 16%|█▋ | 1.16G/7.15G [00:03<00:14, 405MB/s]
|
| 83 |
+
diffusion_pytorch_model.safetensors: 31%|███▏ | 2.24G/7.15G [00:04<00:07, 654MB/s]
|
| 84 |
+
diffusion_pytorch_model.safetensors: 47%|████▋ | 3.38G/7.15G [00:05<00:04, 818MB/s]
|
| 85 |
+
diffusion_pytorch_model.safetensors: 64%|██████▍ | 4.56G/7.15G [00:06<00:02, 938MB/s]
|
| 86 |
+
diffusion_pytorch_model.safetensors: 80%|████████ | 5.73G/7.15G [00:07<00:01, 1.01GB/s]
|
| 87 |
+
diffusion_pytorch_model.safetensors: 100%|█████████▉| 7.15G/7.15G [00:08<00:00, 830MB/s]
|
| 88 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/diffusion_pytorch_model.safetensors
|
| 89 |
+
Downloading 'google/umt5-xxl/special_tokens_map.json' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/google/umt5-xxl/ahkChHUJFxEmOdq5GDFEmerRzCY=.14855e7052ffbb595057dfd791d293c1c940db2c.incomplete'
|
| 90 |
+
|
| 91 |
+
special_tokens_map.json: 0%| | 0.00/6.62k [00:00<?, ?B/s]
|
| 92 |
+
special_tokens_map.json: 100%|██████████| 6.62k/6.62k [00:00<00:00, 24.2MB/s]
|
| 93 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/google/umt5-xxl/special_tokens_map.json
|
| 94 |
+
Downloading 'google/umt5-xxl/spiece.model' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/google/umt5-xxl/vj8E1loknrCNPSP8nWJC234Bff4=.e3909a67b780650b35cf529ac782ad2b6b26e6d1f849d3fbb6a872905f452458.incomplete'
|
| 95 |
+
|
| 96 |
+
spiece.model: 0%| | 0.00/4.55M [00:00<?, ?B/s]
|
| 97 |
+
spiece.model: 100%|██████████| 4.55M/4.55M [00:00<00:00, 241MB/s]
|
| 98 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/google/umt5-xxl/spiece.model
|
| 99 |
+
Downloading 'google/umt5-xxl/tokenizer.json' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/google/umt5-xxl/HgM_lKo9sdSCfRtVg7MMFS7EKqo=.6e197b4d3dbd71da14b4eb255f4fa91c9c1f2068b20a2de2472967ca3d22602b.incomplete'
|
| 100 |
+
|
| 101 |
+
tokenizer.json: 0%| | 0.00/16.8M [00:00<?, ?B/s]
|
| 102 |
+
tokenizer.json: 100%|██████████| 16.8M/16.8M [00:00<00:00, 119MB/s]
|
| 103 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/google/umt5-xxl/tokenizer.json
|
| 104 |
+
Downloading 'google/umt5-xxl/tokenizer_config.json' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/google/umt5-xxl/vzaExXFZNBay89bvlQv-ZcI6BTg=.4e1cc1cd85599ce0b47fd0a746af188fe4043ff2.incomplete'
|
| 105 |
+
|
| 106 |
+
tokenizer_config.json: 0%| | 0.00/61.7k [00:00<?, ?B/s]
|
| 107 |
+
tokenizer_config.json: 100%|██████████| 61.7k/61.7k [00:00<00:00, 56.2MB/s]
|
| 108 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/google/umt5-xxl/tokenizer_config.json
|
| 109 |
+
Downloading 'models_t5_umt5-xxl-enc-bf16.pth' to 'Wan2.1-VACE-1.3B/.cache/huggingface/download/7xjTyx9p9-CteGiI3VEINu_Ohx0=.7cace0da2b446bbbbc57d031ab6cf163a3d59b366da94e5afe36745b746fd81d.incomplete'
|
| 110 |
+
|
| 111 |
+
models_t5_umt5-xxl-enc-bf16.pth: 0%| | 0.00/11.4G [00:00<?, ?B/s]
|
| 112 |
+
models_t5_umt5-xxl-enc-bf16.pth: 0%| | 52.4M/11.4G [00:01<03:49, 49.3MB/s]
|
| 113 |
+
models_t5_umt5-xxl-enc-bf16.pth: 7%|▋ | 755M/11.4G [00:02<00:25, 423MB/s]
|
| 114 |
+
models_t5_umt5-xxl-enc-bf16.pth: 13%|█▎ | 1.47G/11.4G [00:03<00:18, 550MB/s]
|
| 115 |
+
models_t5_umt5-xxl-enc-bf16.pth: 23%|██▎ | 2.66G/11.4G [00:04<00:10, 798MB/s]
|
| 116 |
+
models_t5_umt5-xxl-enc-bf16.pth: 34%|███▍ | 3.90G/11.4G [00:05<00:07, 946MB/s]
|
| 117 |
+
models_t5_umt5-xxl-enc-bf16.pth: 46%|████▌ | 5.25G/11.4G [00:06<00:05, 1.08GB/s]
|
| 118 |
+
models_t5_umt5-xxl-enc-bf16.pth: 57%|█████▋ | 6.46G/11.4G [00:07<00:04, 1.12GB/s]
|
| 119 |
+
models_t5_umt5-xxl-enc-bf16.pth: 67%|██████▋ | 7.64G/11.4G [00:08<00:03, 1.14GB/s]
|
| 120 |
+
models_t5_umt5-xxl-enc-bf16.pth: 77%|███████▋ | 8.80G/11.4G [00:09<00:02, 1.14GB/s]
|
| 121 |
+
models_t5_umt5-xxl-enc-bf16.pth: 88%|████████▊ | 9.95G/11.4G [00:10<00:01, 1.13GB/s]
|
| 122 |
+
models_t5_umt5-xxl-enc-bf16.pth: 100%|█████████▉| 11.4G/11.4G [00:11<00:00, 1.01GB/s]
|
| 123 |
+
Download complete. Moving file to Wan2.1-VACE-1.3B/models_t5_umt5-xxl-enc-bf16.pth
|
| 124 |
+
/home/user/app/Wan2.1-VACE-1.3B
|
| 125 |
+
Successfully downloaded Wan-AI/Wan2.1-VACE-1.3B
|
| 126 |
+
Downloading Wan-AI/Wan2.1-FLF2V-14B-720P...
|
| 127 |
+
/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/huggingface_hub/commands/download.py:139: FutureWarning: Ignoring --local-dir-use-symlinks. Downloading to a local directory does not use symlinks anymore.
|
| 128 |
+
warnings.warn(
|
| 129 |
+
Downloading '.gitattributes' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/wPaCkH-WbT7GsmxMKKrNZTV4nSM=.057fac3f30fe829b900f2adb15fdc60b7e704c43.incomplete'
|
| 130 |
+
|
| 131 |
+
.gitattributes: 0%| | 0.00/2.20k [00:00<?, ?B/s]
|
| 132 |
+
.gitattributes: 100%|██████████| 2.20k/2.20k [00:00<00:00, 16.5MB/s]
|
| 133 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/.gitattributes
|
| 134 |
+
Downloading 'README.md' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/Xn7B-BWUGOee2Y6hCZtEhtFu4BE=.67f426d305d9e0022c79f6f6abd9910dfe602817.incomplete'
|
| 135 |
+
|
| 136 |
+
README.md: 0%| | 0.00/35.1k [00:00<?, ?B/s]
|
| 137 |
+
README.md: 100%|██████████| 35.1k/35.1k [00:00<00:00, 135MB/s]
|
| 138 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/README.md
|
| 139 |
+
Downloading 'Wan2.1_VAE.pth' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/OZTShqo6Di7rh0SEswnfwSjKa9w=.38071ab59bd94681c686fa51d75a1968f64e470262043be31f7a094e442fd981.incomplete'
|
| 140 |
+
|
| 141 |
+
Wan2.1_VAE.pth: 0%| | 0.00/508M [00:00<?, ?B/s]
|
| 142 |
+
Wan2.1_VAE.pth: 9%|▉ | 46.2M/508M [00:01<00:10, 43.1MB/s]
|
| 143 |
+
Wan2.1_VAE.pth: 100%|█████████▉| 508M/508M [00:01<00:00, 332MB/s]
|
| 144 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/Wan2.1_VAE.pth
|
| 145 |
+
Downloading 'assets/comp_effic.png' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/X4-4NQEdffK1bUQbDx0NJ4IbcNo=.b0e225caffb4b31295ad150f95ee852e4c3dde4a00ac8f79a2ff500f2ce26b8d.incomplete'
|
| 146 |
+
|
| 147 |
+
comp_effic.png: 0%| | 0.00/1.79M [00:00<?, ?B/s]
|
| 148 |
+
comp_effic.png: 100%|██████████| 1.79M/1.79M [00:00<00:00, 220MB/s]
|
| 149 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/comp_effic.png
|
| 150 |
+
Downloading 'assets/data_for_diff_stage.jpg' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/UCVN8O248kjCIp8i1TvUXWfm-q4=.59aec08409f2d46b0e640e4e120dc7cca52c08c3de56d026602dbcff1ebf241a.incomplete'
|
| 151 |
+
|
| 152 |
+
data_for_diff_stage.jpg: 0%| | 0.00/528k [00:00<?, ?B/s]
|
| 153 |
+
data_for_diff_stage.jpg: 100%|██████████| 528k/528k [00:00<00:00, 230MB/s]
|
| 154 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/data_for_diff_stage.jpg
|
| 155 |
+
Downloading 'assets/i2v_res.png' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/GL7zbyOeRDu8VADezw2p_Gw3fW4=.6823b3206d8d0cb18d3b5b949dec1217f1178109ba11f14e977b67e1f7b8a248.incomplete'
|
| 156 |
+
|
| 157 |
+
i2v_res.png: 0%| | 0.00/892k [00:00<?, ?B/s]
|
| 158 |
+
i2v_res.png: 100%|██████████| 892k/892k [00:00<00:00, 243MB/s]
|
| 159 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/i2v_res.png
|
| 160 |
+
Downloading 'assets/logo.png' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/gvouIpVGo_vjLxWDOGAmKk_SZvY=.0c55854cbd9692975f217714ffd83fd4b37f5dca.incomplete'
|
| 161 |
+
|
| 162 |
+
logo.png: 0%| | 0.00/56.3k [00:00<?, ?B/s]
|
| 163 |
+
logo.png: 100%|██████████| 56.3k/56.3k [00:00<00:00, 71.2MB/s]
|
| 164 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/logo.png
|
| 165 |
+
Downloading 'assets/t2v_res.jpg' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/VwwCFkBXvnWpmAWpzHvOZFYnnp8=.91db579092446be2a834bc67721a8e4346936f38c4edb912f459ca3e10f8f439.incomplete'
|
| 166 |
+
|
| 167 |
+
t2v_res.jpg: 0%| | 0.00/301k [00:00<?, ?B/s]
|
| 168 |
+
t2v_res.jpg: 100%|██████████| 301k/301k [00:00<00:00, 197MB/s]
|
| 169 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/t2v_res.jpg
|
| 170 |
+
Downloading 'assets/vben_1.3b_vs_sota.png' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/yhawob5KxOUy3bpsGU-xOWB6FC8=.b7705db79f2e1428ec7a1e6fff8c4fbde062fb95bb233516ddbd04b20007c845.incomplete'
|
| 171 |
+
|
| 172 |
+
vben_1.3b_vs_sota.png: 0%| | 0.00/516k [00:00<?, ?B/s]
|
| 173 |
+
vben_1.3b_vs_sota.png: 100%|██████████| 516k/516k [00:00<00:00, 193MB/s]
|
| 174 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/vben_1.3b_vs_sota.png
|
| 175 |
+
Downloading 'assets/vben_vs_sota.png' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/p0uIb0aMIBdDB8sg9tk5UvunoB8=.9a0e86ca85046d2675f97984b88b6e74df07bba8a62a31ab8a1aef50d4eda44e.incomplete'
|
| 176 |
+
|
| 177 |
+
vben_vs_sota.png: 0%| | 0.00/1.55M [00:00<?, ?B/s]
|
| 178 |
+
vben_vs_sota.png: 100%|██████████| 1.55M/1.55M [00:00<00:00, 269MB/s]
|
| 179 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/vben_vs_sota.png
|
| 180 |
+
Downloading 'assets/video_dit_arch.jpg' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/PbT6aGUrWxKRPnz45UQ5EbqxKYE=.195dceec6570289d8b01cc51d2e28a7786216f19de55b23978a52610d1646a66.incomplete'
|
| 181 |
+
|
| 182 |
+
video_dit_arch.jpg: 0%| | 0.00/643k [00:00<?, ?B/s]
|
| 183 |
+
video_dit_arch.jpg: 100%|██████████| 643k/643k [00:00<00:00, 234MB/s]
|
| 184 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/video_dit_arch.jpg
|
| 185 |
+
Downloading 'assets/video_vae_res.jpg' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/assets/_r133FrlYqQbngOMpQWXWYhhvVM=.d8f9e7f7353848056a615c8ef35ab86ec22976bb46cb27405008b4089701945c.incomplete'
|
| 186 |
+
|
| 187 |
+
video_vae_res.jpg: 0%| | 0.00/213k [00:00<?, ?B/s]
|
| 188 |
+
video_vae_res.jpg: 100%|██████████| 213k/213k [00:00<00:00, 149MB/s]
|
| 189 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/assets/video_vae_res.jpg
|
| 190 |
+
Downloading 'config.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/8_PA_wEVGiVa2goH2H4KQOQpvVY=.7d6600f14008ce88cc609fe2aec20800e0adc235.incomplete'
|
| 191 |
+
|
| 192 |
+
config.json: 0%| | 0.00/252 [00:00<?, ?B/s]
|
| 193 |
+
config.json: 100%|██████████| 252/252 [00:00<00:00, 2.85MB/s]
|
| 194 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/config.json
|
| 195 |
+
Downloading 'diffusion_pytorch_model-00001-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/TusCHwBHv8F5BZbYqnLS5jI6Oyk=.c8644162efd3f6f7407daeff84f2e54f285cd3b2553e4c7282c0c7299c896df6.incomplete'
|
| 196 |
+
|
| 197 |
+
(…)pytorch_model-00001-of-00007.safetensors: 0%| | 0.00/9.95G [00:00<?, ?B/s]
|
| 198 |
+
(…)pytorch_model-00001-of-00007.safetensors: 1%|▏ | 147M/9.95G [00:01<01:07, 144MB/s]
|
| 199 |
+
(…)pytorch_model-00001-of-00007.safetensors: 5%|▍ | 461M/9.95G [00:02<00:39, 243MB/s]
|
| 200 |
+
(…)pytorch_model-00001-of-00007.safetensors: 12%|█▏ | 1.21G/9.95G [00:03<00:18, 470MB/s]
|
| 201 |
+
(…)pytorch_model-00001-of-00007.safetensors: 24%|██▍ | 2.43G/9.95G [00:04<00:09, 767MB/s]
|
| 202 |
+
(…)pytorch_model-00001-of-00007.safetensors: 36%|███▌ | 3.61G/9.95G [00:05<00:06, 910MB/s]
|
| 203 |
+
(…)pytorch_model-00001-of-00007.safetensors: 48%|████▊ | 4.75G/9.95G [00:06<00:05, 988MB/s]
|
| 204 |
+
(…)pytorch_model-00001-of-00007.safetensors: 60%|██████ | 5.99G/9.95G [00:07<00:03, 1.07GB/s]
|
| 205 |
+
(…)pytorch_model-00001-of-00007.safetensors: 72%|███████▏ | 7.18G/9.95G [00:08<00:02, 1.11GB/s]
|
| 206 |
+
(…)pytorch_model-00001-of-00007.safetensors: 83%|████████▎ | 8.29G/9.95G [00:09<00:01, 1.10GB/s]
|
| 207 |
+
(…)pytorch_model-00001-of-00007.safetensors: 97%|█████████▋| 9.62G/9.95G [00:10<00:00, 1.17GB/s]
|
| 208 |
+
(…)pytorch_model-00001-of-00007.safetensors: 100%|█████████▉| 9.95G/9.95G [00:10<00:00, 951MB/s]
|
| 209 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00001-of-00007.safetensors
|
| 210 |
+
Downloading 'diffusion_pytorch_model-00002-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/0mgWkIOF8w61grdJuC6SNWbL0jM=.2d83b7c06f9a8f6bece0adbc5cc0976f6618232672d475ba96a4559f30297b4c.incomplete'
|
| 211 |
+
|
| 212 |
+
(…)pytorch_model-00002-of-00007.safetensors: 0%| | 0.00/9.80G [00:00<?, ?B/s]
|
| 213 |
+
(…)pytorch_model-00002-of-00007.safetensors: 0%| | 31.5M/9.80G [00:01<05:18, 30.7MB/s]
|
| 214 |
+
(…)pytorch_model-00002-of-00007.safetensors: 2%|▏ | 157M/9.80G [00:02<01:52, 85.5MB/s]
|
| 215 |
+
(…)pytorch_model-00002-of-00007.safetensors: 7%|▋ | 650M/9.80G [00:03<00:34, 266MB/s]
|
| 216 |
+
(…)pytorch_model-00002-of-00007.safetensors: 17%|█▋ | 1.63G/9.80G [00:04<00:15, 541MB/s]
|
| 217 |
+
(…)pytorch_model-00002-of-00007.safetensors: 28%|██▊ | 2.74G/9.80G [00:05<00:09, 744MB/s]
|
| 218 |
+
(…)pytorch_model-00002-of-00007.safetensors: 40%|████ | 3.92G/9.80G [00:06<00:06, 888MB/s]
|
| 219 |
+
(…)pytorch_model-00002-of-00007.safetensors: 51%|█████ | 5.00G/9.80G [00:07<00:05, 948MB/s]
|
| 220 |
+
(…)pytorch_model-00002-of-00007.safetensors: 62%|██████▏ | 6.07G/9.80G [00:08<00:03, 986MB/s]
|
| 221 |
+
(…)pytorch_model-00002-of-00007.safetensors: 75%|███████▍ | 7.34G/9.80G [00:09<00:02, 1.07GB/s]
|
| 222 |
+
(…)pytorch_model-00002-of-00007.safetensors: 87%|████████▋ | 8.48G/9.80G [00:10<00:01, 1.09GB/s]
|
| 223 |
+
(…)pytorch_model-00002-of-00007.safetensors: 100%|█████████▉| 9.80G/9.80G [00:11<00:00, 1.16GB/s]
|
| 224 |
+
(…)pytorch_model-00002-of-00007.safetensors: 100%|█████████▉| 9.80G/9.80G [00:11<00:00, 866MB/s]
|
| 225 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00002-of-00007.safetensors
|
| 226 |
+
Downloading 'diffusion_pytorch_model-00003-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/RrFddTvKBkbcCyhBwL_6GROkS4M=.639cd888df76fda4e351de16c068f4feaf8165d4b60998bea60c9d9bd46a3635.incomplete'
|
| 227 |
+
|
| 228 |
+
(…)pytorch_model-00003-of-00007.safetensors: 0%| | 0.00/9.98G [00:00<?, ?B/s]
|
| 229 |
+
(…)pytorch_model-00003-of-00007.safetensors: 1%| | 83.9M/9.98G [00:01<02:12, 74.4MB/s]
|
| 230 |
+
(…)pytorch_model-00003-of-00007.safetensors: 5%|▍ | 472M/9.98G [00:02<00:38, 249MB/s]
|
| 231 |
+
(…)pytorch_model-00003-of-00007.safetensors: 12%|█▏ | 1.21G/9.98G [00:03<00:19, 457MB/s]
|
| 232 |
+
(…)pytorch_model-00003-of-00007.safetensors: 24%|██▍ | 2.41G/9.98G [00:04<00:10, 745MB/s]
|
| 233 |
+
(…)pytorch_model-00003-of-00007.safetensors: 37%|███▋ | 3.69G/9.98G [00:05<00:06, 934MB/s]
|
| 234 |
+
(…)pytorch_model-00003-of-00007.safetensors: 48%|████▊ | 4.81G/9.98G [00:06<00:05, 990MB/s]
|
| 235 |
+
(…)pytorch_model-00003-of-00007.safetensors: 59%|█████▉ | 5.92G/9.98G [00:07<00:03, 1.03GB/s]
|
| 236 |
+
(…)pytorch_model-00003-of-00007.safetensors: 71%|███████▏ | 7.12G/9.98G [00:08<00:02, 1.08GB/s]
|
| 237 |
+
(…)pytorch_model-00003-of-00007.safetensors: 83%|████████▎ | 8.26G/9.98G [00:09<00:01, 1.09GB/s]
|
| 238 |
+
(…)pytorch_model-00003-of-00007.safetensors: 95%|█████████▌| 9.51G/9.98G [00:10<00:00, 1.14GB/s]
|
| 239 |
+
(…)pytorch_model-00003-of-00007.safetensors: 100%|█████████▉| 9.98G/9.98G [00:10<00:00, 937MB/s]
|
| 240 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00003-of-00007.safetensors
|
| 241 |
+
Downloading 'diffusion_pytorch_model-00004-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/eoIKNPAzW9oI98foXV-4GQp_8Zs=.233e26c807e334325efee1b9e449bc4a4eb8cbb4c98021549892ef1dbde729ea.incomplete'
|
| 242 |
+
|
| 243 |
+
(…)pytorch_model-00004-of-00007.safetensors: 0%| | 0.00/9.98G [00:00<?, ?B/s]
|
| 244 |
+
(…)pytorch_model-00004-of-00007.safetensors: 1%| | 83.9M/9.98G [00:01<03:44, 44.0MB/s]
|
| 245 |
+
(…)pytorch_model-00004-of-00007.safetensors: 7%|▋ | 713M/9.98G [00:02<00:32, 289MB/s]
|
| 246 |
+
(…)pytorch_model-00004-of-00007.safetensors: 19%|█▉ | 1.90G/9.98G [00:04<00:13, 610MB/s]
|
| 247 |
+
(…)pytorch_model-00004-of-00007.safetensors: 32%|███▏ | 3.24G/9.98G [00:05<00:07, 860MB/s]
|
| 248 |
+
(…)pytorch_model-00004-of-00007.safetensors: 44%|████▍ | 4.37G/9.98G [00:06<00:05, 949MB/s]
|
| 249 |
+
(…)pytorch_model-00004-of-00007.safetensors: 55%|█████▌ | 5.53G/9.98G [00:07<00:04, 1.01GB/s]
|
| 250 |
+
(…)pytorch_model-00004-of-00007.safetensors: 67%|██████▋ | 6.70G/9.98G [00:08<00:03, 1.06GB/s]
|
| 251 |
+
(…)pytorch_model-00004-of-00007.safetensors: 78%|███████▊ | 7.80G/9.98G [00:09<00:02, 1.07GB/s]
|
| 252 |
+
(…)pytorch_model-00004-of-00007.safetensors: 89%|████████▉ | 8.90G/9.98G [00:10<00:01, 1.06GB/s]
|
| 253 |
+
(…)pytorch_model-00004-of-00007.safetensors: 100%|█████████▉| 9.98G/9.98G [00:11<00:00, 898MB/s]
|
| 254 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00004-of-00007.safetensors
|
| 255 |
+
Downloading 'diffusion_pytorch_model-00005-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/RfDE4h3Z7cDjb6DoM7VNCRiEmHc=.37d447fb11df9f2ea5cf19210b97f724445c38e65cb097ada78be9dca3014762.incomplete'
|
| 256 |
+
|
| 257 |
+
(…)pytorch_model-00005-of-00007.safetensors: 0%| | 0.00/9.90G [00:00<?, ?B/s]
|
| 258 |
+
(…)pytorch_model-00005-of-00007.safetensors: 0%| | 21.0M/9.90G [00:01<09:56, 16.6MB/s]
|
| 259 |
+
(…)pytorch_model-00005-of-00007.safetensors: 1%| | 62.9M/9.90G [00:02<05:33, 29.5MB/s]
|
| 260 |
+
(…)pytorch_model-00005-of-00007.safetensors: 3%|▎ | 294M/9.90G [00:03<01:23, 115MB/s]
|
| 261 |
+
(…)pytorch_model-00005-of-00007.safetensors: 9%|▉ | 881M/9.90G [00:04<00:30, 292MB/s]
|
| 262 |
+
(…)pytorch_model-00005-of-00007.safetensors: 21%|██ | 2.10G/9.90G [00:05<00:12, 615MB/s]
|
| 263 |
+
(…)pytorch_model-00005-of-00007.safetensors: 33%|███▎ | 3.22G/9.90G [00:06<00:08, 774MB/s]
|
| 264 |
+
(…)pytorch_model-00005-of-00007.safetensors: 43%|████▎ | 4.25G/9.90G [00:07<00:06, 852MB/s]
|
| 265 |
+
(…)pytorch_model-00005-of-00007.safetensors: 53%|█████▎ | 5.30G/9.90G [00:08<00:05, 913MB/s]
|
| 266 |
+
(…)pytorch_model-00005-of-00007.safetensors: 64%|██████▍ | 6.32G/9.90G [00:09<00:03, 947MB/s]
|
| 267 |
+
(…)pytorch_model-00005-of-00007.safetensors: 75%|███████▍ | 7.41G/9.90G [00:10<00:02, 991MB/s]
|
| 268 |
+
(…)pytorch_model-00005-of-00007.safetensors: 85%|████████▍ | 8.41G/9.90G [00:11<00:01, 929MB/s]
|
| 269 |
+
(…)pytorch_model-00005-of-00007.safetensors: 96%|█████████▌| 9.49G/9.90G [00:12<00:00, 972MB/s]
|
| 270 |
+
(…)pytorch_model-00005-of-00007.safetensors: 100%|█████████▉| 9.90G/9.90G [00:13<00:00, 754MB/s]
|
| 271 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00005-of-00007.safetensors
|
| 272 |
+
Downloading 'diffusion_pytorch_model-00006-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/ng5vzW2zk3Pt29FJiEGVIhHVDkI=.fdb1682702f7af79fadd9a35707310d5e500195f247e663aa39fabf85b213458.incomplete'
|
| 273 |
+
|
| 274 |
+
(…)pytorch_model-00006-of-00007.safetensors: 0%| | 0.00/9.90G [00:00<?, ?B/s]
|
| 275 |
+
(…)pytorch_model-00006-of-00007.safetensors: 1%| | 105M/9.90G [00:01<01:43, 94.4MB/s]
|
| 276 |
+
(…)pytorch_model-00006-of-00007.safetensors: 6%|▌ | 545M/9.90G [00:02<00:32, 287MB/s]
|
| 277 |
+
(…)pytorch_model-00006-of-00007.safetensors: 15%|█▍ | 1.48G/9.90G [00:03<00:14, 571MB/s]
|
| 278 |
+
(…)pytorch_model-00006-of-00007.safetensors: 25%|██▌ | 2.52G/9.90G [00:04<00:09, 750MB/s]
|
| 279 |
+
(…)pytorch_model-00006-of-00007.safetensors: 35%|███▌ | 3.49G/9.90G [00:05<00:07, 827MB/s]
|
| 280 |
+
(…)pytorch_model-00006-of-00007.safetensors: 46%|████▋ | 4.59G/9.90G [00:06<00:05, 914MB/s]
|
| 281 |
+
(…)pytorch_model-00006-of-00007.safetensors: 57%|█████▋ | 5.62G/9.90G [00:07<00:04, 950MB/s]
|
| 282 |
+
(…)pytorch_model-00006-of-00007.safetensors: 67%|██████▋ | 6.65G/9.90G [00:08<00:03, 967MB/s]
|
| 283 |
+
(…)pytorch_model-00006-of-00007.safetensors: 77%|███████▋ | 7.62G/9.90G [00:09<00:02, 948MB/s]
|
| 284 |
+
(…)pytorch_model-00006-of-00007.safetensors: 87%|████████▋ | 8.59G/9.90G [00:10<00:01, 951MB/s]
|
| 285 |
+
(…)pytorch_model-00006-of-00007.safetensors: 99%|█████████▊| 9.76G/9.90G [00:11<00:00, 1.01GB/s]
|
| 286 |
+
(…)pytorch_model-00006-of-00007.safetensors: 100%|█████████▉| 9.90G/9.90G [00:11<00:00, 859MB/s]
|
| 287 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00006-of-00007.safetensors
|
| 288 |
+
Downloading 'diffusion_pytorch_model-00007-of-00007.safetensors' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/uCtE_F0oILZScKSho7gFwN4WDjM=.c7a8b9e7c73e999a71ac3c6a0d21ed7cdd825292e557043240cb67555946f898.incomplete'
|
| 289 |
+
|
| 290 |
+
(…)pytorch_model-00007-of-00007.safetensors: 0%| | 0.00/6.08G [00:00<?, ?B/s]
|
| 291 |
+
(…)pytorch_model-00007-of-00007.safetensors: 1%|▏ | 83.9M/6.08G [00:01<01:16, 78.3MB/s]
|
| 292 |
+
(…)pytorch_model-00007-of-00007.safetensors: 3%|▎ | 168M/6.08G [00:02<01:13, 80.4MB/s]
|
| 293 |
+
(…)pytorch_model-00007-of-00007.safetensors: 13%|█▎ | 818M/6.08G [00:03<00:15, 334MB/s]
|
| 294 |
+
(…)pytorch_model-00007-of-00007.safetensors: 29%|██▉ | 1.78G/6.08G [00:04<00:07, 579MB/s]
|
| 295 |
+
(…)pytorch_model-00007-of-00007.safetensors: 47%|████▋ | 2.87G/6.08G [00:05<00:04, 758MB/s]
|
| 296 |
+
(…)pytorch_model-00007-of-00007.safetensors: 65%|██████▍ | 3.94G/6.08G [00:06<00:02, 862MB/s]
|
| 297 |
+
(…)pytorch_model-00007-of-00007.safetensors: 81%|████████ | 4.89G/6.08G [00:07<00:01, 889MB/s]
|
| 298 |
+
(…)pytorch_model-00007-of-00007.safetensors: 100%|█████████▉| 6.08G/6.08G [00:08<00:00, 746MB/s]
|
| 299 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model-00007-of-00007.safetensors
|
| 300 |
+
Downloading 'diffusion_pytorch_model.safetensors.index.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/VpHHFEQcyqWBKjkjOBMoMr6uTZU=.80eeb785b6883fed5dea25410ebbe03d3e024a71.incomplete'
|
| 301 |
+
|
| 302 |
+
(…)ion_pytorch_model.safetensors.index.json: 0%| | 0.00/117k [00:00<?, ?B/s]
|
| 303 |
+
(…)ion_pytorch_model.safetensors.index.json: 100%|██████████| 117k/117k [00:00<00:00, 46.5MB/s]
|
| 304 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/diffusion_pytorch_model.safetensors.index.json
|
| 305 |
+
Downloading 'examples/i2v_input.JPG' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/examples/GqO1vCXUoNdTZc6wjxo1L7sjRdI=.077e3d965090c9028c69c00931675f42e1acc815c6eb450ab291b3b72d211a8e.incomplete'
|
| 306 |
+
|
| 307 |
+
i2v_input.JPG: 0%| | 0.00/251k [00:00<?, ?B/s]
|
| 308 |
+
i2v_input.JPG: 100%|██████████| 251k/251k [00:00<00:00, 66.1MB/s]
|
| 309 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/examples/i2v_input.JPG
|
| 310 |
+
Downloading 'google/umt5-xxl/special_tokens_map.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/google/umt5-xxl/ahkChHUJFxEmOdq5GDFEmerRzCY=.14855e7052ffbb595057dfd791d293c1c940db2c.incomplete'
|
| 311 |
+
|
| 312 |
+
special_tokens_map.json: 0%| | 0.00/6.62k [00:00<?, ?B/s]
|
| 313 |
+
special_tokens_map.json: 100%|██████████| 6.62k/6.62k [00:00<00:00, 54.9MB/s]
|
| 314 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/google/umt5-xxl/special_tokens_map.json
|
| 315 |
+
Downloading 'google/umt5-xxl/spiece.model' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/google/umt5-xxl/vj8E1loknrCNPSP8nWJC234Bff4=.e3909a67b780650b35cf529ac782ad2b6b26e6d1f849d3fbb6a872905f452458.incomplete'
|
| 316 |
+
|
| 317 |
+
spiece.model: 0%| | 0.00/4.55M [00:00<?, ?B/s]
|
| 318 |
+
spiece.model: 100%|██████████| 4.55M/4.55M [00:00<00:00, 93.4MB/s]
|
| 319 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/google/umt5-xxl/spiece.model
|
| 320 |
+
Downloading 'google/umt5-xxl/tokenizer.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/google/umt5-xxl/HgM_lKo9sdSCfRtVg7MMFS7EKqo=.6e197b4d3dbd71da14b4eb255f4fa91c9c1f2068b20a2de2472967ca3d22602b.incomplete'
|
| 321 |
+
|
| 322 |
+
tokenizer.json: 0%| | 0.00/16.8M [00:00<?, ?B/s]
|
| 323 |
+
tokenizer.json: 100%|██████████| 16.8M/16.8M [00:00<00:00, 122MB/s]
|
| 324 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/google/umt5-xxl/tokenizer.json
|
| 325 |
+
Downloading 'google/umt5-xxl/tokenizer_config.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/google/umt5-xxl/vzaExXFZNBay89bvlQv-ZcI6BTg=.4e1cc1cd85599ce0b47fd0a746af188fe4043ff2.incomplete'
|
| 326 |
+
|
| 327 |
+
tokenizer_config.json: 0%| | 0.00/61.7k [00:00<?, ?B/s]
|
| 328 |
+
tokenizer_config.json: 100%|██████████| 61.7k/61.7k [00:00<00:00, 249MB/s]
|
| 329 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/google/umt5-xxl/tokenizer_config.json
|
| 330 |
+
Downloading 'models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/9vfmgVBoIZacPKu7FduBDVrfx90=.628c9998b613391f193eb67ff68da9667d75f492911e4eb3decf23460a158c38.incomplete'
|
| 331 |
+
|
| 332 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 0%| | 0.00/4.77G [00:00<?, ?B/s]
|
| 333 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 2%|▏ | 73.4M/4.77G [00:01<01:15, 62.6MB/s]
|
| 334 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 8%|▊ | 398M/4.77G [00:02<00:21, 206MB/s]
|
| 335 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 22%|██▏ | 1.05G/4.77G [00:03<00:09, 395MB/s]
|
| 336 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 42%|████▏ | 1.98G/4.77G [00:04<00:04, 600MB/s]
|
| 337 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 64%|██████▎ | 3.03G/4.77G [00:05<00:02, 758MB/s]
|
| 338 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 86%|████████▌ | 4.10G/4.77G [00:06<00:00, 861MB/s]
|
| 339 |
+
(…)n-clip-xlm-roberta-large-vit-huge-14.pth: 100%|█████████▉| 4.77G/4.77G [00:06<00:00, 697MB/s]
|
| 340 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth
|
| 341 |
+
Downloading 'models_t5_umt5-xxl-enc-bf16.pth' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/7xjTyx9p9-CteGiI3VEINu_Ohx0=.7cace0da2b446bbbbc57d031ab6cf163a3d59b366da94e5afe36745b746fd81d.incomplete'
|
| 342 |
+
|
| 343 |
+
models_t5_umt5-xxl-enc-bf16.pth: 0%| | 0.00/11.4G [00:00<?, ?B/s]
|
| 344 |
+
models_t5_umt5-xxl-enc-bf16.pth: 2%|▏ | 210M/11.4G [00:01<00:53, 207MB/s]
|
| 345 |
+
models_t5_umt5-xxl-enc-bf16.pth: 4%|▍ | 430M/11.4G [00:02<00:51, 212MB/s]
|
| 346 |
+
models_t5_umt5-xxl-enc-bf16.pth: 10%|▉ | 1.10G/11.4G [00:03<00:24, 418MB/s]
|
| 347 |
+
models_t5_umt5-xxl-enc-bf16.pth: 19%|█▉ | 2.15G/11.4G [00:04<00:13, 659MB/s]
|
| 348 |
+
models_t5_umt5-xxl-enc-bf16.pth: 29%|██▉ | 3.31G/11.4G [00:05<00:09, 838MB/s]
|
| 349 |
+
models_t5_umt5-xxl-enc-bf16.pth: 39%|███▉ | 4.44G/11.4G [00:06<00:07, 933MB/s]
|
| 350 |
+
models_t5_umt5-xxl-enc-bf16.pth: 47%|████▋ | 5.38G/11.4G [00:07<00:06, 891MB/s]
|
| 351 |
+
models_t5_umt5-xxl-enc-bf16.pth: 56%|█████▋ | 6.42G/11.4G [00:08<00:05, 935MB/s]
|
| 352 |
+
models_t5_umt5-xxl-enc-bf16.pth: 65%|██████▌ | 7.42G/11.4G [00:09<00:04, 957MB/s]
|
| 353 |
+
models_t5_umt5-xxl-enc-bf16.pth: 75%|███████▍ | 8.51G/11.4G [00:10<00:02, 995MB/s]
|
| 354 |
+
models_t5_umt5-xxl-enc-bf16.pth: 84%|████████▍ | 9.52G/11.4G [00:11<00:01, 969MB/s]
|
| 355 |
+
models_t5_umt5-xxl-enc-bf16.pth: 92%|█████████▏| 10.5G/11.4G [00:12<00:00, 942MB/s]
|
| 356 |
+
models_t5_umt5-xxl-enc-bf16.pth: 100%|█████████▉| 11.4G/11.4G [00:13<00:00, 862MB/s]
|
| 357 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/models_t5_umt5-xxl-enc-bf16.pth
|
| 358 |
+
Downloading 'xlm-roberta-large/sentencepiece.bpe.model' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/xlm-roberta-large/TXm7Ys-HnGKK11f8pj82ppdReFk=.cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865.incomplete'
|
| 359 |
+
|
| 360 |
+
sentencepiece.bpe.model: 0%| | 0.00/5.07M [00:00<?, ?B/s]
|
| 361 |
+
sentencepiece.bpe.model: 100%|██████████| 5.07M/5.07M [00:00<00:00, 106MB/s]
|
| 362 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/xlm-roberta-large/sentencepiece.bpe.model
|
| 363 |
+
Downloading 'xlm-roberta-large/special_tokens_map.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/xlm-roberta-large/ahkChHUJFxEmOdq5GDFEmerRzCY=.d5698132694f4f1bcff08fa7d937b1701812598e.incomplete'
|
| 364 |
+
|
| 365 |
+
special_tokens_map.json: 0%| | 0.00/280 [00:00<?, ?B/s]
|
| 366 |
+
special_tokens_map.json: 100%|██████████| 280/280 [00:00<00:00, 2.98MB/s]
|
| 367 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/xlm-roberta-large/special_tokens_map.json
|
| 368 |
+
Downloading 'xlm-roberta-large/tokenizer.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/xlm-roberta-large/HgM_lKo9sdSCfRtVg7MMFS7EKqo=.62c24cdc13d4c9952d63718d6c9fa4c287974249e16b7ade6d5a85e7bbb75626.incomplete'
|
| 369 |
+
|
| 370 |
+
tokenizer.json: 0%| | 0.00/17.1M [00:00<?, ?B/s]
|
| 371 |
+
tokenizer.json: 100%|██████████| 17.1M/17.1M [00:00<00:00, 142MB/s]
|
| 372 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/xlm-roberta-large/tokenizer.json
|
| 373 |
+
Downloading 'xlm-roberta-large/tokenizer_config.json' to 'Wan2.1-FLF2V-14B-720P/.cache/huggingface/download/xlm-roberta-large/vzaExXFZNBay89bvlQv-ZcI6BTg=.6de1940d16d38be9877bf7cc228c9377841b311f.incomplete'
|
| 374 |
+
|
| 375 |
+
tokenizer_config.json: 0%| | 0.00/418 [00:00<?, ?B/s]
|
| 376 |
+
tokenizer_config.json: 100%|██████████| 418/418 [00:00<00:00, 3.57MB/s]
|
| 377 |
+
Download complete. Moving file to Wan2.1-FLF2V-14B-720P/xlm-roberta-large/tokenizer_config.json
|
| 378 |
+
/home/user/app/Wan2.1-FLF2V-14B-720P
|
| 379 |
+
Successfully downloaded Wan-AI/Wan2.1-FLF2V-14B-720P
|
| 380 |
+
WARNING: Critical model file missing: Wan2.1-VACE-1.3B/models_wannormconv_flf_1.3B_fsdp8.pth
|
| 381 |
+
The application may not work properly without this file.
|
| 382 |
INFO: Started server process [1]
|
| 383 |
INFO: Waiting for application startup.
|
| 384 |
INFO: Application startup complete.
|
| 385 |
INFO: Uvicorn running on http://0.0.0.0:7860 (Press CTRL+C to quit)
|
| 386 |
Invalid port: '7861config'
|
| 387 |
+
INFO: 127.0.0.1:58042 - "GET /config HTTP/1.1" 200 OK
|
| 388 |
Invalid port: '7861gradio_apiinfo'
|
| 389 |
+
INFO: 127.0.0.1:58046 - "GET /gradio_api/info HTTP/1.1" 200 OK
|
| 390 |
+
INFO: 10.16.1.188:15435 - "GET /?logs=container&__theme=system HTTP/1.1" 200 OK
|
| 391 |
Invalid port: '7861theme.css'
|
| 392 |
+
INFO: 10.16.14.254:60894 - "GET /theme.css?v=63194d3741d384f9f85db890247b6c0ef9e7abac0f297f40a15c59fe4baba916 HTTP/1.1" 200 OK
|
|
|
|
|
|
|
|
|
|
| 393 |
Invalid port: '7861staticfontsui-sans-serifui-sans-serif-Regular.woff2'
|
| 394 |
+
INFO: 10.16.17.21:14017 - "GET /static/fonts/ui-sans-serif/ui-sans-serif-Regular.woff2 HTTP/1.1" 404 Not Found
|
|
|
|
|
|
|
|
|
|
| 395 |
Invalid port: '7861config'
|
| 396 |
+
INFO: 10.16.32.173:6061 - "GET /config HTTP/1.1" 200 OK
|
| 397 |
+
Invalid port: '7861staticfontssystem-uisystem-ui-Regular.woff2'
|
| 398 |
+
INFO: 10.16.17.21:14017 - "GET /static/fonts/system-ui/system-ui-Regular.woff2 HTTP/1.1" 404 Not Found
|
| 399 |
Invalid port: '7861gradio_apiinfo'
|
| 400 |
+
INFO: 10.16.1.188:15435 - "GET /gradio_api/info HTTP/1.1" 200 OK
|
| 401 |
Invalid port: '7861staticfontsui-sans-serifui-sans-serif-Bold.woff2'
|
| 402 |
+
INFO: 10.16.17.21:14017 - "GET /static/fonts/ui-sans-serif/ui-sans-serif-Bold.woff2 HTTP/1.1" 404 Not Found
|
| 403 |
Invalid port: '7861staticfontssystem-uisystem-ui-Bold.woff2'
|
| 404 |
+
INFO: 10.16.32.173:6061 - "GET /static/fonts/system-ui/system-ui-Bold.woff2 HTTP/1.1" 404 Not Found
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 405 |
Invalid port: '7861gradio_apiupload_progress'
|
| 406 |
Invalid port: '7861gradio_apiupload'
|
| 407 |
+
INFO: 10.16.14.254:59847 - "GET /gradio_api/upload_progress?upload_id=w40o6l8rusa HTTP/1.1" 200 OK
|
| 408 |
+
INFO: 10.16.17.21:19775 - "POST /gradio_api/upload?upload_id=w40o6l8rusa HTTP/1.1" 200 OK
|
| 409 |
+
Invalid port: '7861gradio_apifile=tmpgradio602ff6b7631f65b7737c7939872757d9304a813804e784938af4b089b860963bComfyUI_00001_sexxy_1748623055.png'
|
| 410 |
+
INFO: 10.16.17.21:19775 - "GET /gradio_api/file%3D/tmp/gradio/602ff6b7631f65b7737c7939872757d9304a813804e784938af4b089b860963b/ComfyUI_00001_sexxy_1748623055.png HTTP/1.1" 200 OK
|
|
|
|
|
|
|
|
|
|
|
|
|
| 411 |
Invalid port: '7861gradio_apiqueuejoin'
|
| 412 |
+
Invalid port: '7861staticfontsIBMPlexMonoIBMPlexMono-Regular.woff2'
|
| 413 |
+
INFO: 10.16.1.188:63086 - "POST /gradio_api/queue/join?logs=container&__theme=system HTTP/1.1" 200 OK
|
| 414 |
+
INFO: 10.16.1.188:47808 - "GET /static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 HTTP/1.1" 200 OK
|
| 415 |
Invalid port: '7861gradio_apiqueuedata'
|
| 416 |
+
INFO: 10.16.32.173:11555 - "GET /gradio_api/queue/data?session_hash=2w8368xeq76 HTTP/1.1" 200 OK
|
| 417 |
+
Command failed: /home/user/.pyenv/versions/3.10.18/bin/python /home/user/app/Wan2.1/generate.py --task vace-1.3B --size 832*480 --ckpt_dir /home/user/app/Wan2.1-VACE-1.3B --src_ref_images /tmp/tmptu_twu74/ref.png --frame_num 1 --prompt Changed to wearing a recruit suit.
|
| 418 |
+
Error:
|
| 419 |
+
|
| 420 |
+
0%| | 0/50 [00:00<?, ?it/s]
|
| 421 |
+
0%| | 0/50 [00:00<?, ?it/s]
|
| 422 |
+
Traceback (most recent call last):
|
| 423 |
File "/home/user/app/Wan2.1/generate.py", line 587, in <module>
|
| 424 |
generate(args)
|
| 425 |
+
File "/home/user/app/Wan2.1/generate.py", line 541, in generate
|
| 426 |
+
video = wan_vace.generate(
|
| 427 |
+
File "/home/user/app/Wan2.1/wan/vace.py", line 436, in generate
|
| 428 |
+
noise_pred_cond = self.model(
|
| 429 |
+
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1736, in _wrapped_call_impl
|
| 430 |
+
return self._call_impl(*args, **kwargs)
|
| 431 |
+
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1747, in _call_impl
|
| 432 |
+
return forward_call(*args, **kwargs)
|
| 433 |
+
File "/home/user/app/Wan2.1/wan/modules/vace_model.py", line 238, in forward
|
| 434 |
+
hints = self.forward_vace(x, vace_context, seq_len, kwargs)
|
| 435 |
+
File "/home/user/app/Wan2.1/wan/modules/vace_model.py", line 151, in forward_vace
|
| 436 |
+
c, c_skip = block(c, **new_kwargs)
|
| 437 |
+
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1736, in _wrapped_call_impl
|
| 438 |
+
return self._call_impl(*args, **kwargs)
|
| 439 |
+
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1747, in _call_impl
|
| 440 |
+
return forward_call(*args, **kwargs)
|
| 441 |
+
File "/home/user/app/Wan2.1/wan/modules/vace_model.py", line 37, in forward
|
| 442 |
+
c = super().forward(c, **kwargs)
|
| 443 |
+
File "/home/user/app/Wan2.1/wan/modules/model.py", line 302, in forward
|
| 444 |
+
y = self.self_attn(
|
| 445 |
+
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1736, in _wrapped_call_impl
|
| 446 |
+
return self._call_impl(*args, **kwargs)
|
| 447 |
+
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1747, in _call_impl
|
| 448 |
+
return forward_call(*args, **kwargs)
|
| 449 |
+
File "/home/user/app/Wan2.1/wan/modules/model.py", line 149, in forward
|
| 450 |
+
x = flash_attention(
|
| 451 |
+
File "/home/user/app/Wan2.1/wan/modules/attention.py", line 112, in flash_attention
|
| 452 |
+
assert FLASH_ATTN_2_AVAILABLE
|
| 453 |
+
AssertionError
|
| 454 |
|
| 455 |
Traceback (most recent call last):
|
| 456 |
+
File "/home/user/app/app.py", line 138, in image_ui
|
| 457 |
+
generate_image(ref_path, prompt, output)
|
| 458 |
+
File "/home/user/app/wan_runner.py", line 141, in generate_image
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 459 |
run_cmd([
|
| 460 |
File "/home/user/app/wan_runner.py", line 14, in run_cmd
|
| 461 |
result = subprocess.run(cmd, check=True, capture_output=True, text=True)
|
| 462 |
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/subprocess.py", line 526, in run
|
| 463 |
raise CalledProcessError(retcode, process.args,
|
| 464 |
+
subprocess.CalledProcessError: Command '['/home/user/.pyenv/versions/3.10.18/bin/python', '/home/user/app/Wan2.1/generate.py', '--task', 'vace-1.3B', '--size', '832*480', '--ckpt_dir', '/home/user/app/Wan2.1-VACE-1.3B', '--src_ref_images', '/tmp/tmptu_twu74/ref.png', '--frame_num', '1', '--prompt', 'Changed to wearing a recruit suit.']' returned non-zero exit status 1.
|
| 465 |
+
|
| 466 |
+
During handling of the above exception, another exception occurred:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 467 |
|
| 468 |
Traceback (most recent call last):
|
| 469 |
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
|
|
|
|
| 482 |
result = context.run(func, *args)
|
| 483 |
File "/home/user/.pyenv/versions/3.10.18/lib/python3.10/site-packages/gradio/utils.py", line 904, in wrapper
|
| 484 |
response = f(*args, **kwargs)
|
| 485 |
+
File "/home/user/app/app.py", line 143, in image_ui
|
| 486 |
+
raise gr.Error(f"画像生成エラー: {str(e)}")
|
| 487 |
+
gradio.exceptions.Error: "画像生成エラー: Command '['/home/user/.pyenv/versions/3.10.18/bin/python', '/home/user/app/Wan2.1/generate.py', '--task', 'vace-1.3B', '--size', '832*480', '--ckpt_dir', '/home/user/app/Wan2.1-VACE-1.3B', '--src_ref_images', '/tmp/tmptu_twu74/ref.png', '--frame_num', '1', '--prompt', 'Changed to wearing a recruit suit.']' returned non-zero exit status 1."
|
| 488 |
+
Invalid port: '7861gradio_apiupload_progress'
|
| 489 |
+
Invalid port: '7861gradio_apiupload'
|
| 490 |
+
INFO: 10.16.32.173:30369 - "GET /gradio_api/upload_progress?upload_id=asnzvdxlrgj HTTP/1.1" 200 OK
|
| 491 |
+
INFO: 10.16.1.188:34742 - "POST /gradio_api/upload?upload_id=asnzvdxlrgj HTTP/1.1" 200 OK
|
| 492 |
+
Invalid port: '7861gradio_apiupload_progress'
|
| 493 |
+
Invalid port: '7861gradio_apiupload'
|
| 494 |
+
INFO: 10.16.14.254:33133 - "GET /gradio_api/upload_progress?upload_id=ei0u7v2ppws HTTP/1.1" 200 OK
|
| 495 |
+
INFO: 10.16.14.254:49182 - "POST /gradio_api/upload?upload_id=ei0u7v2ppws HTTP/1.1" 200 OK
|
| 496 |
+
Invalid port: '7861gradio_apiupload_progress'
|
| 497 |
+
Invalid port: '7861gradio_apiupload'
|
| 498 |
+
INFO: 10.16.14.254:33133 - "GET /gradio_api/upload_progress?upload_id=ucgegxity9a HTTP/1.1" 200 OK
|
| 499 |
+
INFO: 10.16.14.254:65335 - "POST /gradio_api/upload?upload_id=ucgegxity9a HTTP/1.1" 200 OK
|
| 500 |
+
Invalid port: '7861gradio_apiqueuejoin'
|
| 501 |
+
INFO: 10.16.32.173:40210 - "POST /gradio_api/queue/join?logs=container&__theme=system HTTP/1.1" 200 OK
|
| 502 |
+
Invalid port: '7861gradio_apiqueuedata'
|
| 503 |
+
INFO: 10.16.1.188:27325 - "GET /gradio_api/queue/data?session_hash=2w8368xeq76 HTTP/1.1" 200 OK
|
| 504 |
+
VACE preprocessing not available, using fallback method
|
| 505 |
+
|