ANDRYHA commited on
Commit
fbfe324
·
verified ·
1 Parent(s): 3b28eec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -3
README.md CHANGED
@@ -1,3 +1,68 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ size_categories:
4
+ - 1K<n<10K
5
+ ---
6
+
7
+ # CVPR-NTIRE Video Saliency Prediction Challenge 2026
8
+
9
+ [![Page](https://img.shields.io/badge/Challenge-Page-blue)](https://www.codabench.org/competitions/12842/)
10
+
11
+ <video controls autoplay src="https://cdn-uploads.huggingface.co/production/uploads/623a3b20fa4890c51b04cba7/nmWH-xSewvOvlicuMPejp.mp4"></video>
12
+
13
+ ## Dataset
14
+
15
+ We provide a novel audio-visual mouse saliency dataset with the following key-features:
16
+ * Diverse content: movie, sports, live, vertical videos, etc.;
17
+ * Large scale: **2000** videos with mean **18s** duration;
18
+ * High resolution: all streams are **FullHD**;
19
+ * **Audio** track saved and played to observers;
20
+ * Mouse fixations from **>5000** observers (**>70** per video);
21
+ * License: **CC-BY**;
22
+
23
+ File structure:
24
+ 1) `Videos.zip` — 2000 (1200 Train + 800 Test) .mp4 video (kindly reminder: videos contain an audio stream and users watched the video with the sound turned ON!)
25
+
26
+ 2) `TrainTestSplit.json` — in this JSON we provide Train/Public Test/Private Test split of all videos
27
+
28
+ 3) `SaliencyTrain.zip/SaliencyTest.zip` — almost losslessly (crf 0, 10bit, min-max normalized) compressed continuous saliency maps videos for Train/Test subset
29
+
30
+ 4) `FixationsTrain.zip/FixationsTest.zip` — contains the following files for Train/Test subset:
31
+
32
+ * `.../video_name/fixations.json` — per-frame fixations coordinates, from which saliency maps were obtained, this JSON will be used for metrics calculation
33
+
34
+ * `.../video_name/fixations_maps/` — binary fixation maps in '.png' format (since some fixations could share the same pixel, this is a lossy representation and is NOT used either in calculating metrics or generating Gaussians, however, we provide them for visualization and frames count checks)
35
+
36
+ 5) `VideoInfo.json` — meta information about each video (e.g. license)
37
+
38
+ ## Evaluation
39
+
40
+ ### Environment Setup
41
+
42
+ ```
43
+ conda create -n saliency python=3.8.16
44
+ conda activate saliency
45
+ pip install numpy==1.24.2 opencv-python==4.7.0.72 tqdm==4.65.0
46
+ conda install ffmpeg=4.4.2 -c conda-forge
47
+ ```
48
+ ### Run Evaluation
49
+ Archives with videos were accepted from challenge participants as submissions and scored using the same pipeline as in `bench.py`.
50
+
51
+ Usage example:
52
+
53
+ 1) Check that your predictions match the structure and names of the [baseline CenterPrior submission](https://drive.google.com/file/d/1rPgMdb4L79OD2vvpDQyqWZIDox78rmxG/view)
54
+ 2) Install `pip install -r requirments.txt`, `conda install ffmpeg`
55
+ 3) Download and extract `SaliencyTest.zip`, `FixationsTest.zip`, and `TrainTestSplit.json` files from the dataset page
56
+ 4) Run `python bench.py` with flags:
57
+ * `--model_video_predictions ./SampleSubmission-CenterPrior` — folder with predicted saliency videos
58
+ * `--model_extracted_frames ./SampleSubmission-CenterPrior-Frames` — folder to store prediction frames (should not exist at launch time), requires ~170 GB of free space
59
+ * `--gt_video_predictions ./SaliencyTest/Test` — folder from dataset page with gt saliency videos
60
+ * `--gt_extracted_frames ./SaliencyTest-Frames` — folder to store ground-truth frames (should not exist at launch time), requires ~170 GB of free space
61
+ * `--gt_fixations_path ./FixationsTest/Test` — folder from dataset page with gt saliency fixations
62
+ * `--split_json ./TrainTestSplit.json` — JSON from dataset page with names splitting
63
+ * `--results_json ./results.json` — path to the output results json
64
+ * `--mode public_test` — public_test/private_test subsets
65
+ 5) The result you get will be available following `results.json` path
66
+
67
+ [![Challenges](https://img.shields.io/badge/Challenges-NTIRE%202026-orange)](https://www.cvlai.net/ntire/2026/)
68
+ [![Benchmarks](https://img.shields.io/badge/Benchmarks-VideoProcessing-purple)](https://videoprocessing.ai/benchmarks/)