corridorkey-web / RunInferenceOnly.sh
kingman7785's picture
Upload folder using huggingface_hub
c309bf4 verified
Raw
History Blame Contribute Delete
470 Bytes
#!/usr/bin/env bash
# Ensure script stops on error
set -e
# Path to script directory
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Enable OpenEXR Support
export OPENCV_IO_ENABLE_OPENEXR=1
echo "Starting CorridorKey Inference..."
echo "Scanning ClipsForInference for Ready Clips (Input + Alpha)..."
# Run via uv entry point (handles the virtual environment automatically)
uv run corridorkey run-inference
echo "Inference Complete."