Datasets:
ArXiv:
License:
license: apache-2.0 | |
## DIBS Features | |
Pre-extracted CLIP and UniVL features of the YouCook2, ActivityNet and HowTo100M custom subset used in [DIBS](https://arxiv.org/abs/2404.02755). | |
To process the HowTo100M subset features, first combine all the split files and then extract them using the following commands: | |
``` | |
# Combine the split files | |
cat howto_subset_features.tar.gz.part* > howto_subset_features.tar.gz | |
# Uncompress the combined file | |
tar -xvzf howto_subset_features.tar.gz | |
``` | |
**File Structure** | |
``` | |
├── yc2 | |
│ ├── clip_features | |
│ │ ├── video | |
│ │ │ ├── video1_clip.npy | |
│ │ │ ├── video2_clip.npy | |
│ │ │ └── ... | |
│ │ ├── text_proj | |
│ │ ├── v_video1.npy | |
│ │ ├── v_video2.npy | |
│ │ └── ... | |
│ ├── UniVL_features | |
│ ├── video | |
│ │ ├── video1.npy | |
│ │ ├── video2.npy | |
│ │ └── ... | |
│ ├── UniVL_visual | |
│ │ ├── video1.npy | |
│ │ ├── video2.npy | |
│ │ └── ... | |
│ ├── UniVL_text | |
│ ├── video1.npy | |
│ ├── video2.npy | |
│ └── ... | |
├── anet_features | |
│ ├── clip | |
│ │ ├── clip_visual | |
│ │ │ ├── v_video1_clip.npy | |
│ │ │ ├── v_video2_clip.npy | |
│ │ │ └── ... | |
│ │ ├── clip_text_new | |
│ │ ├── v_video1.npy | |
│ │ ├── v_video2.npy | |
│ │ └── ... | |
│ ├── univl | |
│ ├── video | |
│ │ ├── v_video1.npy | |
│ │ ├── v_video2.npy | |
│ │ └── ... | |
│ ├── visual | |
│ │ ├── video1.npy | |
│ │ ├── video2.npy | |
│ │ └── ... | |
│ ├── text | |
│ ├── video1.npy | |
│ ├── video2.npy | |
│ └── ... | |
├── howto100m | |
│ ├── clip_features | |
│ │ ├── visual | |
│ │ │ ├── video1_clip.npy | |
│ │ │ ├── video2_clip.npy | |
│ │ │ └── ... | |
│ │ ├── text_proj | |
│ │ ├── video1.npy | |
│ │ ├── video2.npy | |
│ │ └── ... | |
│ ├── univl_features | |
│ ├── video | |
│ │ ├── video1.npy | |
│ │ ├── video2.npy | |
│ │ └── ... | |
│ ├── visual | |
│ │ ├── video1.npy | |
│ │ ├── video2.npy | |
│ │ └── ... | |
│ ├── text | |
│ ├── video1.npy | |
│ ├── video2.npy | |
│ └── ... | |
``` | |