Views
No views yet
Anonymous release under double-blind review at NeurIPS 2026 Datasets and Benchmarks Track. Author list and DOI updated after deanonymization.
.
├── inference_example.py run ViTeX-Edit-14B on one (video, mask, glyph) tuple
├── make_corp_baseline.py build the ViTeX-Edit-14B (Composite) variant
├── vitex_14b.safetensors (8 GB, trained adapter weights)
├── diffsynth/ bundled inference library
└── base_model/ (70 GB, frozen DiT + T5-XXL + Wan VAE)| Input | Format |
|---|---|
vace_video | RGB, 720 × 1280, 121 frames — source video |
vace_mask | grayscale, same shape — 1 = text region to replace |
glyph_video | RGB, same shape — pre-rendered target-text glyphs warped along source motion |
prompt | text string — the target text |
1git lfs install
2git clone https://huggingface.co/ViTeX-Bench/ViTeX-Edit-14B && cd ViTeX-Edit-14B
3conda create -n vitex python=3.12 -y && conda activate vitex
4pip install -r requirements.txt
5
6python inference_example.py \
7 --vace_video path/to/source.mp4 \
8 --vace_mask path/to/mask.mp4 \
9 --glyph_video path/to/target_glyph.mp4 \
10 --prompt "HILTON" \
11 --output out.mp4make_corp_baseline.py is a deterministic, training-free post-processing wrapper. Two per-frame operations: (1) Reinhard mean–variance LAB color matching against the source's local lighting; (2) signed-distance feathered alpha compositing onto the source. Inside the mask the result is the predicted glyphs (color-matched); outside the feather it is byte-identical to the source. Locality metrics rise to near-Identity while SeqAcc / CharAcc move within ~0.01 of raw ViTeX-Edit-14B.1python make_corp_baseline.py \
2 --records <data_root>/parsed_records.json \
3 --data_root <data_root> \
4 --pred_dir <raw_vitex14b_predictions_dir> \
5 --out_dir <output_dir_for_composite_baseline> \
6 --workers 8base_model/LICENSE.txt for the upstream base-model license.1@misc{vitex2026,
2 title = {ViTeX-Bench: Benchmarking High Fidelity Video Scene Text Editing},
3 author = {Anonymous},
4 year = {2026},
5 note = {Submitted to NeurIPS 2026 Datasets and Benchmarks Track. Author list and DOI updated after deanonymization.},
6}