Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MultiView Pouring Dataset, v1.0.
|
| 2 |
+
Pierre Sermanet, Corey Lynch, Jasmine Hsu and Eric Jang
|
| 3 |
+
(sermanet, coreylynch, hellojas, ejang)@google.com
|
| 4 |
+
|
| 5 |
+
This data is licensed by Google Inc. under a Creative Commons Attribution 4.0 International License.
|
| 6 |
+
|
| 7 |
+
## Structure
|
| 8 |
+
|
| 9 |
+
Training, validation and test sets are provided with the following structure:
|
| 10 |
+
|
| 11 |
+
videos/: original .mov videos (1080x1920 resolution, non-rotated).
|
| 12 |
+
|
| 13 |
+
tfrecords/: TensorFlow-ready files, where each video is a SequenceExample object
|
| 14 |
+
(https://www.tensorflow.org/api_docs/python/tf/train/SequenceExample)
|
| 15 |
+
containing all frames of the videos, compressed as a jpeg-encoded string.
|
| 16 |
+
Each original frame is rotated upright and downsampled to 360x640 pixels.
|
| 17 |
+
|
| 18 |
+
labels/: For each tfrecord video in tfrecords/val and tfrecords/test, we provide
|
| 19 |
+
a tfrecord with the same filename that contains the labels for each frame of
|
| 20 |
+
that video.
|
| 21 |
+
|
| 22 |
+
## Generating tfrecords.
|
| 23 |
+
|
| 24 |
+
Although tfrecord files are already available here, one can regenerate them
|
| 25 |
+
from the original videos using the following command:
|
| 26 |
+
|
| 27 |
+
set=multiview-pouring && videos=~/data/tcn/ && tcn/videos_to_tfrecords --logtostderr --output_dir ~/data/tcn/tfrecords/$set --input_dir $videos/datasets/$set/ --rotate 90 --resize_min_edge 360
|