-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1b6835
commit aed93a1
Showing
33 changed files
with
571 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#! https://sites.google.com/view/il-for-mm/datasets#h.cq0r3rd5nr9m | ||
|
||
#@yaml/map-key-override | ||
#@yaml/text-templated-strings | ||
|
||
#@ inputs = { | ||
#@ "table_setup_from_dishwasher_sample": [ | ||
#@ "/data/demo_0", | ||
#@ "/data/demo_1", | ||
#@ "/data/demo_10", | ||
#@ "/data/demo_101", | ||
#@ "/data/demo_102", | ||
#@ ] | ||
#@ } | ||
|
||
#@ frame_keys = [ | ||
#@ '/obs/rgb', | ||
#@ '/obs/depth', | ||
#@ ] | ||
--- | ||
_target_: rbyte.Dataset | ||
_convert_: all | ||
_recursive_: false | ||
inputs: | ||
#@ for input_id, input_keys in inputs.items(): | ||
#@ for input_key in input_keys: | ||
(@=input_id@)(@=input_key@): | ||
frame: | ||
#@ for frame_key in frame_keys: | ||
(@=frame_key@): | ||
index_column: _idx_ | ||
reader: | ||
_target_: rbyte.io.frame.hdf5.Hdf5FrameReader | ||
path: "${data_dir}/(@=input_id@).hdf5" | ||
key: (@=input_key@)(@=frame_key@) | ||
#@ end | ||
|
||
table: | ||
path: "${data_dir}/(@=input_id@).hdf5" | ||
builder: | ||
_target_: rbyte.io.table.TableBuilder | ||
_convert_: all | ||
reader: | ||
_target_: rbyte.io.table.hdf5.Hdf5TableReader | ||
_recursive_: false | ||
fields: | ||
/data/demo_0: | ||
_idx_: | ||
obs/object: | ||
task_successes: | ||
|
||
merger: | ||
_target_: rbyte.io.table.TableConcater | ||
separator: "/" | ||
#@ end | ||
#@ end | ||
|
||
sample_builder: | ||
_target_: rbyte.sample.builder.GreedySampleTableBuilder | ||
index_column: _idx_ | ||
length: 1 | ||
stride: 1 | ||
min_step: 1 | ||
filter: !!null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
_target_: rbyte.io.frame.Hdf5FrameReader | ||
_recursive_: true | ||
path: ??? | ||
key: ??? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#@yaml/text-templated-strings | ||
|
||
#@ camera_topics = [ | ||
#@ '/CAM_FRONT/image_rect_compressed', | ||
#@ '/CAM_FRONT_LEFT/image_rect_compressed', | ||
#@ '/CAM_FRONT_RIGHT/image_rect_compressed', | ||
#@ ] | ||
--- | ||
_target_: rbyte.viz.loggers.RerunLogger | ||
schema: | ||
frame: | ||
/obs/rgb: | ||
Image: | ||
color_model: RGB | ||
|
||
/obs/depth: | ||
DepthImage: | ||
color_model: L | ||
|
||
table: | ||
_idx_: TimeSequenceColumn | ||
obs/object: Points3D | ||
task_successes: Scalar |
Oops, something went wrong.