Tarun23 commited on
Commit
c4a2410
1 Parent(s): 85c306d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -1
README.md CHANGED
@@ -9,4 +9,23 @@ language:
9
  pretty_name: Ego2Exo
10
  size_categories:
11
  - 10K<n<100K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  pretty_name: Ego2Exo
10
  size_categories:
11
  - 10K<n<100K
12
+ ---
13
+
14
+ ## Dataset Preparation.
15
+
16
+ Our Ego2Exo benchmark is curated from the [EgoExo4D](https://ego-exo4d-data.org/) dataset released by Meta. A complete documentation of the dataset preparation including selecting video segments, narrations and label set is available at this [colab notebook](create_data.ipynb). Note that you have to first download the annotations and keystep labels from the original dataset.
17
+
18
+ ## Dataset Download Instructions
19
+
20
+ The original video segments should be downloaded from the original [EgoExo4D](https://ego-exo4d-data.org/) website from Meta by following their guidelines. You might have to first sign a license form to access and download the dataset, which might take upto 48 hours for getting approved. You can download the [cli installer](https://docs.ego-exo4d-data.org/download/) to enable faster downloads. Make sure that the installation works by running `egoexo --help` which should return the documentation guide.
21
+
22
+ In our paper, we only used the pre-extracted [Omnivore features](https://docs.ego-exo4d-data.org/data/features/) for all the video segments as input to the classification network. If you only want to download the pre-extracted features for the takes corresponding to our dataset, use the following command. Make sure to provide the argument `data_dir` or specify where the files should be downloaded.
23
+ ```
24
+ sh omnivore_features_download.sh <data_dir>
25
+ ```
26
+
27
+ You can also download the complete videos corresponding to our takes. The whole dataset is quite large, so it is recommended that you only download the videos used in our benchmark with the following command. Make sure to provide the argument `data_dir` or specify where the files should be downloaded.
28
+
29
+ ```
30
+ sh takes_download.sh <data_dir>
31
+ ```