#!/bin/bash # Inference: Context K=20 # Corresponds to: train/context_learning/run_pre_qkv_ctx20.sh set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "${SCRIPT_DIR}/common_env.sh" : "${CKPT:?ERROR: set CKPT to your context_k20 checkpoint path}" OUTPUT="${INFER_OUTPUT_ROOT}/context_k20_$(date +%Y%m%d_%H%M%S).mp4" EXTRA_ARGS=() if [ -n "${CONTEXT_IMAGE}" ]; then EXTRA_ARGS+=(--context_image "${CONTEXT_IMAGE}") fi if [ -n "${ACTION_PATH}" ]; then EXTRA_ARGS+=(--action_path "${ACTION_PATH}") fi python inference/unified_inference.py \ --ckpt "${CKPT}" \ --memory_type context_k20 \ --base_model "${WAN_BASE_MODEL}" \ --prompt "${PROMPT}" \ "${EXTRA_ARGS[@]}" \ --height "${HEIGHT}" --width "${WIDTH}" --num_frames "${NUM_FRAMES}" \ --seed "${SEED}" --num_inference_steps "${NUM_INFERENCE_STEPS}" \ --sigma_shift "${SIGMA_SHIFT}" --cfg_scale "${CFG_SCALE}" --fps "${FPS}" \ --output_path "${OUTPUT}"