7jep7 commited on
Commit
c7d2818
·
verified ·
1 Parent(s): dbf603b

Upload schema.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. schema.json +87 -0
schema.json ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "factorynet_version": "1.0",
3
+ "description": "Unified schema for industrial robot time-series data",
4
+
5
+ "minimum_viable_episode": {
6
+ "required": [">=1 setpoint signal", ">=1 effort signal"],
7
+ "rationale": "Enables causal analysis: command → response"
8
+ },
9
+
10
+ "causal_structure": {
11
+ "intent": "setpoint_* (what robot was commanded)",
12
+ "action": "effort_* (how robot responded)",
13
+ "outcome": "feedback_* (what actually happened)"
14
+ },
15
+
16
+ "tiers": {
17
+ "universal": {
18
+ "description": "Required for all datasets (Tier 1)",
19
+ "columns": [
20
+ {"name": "setpoint_pos_{axis}", "type": "float64", "unit": "rad", "role": "setpoint"},
21
+ {"name": "effort_torque_{axis}", "type": "float64", "unit": "Nm", "role": "effort"},
22
+ {"name": "effort_current_{axis}", "type": "float64", "unit": "A", "role": "effort"},
23
+ {"name": "feedback_pos_{axis}", "type": "float64", "unit": "rad", "role": "feedback"},
24
+ {"name": "timestamp", "type": "float64", "unit": "s", "role": "metadata"},
25
+ {"name": "episode_id", "type": "string", "role": "metadata"}
26
+ ]
27
+ },
28
+ "common": {
29
+ "description": "Present in >=50% of datasets (Tier 2)",
30
+ "columns": [
31
+ {"name": "setpoint_vel_{axis}", "type": "float64", "unit": "rad/s", "role": "setpoint"},
32
+ {"name": "feedback_vel_{axis}", "type": "float64", "unit": "rad/s", "role": "feedback"},
33
+ {"name": "effort_force_{x|y|z}", "type": "float64", "unit": "N", "role": "effort"},
34
+ {"name": "ctx_temp_{axis}", "type": "float64", "unit": "degC", "role": "context"}
35
+ ]
36
+ },
37
+ "specific": {
38
+ "description": "Dataset-specific extensions (Tier 3)",
39
+ "examples": {
40
+ "aursad": ["effort_tool_torque", "feedback_tool_pos"],
41
+ "voraus": ["effort_torque_sensor_{axis}_a", "effort_torque_sensor_{axis}_b"],
42
+ "phm2010": ["aux_acoustic_emission", "aux_vibration_{axis}"]
43
+ }
44
+ }
45
+ },
46
+
47
+ "fault_types": {
48
+ "normal": "Normal operation",
49
+ "stiff_joint": "Increased friction or binding",
50
+ "collision": "Contact with unexpected obstacle",
51
+ "phantom_load": "Effort without corresponding command",
52
+ "grip_failure": "Gripper malfunction",
53
+ "missing_part": "Expected component absent",
54
+ "tool_wear": "Progressive degradation",
55
+ "sensor_fault": "Sensor malfunction or drift",
56
+ "other": "Unclassified anomaly"
57
+ },
58
+
59
+ "naming_convention": {
60
+ "pattern": "{role}_{signal}_{axis}",
61
+ "roles": ["setpoint", "effort", "feedback", "aux", "ctx"],
62
+ "examples": [
63
+ "setpoint_pos_0 → commanded position of axis 0",
64
+ "effort_torque_3 → motor torque of axis 3",
65
+ "feedback_vel_5 → actual velocity of axis 5"
66
+ ]
67
+ },
68
+
69
+ "datasets": {
70
+ "aursad": {
71
+ "source": "https://zenodo.org/records/4487073",
72
+ "robot": "UR3e",
73
+ "dof": 6,
74
+ "task": "screwdriving",
75
+ "episodes": 4094,
76
+ "sampling_rate_hz": 100
77
+ },
78
+ "voraus": {
79
+ "source": "https://github.com/vorausrobotik/voraus-ad-dataset",
80
+ "robot": "Yu-Cobot",
81
+ "dof": 6,
82
+ "task": "pick-and-place",
83
+ "episodes": 2122,
84
+ "sampling_rate_hz": 100
85
+ }
86
+ }
87
+ }