The
CamDistill repo provides a one-line entry point that applies the official
prompt and the exact video settings used for training and evaluation:
1python camera_movement_sft/infer_single.py \
2 --model ddz16/CamSFT-8B \
3 --video /path/to/video.mp4
1from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
2
3model = Qwen3VLForConditionalGeneration.from_pretrained(
4 "ddz16/CamSFT-8B", dtype="bfloat16", device_map="auto"
5)
6processor = AutoProcessor.from_pretrained("ddz16/CamSFT-8B")
The exact system/user prompt and the video preprocessing (fps, max frames, resolution) are
provided in the
CamDistill repo; using them is required to reproduce the paper's results.