sermanet commited on
Commit
fa35fe8
·
verified ·
1 Parent(s): ef4aa39

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +18 -3
  2. segmentation_groundtruth.py +28 -0
README.md CHANGED
@@ -1,3 +1,18 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pouring Demonstrations Dataset, v1.0.
2
+ Pierre Sermanet, sermanet@google.com
3
+
4
+ ## License
5
+ This data is licensed by Google Inc. under a Creative Commons Attribution 4.0 International License.
6
+
7
+ ## Structure
8
+
9
+ A train and test sets are provided with the following structure:
10
+
11
+ videos/: original .mov videos
12
+ frames/: extracted frames from videos/
13
+
14
+ ## Labels
15
+
16
+ Temporal segmentation groundtruth is provided in segmentation_groundtruth.py for 2 and 3 segments
17
+ for each video. Each segment corresponds to one semantic step for the demonstration.
18
+
segmentation_groundtruth.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Temporal segmentation groundtruth for pouring task sequences.
2
+ # '2' indicates 2 segments, e.g. step-1 corresponds to frames [0, 32] and
3
+ # step-2 to frames [33,last_frame].
4
+ # '3' indicates 3 segments segmentation.
5
+ segmentation_groundtruth = {
6
+ # This does not include the 'miss' videos for which segmentation cannot be defined.
7
+ 'test': {
8
+ 'pouring_001': {'2': [32], '3': [8, 40]},
9
+ 'pouring_004': {'2': [27], '3': [11, 32]},
10
+ 'pouring_007': {'2': [23], '3': [11, 26]},
11
+ 'pouring_009': {'2': [32], '3': [9, 39]},
12
+ 'pouring_012': {'2': [20], '3': [7, 23]},
13
+ 'pouring_016': {'2': [24], '3': [12, 28]},
14
+ },
15
+ 'train': {
16
+ 'pouring_002': {'2': [25], '3': [11, 35]},
17
+ 'pouring_003': {'2': [32], '3': [12, 38]},
18
+ 'pouring_005': {'2': [27], '3': [10, 32]},
19
+ 'pouring_006': {'2': [21], '3': [10, 27]},
20
+ 'pouring_008': {'2': [18], '3': [10, 23]},
21
+ 'pouring_010': {'2': [22], '3': [9, 30]},
22
+ 'pouring_011': {'2': [20], '3': [10, 27]},
23
+ 'pouring_013': {'2': [22], '3': [10, 29]},
24
+ 'pouring_014': {'2': [20], '3': [8, 25]},
25
+ 'pouring_015': {'2': [25], '3': [9, 35]},
26
+ 'pouring_017': {'2': [18], '3': [9, 20]},
27
+ },
28
+ }