Beakerman0101 commited on
Commit
ad9d0f7
·
verified ·
1 Parent(s): 083e4fd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md CHANGED
@@ -1,3 +1,98 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ pretty_name: T-Rex Dataset Visualizer
4
+ task_categories:
5
+ - robotics
6
+ - video-classification
7
+ language:
8
+ - en
9
+ tags:
10
+ - robotics
11
+ - tactile-sensing
12
+ - dexterous-manipulation
13
+ - bimanual-manipulation
14
+ - teleoperation
15
+ - video
16
+ size_categories:
17
+ - 1K<n<10K
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: metadata.csv
23
  ---
24
+
25
+ # T-Rex Dataset Visualizer
26
+
27
+ A browseable subset of the **T-Rex** dataset — *Tactile-Rich Bimanual Dexterous
28
+ Manipulation* — collected on a bimanual **Dexmate Vega-1** robot equipped with
29
+ two **Sharpa Wave** dexterous hands.
30
+
31
+ This visualizer subset contains **3,838 short trajectory clips** drawn from the
32
+ full 100-hour T-Rex collection, organized by `(verb, object, hand)` so you can
33
+ quickly inspect coverage across motion primitives and object categories.
34
+
35
+ > For the full dataset (multi-view RGB, robot states, joint actions, per-fingertip
36
+ > tactile signals, and language instructions), see the main project release.
37
+
38
+ ## Schema
39
+
40
+ | Column | Type | Description |
41
+ |---------------|--------|-----------------------------------------------------------------|
42
+ | `file_name` | video | Relative path to the `.mp4` clip (head camera view). |
43
+ | `id` | string | Unique 5-digit clip identifier. |
44
+ | `verb` | string | Canonical motion primitive (e.g. `reach`, `grasp_and_lifting`). |
45
+ | `object` | string | Canonical object category (e.g. `book`, `airpods`). |
46
+ | `hand` | string | `left_hand` or `right_hand`. |
47
+ | `episode` | string | Episode identifier the clip was sampled from. |
48
+ | `verb_raw` | string | Raw verb label before canonicalization. |
49
+ | `object_raw` | string | Raw object label before canonicalization. |
50
+
51
+ ## Coverage
52
+
53
+ - **Total clips:** 3,838
54
+ - **Motion primitives:** 22 (e.g. `grasp_and_lifting`, `reach`, `wrap`, `fold`,
55
+ `press`, `peel`, `wipe`, `squeeze`, `open`, `cut`, `close`, `shake`, `pour`,
56
+ `screw`, `insert`, `assemble`, …)
57
+ - **Object categories:** 270+ daily objects (top: `airpods`, `bubble_wrap`,
58
+ `book`, `aluminum_foil`, `button`, `clamshell_container`, `flip_phone`,
59
+ `bowl`, `sponge`, `plastic_wrap`, …)
60
+ - **Hands:** balanced left / right coverage
61
+
62
+ A full breakdown is provided in [`manifest.json`](./manifest.json).
63
+
64
+ ## Usage
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ ds = load_dataset("Beakerman0101/trex-visualizer", split="train")
70
+ print(ds[0])
71
+ # {'file_name': <Video>, 'id': '00001', 'verb': 'reach', 'object': 'book',
72
+ # 'hand': 'left_hand', 'episode': 'episode_0000', ...}
73
+ ```
74
+
75
+ You can also stream raw clips directly by URL:
76
+
77
+ ```
78
+ https://huggingface.co/datasets/Beakerman0101/trex-visualizer/resolve/main/videos/<file_name>
79
+ ```
80
+
81
+ ## Filtering Examples
82
+
83
+ ```python
84
+ # All "fold" demonstrations
85
+ folds = ds.filter(lambda r: r["verb"] == "fold")
86
+
87
+ # Left-hand "grasp_and_lifting" of a book
88
+ subset = ds.filter(
89
+ lambda r: r["verb"] == "grasp_and_lifting"
90
+ and r["object"] == "book"
91
+ and r["hand"] == "left_hand"
92
+ )
93
+ ```
94
+
95
+ ## License
96
+
97
+ Released under **CC-BY-4.0**. Please cite the T-Rex project if you use this
98
+ visualizer subset in published work.