jmhb commited on
Commit
de4fd82
·
verified ·
1 Parent(s): db1d4d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -1,3 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Dataset card for "VidDiffBench"
2
  This is the dataset / benchmark for [Video Action Differencing](https://openreview.net/forum?id=3bcN6xlO6f) (ICLR 2025), a new task that compares how an action is performed between two videos. This page introduces the task, the dataset structure, and how to access the data. See the paper for details on dataset construction. The code for running evaluation, and for benchmarking popular LMMs is at [https://jmhb0.github.io/viddiff](https://jmhb0.github.io/viddiff).
3
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: sample_key
5
+ dtype: string
6
+ - name: vid0_thumbnail
7
+ dtype: image
8
+ - name: vid1_thumbnail
9
+ dtype: image
10
+ - name: videos
11
+ dtype: string
12
+ - name: action
13
+ dtype: string
14
+ - name: action_name
15
+ dtype: string
16
+ - name: action_description
17
+ dtype: string
18
+ - name: source_dataset
19
+ dtype: string
20
+ - name: sample_hash
21
+ dtype: int64
22
+ - name: retrieval_frames
23
+ dtype: string
24
+ - name: differences_annotated
25
+ dtype: string
26
+ - name: differences_gt
27
+ dtype: string
28
+ - name: domain
29
+ dtype: string
30
+ - name: split
31
+ dtype: string
32
+ - name: n_differences_open_prediction
33
+ dtype: int64
34
+ splits:
35
+ - name: test
36
+ num_bytes: 15219230.154398564
37
+ num_examples: 549
38
+ download_size: 6445835
39
+ dataset_size: 15219230.154398564
40
+ configs:
41
+ - config_name: default
42
+ data_files:
43
+ - split: test
44
+ path: data/test-*
45
+ ---
46
+
47
  # Dataset card for "VidDiffBench"
48
  This is the dataset / benchmark for [Video Action Differencing](https://openreview.net/forum?id=3bcN6xlO6f) (ICLR 2025), a new task that compares how an action is performed between two videos. This page introduces the task, the dataset structure, and how to access the data. See the paper for details on dataset construction. The code for running evaluation, and for benchmarking popular LMMs is at [https://jmhb0.github.io/viddiff](https://jmhb0.github.io/viddiff).
49