File size: 2,789 Bytes
f3cb895
 
 
 
56671ab
f3cb895
cd64b44
 
 
 
 
 
 
 
 
f3cb895
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56671ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f3cb895
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
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
│           └── ...
```