File size: 1,453 Bytes
6ecc051
 
3e53227
6ecc051
3e53227
 
7c3654c
 
 
 
3e53227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# MultiView Pouring Dataset, v1.0.
by Pierre Sermanet, Corey Lynch, Jasmine Hsu and Eric Jang

## License
This data is licensed by Google Inc. under a Creative Commons Attribution 4.0 International License.

## Downloading

Because of some downloading issues for a specific file, the file was split in two, call https://huggingface.co/datasets/sermanet/multiview-pouring/blob/main/tfrecords/test/whiteorange_to_clear1_real_combining.sh to recombine the parts.

## Structure

Training, validation and test sets are provided with the following structure:

videos/: original .mov videos (1080x1920 resolution, non-rotated).

tfrecords/: TensorFlow-ready files, where each video is a SequenceExample object
  (https://www.tensorflow.org/api_docs/python/tf/train/SequenceExample)
  containing all frames of the videos, compressed as a jpeg-encoded string.
  Each original frame is rotated upright and downsampled to 360x640 pixels.

labels/: For each tfrecord video in tfrecords/val and tfrecords/test, we provide
  a tfrecord with the same filename that contains the labels for each frame of
  that video.

## Generating tfrecords.

Although tfrecord files are already available here, one can regenerate them
from the original videos using the following command:

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