alitourani
commited on
Commit
•
dba6cb0
1
Parent(s):
4ffaa0f
[doc] - update readme.md
Browse files
README.md
CHANGED
@@ -63,7 +63,7 @@ The dataset contains visual features obtained from a wide range of movies (full-
|
|
63 |
|
64 |
### Level I. Primary Categories
|
65 |
|
66 |
-
The dataset contains six main folders and a `stats.json` file. Folders **'full_movies'**, **'movie_shots'**, and **'movie_trailers'** keep the visual features extracted from various sources, including `full_movies` for frame-level visual features extracted from full-length movie videos, `movie_shots` for the shot-level (_i.e.,_ important frames) visual features extracted from full-length movie videos, and `movie_trailers` for frame-level visual features extracted from movie trailers videos. Folders **'full_movies_agg'**, **'movie_shots_agg'**, and **'movie_trailers_agg'** keep the aggregated versions of
|
67 |
|
68 |
### Level II. Visual Feature Extractors
|
69 |
|
@@ -71,9 +71,15 @@ Inside each of the mentioned folders, there are two folders titled `incp3` and `
|
|
71 |
|
72 |
### Level III. Contents (Movies & Trailers)
|
73 |
|
|
|
|
|
74 |
Inside each feature extractor folder (_e.g.,_ `full_movies/incp3` or `movie_trailers/vgg19`) you can find a set of folders with unique title (_e.g.,_ `0000000778`) indicating the ID of the movie in **MovieLenz 25M** ([link](https://grouplens.org/datasets/movielens/25m/)) dataset. Accordingly, you have access to the visual features extracted from the movie `0000000778`, using Inception-v3 and VGG-19 extractors, in full-length frame, full-length shot, and trailer levels.
|
75 |
|
76 |
-
|
|
|
|
|
|
|
|
|
77 |
|
78 |
To better organize visual features, each movie folder (_e.g.,_ `0000000778`) has a set of packets named as `packet0001.json` to `packet000N.json` saved as `json` files. Each packet contains a set of objects with `frameId` and `features` attributes, keeping the equivalent frame-ID and visual feature, respectively. In general, every **25** object (`frameId-features` pair) form a packet, except the last packet that can have less objects.
|
79 |
|
@@ -104,6 +110,18 @@ The described structure is presented below in brief:
|
|
104 |
> ...
|
105 |
> [vgg19]
|
106 |
> ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
```
|
108 |
|
109 |
### `stats.json` File
|
|
|
63 |
|
64 |
### Level I. Primary Categories
|
65 |
|
66 |
+
The dataset contains six main folders and a `stats.json` file. The `stats.json` file contains the meta-data for the sources. Folders **'full_movies'**, **'movie_shots'**, and **'movie_trailers'** keep the atomic visual features extracted from various sources, including `full_movies` for frame-level visual features extracted from full-length movie videos, `movie_shots` for the shot-level (_i.e.,_ important frames) visual features extracted from full-length movie videos, and `movie_trailers` for frame-level visual features extracted from movie trailers videos. Folders **'full_movies_agg'**, **'movie_shots_agg'**, and **'movie_trailers_agg'** keep the aggregated (non-atomic) versions of the described items.
|
67 |
|
68 |
### Level II. Visual Feature Extractors
|
69 |
|
|
|
71 |
|
72 |
### Level III. Contents (Movies & Trailers)
|
73 |
|
74 |
+
#### A: Atomic Features (folders full_movies, movie_shots, and movie_trailers)
|
75 |
+
|
76 |
Inside each feature extractor folder (_e.g.,_ `full_movies/incp3` or `movie_trailers/vgg19`) you can find a set of folders with unique title (_e.g.,_ `0000000778`) indicating the ID of the movie in **MovieLenz 25M** ([link](https://grouplens.org/datasets/movielens/25m/)) dataset. Accordingly, you have access to the visual features extracted from the movie `0000000778`, using Inception-v3 and VGG-19 extractors, in full-length frame, full-length shot, and trailer levels.
|
77 |
|
78 |
+
#### B: Aggregated Features (folders full_movies_agg, movie_shots_agg, and movie_trailers_agg)
|
79 |
+
|
80 |
+
Inside each feature extractor folder (_e.g.,_ `full_movies_agg/incp3` or `movie_trailers_agg/vgg19`) you can find a set of `json` files with unique title (_e.g.,_ `0000000778.json`) indicating the ID of the movie in **MovieLenz 25M** ([link](https://grouplens.org/datasets/movielens/25m/)) dataset. Accordingly, you have access to the aggregated visual features extracted from the movie `0000000778` (and available on the atomic features folders), using Inception-v3 and VGG-19 extractors, in full-length frame, full-length shot, and trailer levels.
|
81 |
+
|
82 |
+
### Level IV. Packets (Atomic Feature Folders Only)
|
83 |
|
84 |
To better organize visual features, each movie folder (_e.g.,_ `0000000778`) has a set of packets named as `packet0001.json` to `packet000N.json` saved as `json` files. Each packet contains a set of objects with `frameId` and `features` attributes, keeping the equivalent frame-ID and visual feature, respectively. In general, every **25** object (`frameId-features` pair) form a packet, except the last packet that can have less objects.
|
85 |
|
|
|
110 |
> ...
|
111 |
> [vgg19]
|
112 |
> ...
|
113 |
+
> [full_movies_agg] ## aggregated visual features of frame-level full-length movie videos
|
114 |
+
> [incp3] ## aggregated visual features extracted using Inception-v3
|
115 |
+
> [movie-1-json]
|
116 |
+
> [movie-2]
|
117 |
+
...
|
118 |
+
> [movie-n]
|
119 |
+
> [vgg19] ## aggregated visual features extracted using VGG-19
|
120 |
+
> [movie-1]
|
121 |
+
...
|
122 |
+
> [movie-n]
|
123 |
+
> [movie_shots_agg] ## aggregated visual features of shot-level full-length movie videos
|
124 |
+
> [movie_trailers_agg] ## aggregated visual features of frame-level movie trailer videos
|
125 |
```
|
126 |
|
127 |
### `stats.json` File
|