wawayuzhou commited on
Commit
8f60a8e
·
verified ·
1 Parent(s): 80cfce9

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md CHANGED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ size_categories:
2
+ - 100M<n<1B
3
+ ---
4
+
5
+ # Dataset Card for PRTS Post-Training Data
6
+
7
+ This dataset card aims to describe the PRTS Post-Training Data, which includes various dual-arm robotic tasks across multiple domains such as household, office, and industrial environments. It is designed to facilitate research and development in robotic manipulation, task planning, and human-robot collaboration.
8
+
9
+ ## Dataset Details
10
+
11
+ ### Dataset Description
12
+
13
+ This dataset consists of post-training data from robotic systems performing tasks across different scenarios, such as household, office, and industrial tasks. The dataset includes detailed task frames that encompass dual-arm manipulation, object handling, and collaborative operations. The data includes task names, timestamps, poses, joint angles, and gripper states, which can be used for training and evaluating robotic systems in various real-world environments.
14
+
15
+ - **Curated by:** TeleEmbodied AI Team
16
+ - **Funded by [optional]:** [More Information Needed]
17
+ - **Shared by [optional]:** [More Information Needed]
18
+ - **Language(s) (NLP):** Not applicable (robotics tasks)
19
+ - **License:** MIT License
20
+
21
+ ### Dataset Sources [optional]
22
+
23
+ - **Repository:** [More Information Needed]
24
+ - **Paper [optional]:** [More Information Needed]
25
+ - **Demo [optional]:** [More Information Needed]
26
+
27
+ ## Uses
28
+
29
+ ### Direct Use
30
+
31
+ This dataset is intended for the following use cases:
32
+ - Dual-arm robotic manipulation tasks
33
+ - Object pick-and-place tasks
34
+ - Collaborative tasks between two robotic arms
35
+ - Testing robotic task planning and execution in different environments
36
+
37
+ ### Out-of-Scope Use
38
+
39
+ This dataset is not suitable for:
40
+ - Tasks unrelated to dual-arm robotic manipulation
41
+ - Tasks involving single-arm operations
42
+ - Use cases that require high-level cognitive or decision-making tasks beyond basic manipulation
43
+
44
+ ## Dataset Structure
45
+
46
+ This dataset consists of over 30 tasks, each with the following fields:
47
+ - `task_name`: Name of the task (e.g., "Pick and Place Object").
48
+ - `task_id`: Unique identifier for each task.
49
+ - `task_description`: A brief description of what the task involves.
50
+ - `frames`: A list of frames associated with the task, where each frame contains:
51
+ - `t`: Timestamp for the frame.
52
+ - `pose`: 6D pose of the robotic arms.
53
+ - `joints`: Joint angles for the robotic arms.
54
+ - `gripper`: Gripper state (open/close).
55
+
56
+ Example:
57
+ ```json
58
+ {
59
+ "task_name": "Pick and Place Object",
60
+ "task_id": "001",
61
+ "task_description": "Pick up a cup and place it on the table",
62
+ "frames": [
63
+ {
64
+ "t": 0.0,
65
+ "pose": [0.5, 0.5, 0.2, 0, 0, 0, 1],
66
+ "joints": [0.3, -0.5, 0.8, 0.1, -0.2, 0.9, 0.2, -0.4],
67
+ "gripper": [1, 0]
68
+ }
69
+ ]
70
+ }