ataghof commited on
Commit
025d1be
·
verified ·
1 Parent(s): 33cef5a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +287 -200
README.md CHANGED
@@ -1,213 +1,300 @@
1
  ---
2
- license: other
3
- license_name: cc-by-nc-sa-4.0-with-mano-carve-out
4
- license_link: https://huggingface.co/datasets/CaryxAI/everyday-manipulation-3d/blob/main/LICENSE.txt
5
- pretty_name: CaryX Everyday Manipulation 3D
6
- size_categories:
7
- - n<1K
8
  task_categories:
9
  - robotics
10
  tags:
11
  - LeRobot
12
- - egocentric
13
- - human-manipulation
14
- - rgbd
15
- - hand-pose
16
- - contact
17
- - metric-depth
18
- - lidar
19
- - segmentation
20
- - physical-ai
21
  ---
22
 
23
- # everyday-manipulation-3d
24
-
25
- **[Browse the episodes in your browser →](https://caryx.ai/data)** · [caryx.ai](https://caryx.ai) · [founders@caryx.ai](mailto:founders@caryx.ai)
26
-
27
- Every frame carries metric depth, 6-DoF camera pose, MANO hand pose,
28
- per-hand object contact, hand and object segmentation, and time-aligned
29
- language, so a model can be tested against any one of those channels or all of
30
- them at once without collecting or labelling anything first.
31
-
32
- Recorded on iPhone Pro (ARKit LiDAR) as part of Everyday Manipulation 1 (EM1),
33
- annotated by CaryX AI, packaged as a single multi-episode
34
- [LeRobot v3.0](https://github.com/huggingface/lerobot) dataset. This is a
35
- pilot-scale research corpus (32 episodes, 4 tasks, 2 participants): built for
36
- method development and per-channel evaluation, not for broad generalization
37
- claims.
38
-
39
- **116 episodes · 28019 frames @ 15 fps · release v0.4**
40
-
41
- | task | episodes | frames |
42
- |---|---:|---:|
43
- | `Wash the spoon with the sponge and rinse it clean.` | 1 | 565 |
44
- | `fold_cloth` | 1 | 455 |
45
- | `fold_laundry` | 12 | 3546 |
46
- | `jar_open_close` | 5 | 814 |
47
- | `pick_and_place` | 71 | 14999 |
48
- | `pour_liquid` | 1 | 323 |
49
- | `scoop_grain` | 11 | 4488 |
50
- | `sweep` | 12 | 2317 |
51
- | `tie_shoelaces` | 1 | 318 |
52
- | `unplug_charger` | 1 | 194 |
53
-
54
- ## Quick start
55
-
56
- Requires Python 3.12+ and `lerobot==0.6.0` (the version this dataset was
57
- written and verified with).
58
-
59
- ```python
60
- # pip install "lerobot==0.6.0"
61
- from lerobot.datasets.lerobot_dataset import LeRobotDataset
62
-
63
- # depth_output_unit: the loader default is MILLIMETRES; pass "m" for metres.
64
- ds = LeRobotDataset("CaryxAI/everyday-manipulation-3d", depth_output_unit="m")
65
- frame = ds[0] # RGB, metric depth, MANO hands, contact, camera pose in one dict
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  ```
67
 
68
- Storage shapes below are HWC (height, width, channel). The official loader
69
- returns image tensors as CHW floats in [0, 1], which is normal LeRobot
70
- behaviour.
71
-
72
- ## License
73
-
74
- **Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC-BY-NC-SA-4.0)**, non-commercial.
75
- https://creativecommons.org/licenses/by-nc-sa/4.0/.
76
-
77
- MANO-derived data (`observation.mano_joints`, `observation.mano_params`, and the
78
- HaMeR hand fields in the episode sidecars) is subject to the
79
- [MANO license](https://mano.is.tue.mpg.de/license.html). Full terms:
80
- `LICENSE.txt`.
81
-
82
- ## Episode orientation
83
-
84
- Most episodes were recorded portrait; a few were recorded landscape and are
85
- shipped ROTATED 90° CCW onto the same portrait canvas so the dataset merges
86
- under one schema. Those episodes are flagged in
87
- `meta/foundry.json` `episodes.<id>.raster_rotation = "ccw90"`: rotate their image
88
- channels 90° CW to display upright. All spatial channels (RGB, depth, masks,
89
- camera pose, MANO orientation) are expressed consistently in the shipped,
90
- rotated frame, so training and 3D geometry need no special-casing.
91
-
92
- ## Features
93
-
94
- Shapes are numpy shapes, so `(7,)` is a flat 7-element vector.
95
-
96
- | key | shape | notes |
97
- |---|---|---|
98
- | `observation.images.ego` | (512, 384, 3) | RGB ego frame, portrait, ONE uniform downscale of the native 1440×1920 (no aspect distortion). Exactly 2× the depth grid: `ego[y, x]` and `depth[y//2, x//2]` are the same ray. |
99
- | `observation.images.depth` | (256, 192, 1) video | **metric metres**, native ARKit sceneDepth grid (never resampled), 12-bit log-HEVC (quantizer [0.1, 5.0] m in `meta/info.json`). Intrinsics for both grids: `episodes/<id>/depth_geometry.json`. |
100
- | `observation.state` | (7,) | `[x, y, z]` wrist position + `[rx, ry, rz]` hand rotation (axis-angle of the hand root) + grasp, metric WORLD frame. The state tracks ONE hand per frame: the right hand when visible, else the left. Position and rotation are zero-phase smoothed (see `meta/foundry.json` `state_smoothed`); the wrist source is named per episode in `state_source`. A zero row is a placeholder, not a pose: check `state_valid`. |
101
- | `observation.state_valid` | (1,) | 1.0 = the state row is a real measured pose; 0.0 = no derivable hand pose on this frame (the row is zeros). Mask state losses with this flag. 9448 of 28019 frames are placeholders. |
102
- | `observation.state_hand` | (1,) | which hand the state tracks this frame: 1.0 = right, 0.0 = left, -1.0 = none. The state follows one hand and can switch when the right hand is lost; the state jumps at a switch because it is a different hand. |
103
- | `action` | (7,) | `[dx, dy, dz]` world position delta + `[drx, dry, drz]` axis-angle of the RELATIVE rotation between consecutive frames + grasp. An action is a real delta only when `state_valid` is 1.0 on BOTH frame t and t+1 AND `state_hand` is the same on both; a validity gap or a hand switch is a zero-delta boundary row. Mask action losses accordingly. |
104
- | `observation.camera_pose` | (4, 4) | camera to world (metric), expressed in the SHIPPED raster frame (x = raster right, y = raster down, z = forward) and gravity-verified per episode at export. Composes directly with the intrinsics in `depth_geometry.json`. |
105
- | `observation.contact` | (2, 2) | The shipped contact channel. Rows are the left and right hand, column k is object slot k. Values are contact strength in [0, 1]. Contact against any object is the max over slots. |
106
- | `observation.contact_valid` | (2, 2) | 1.0 where that hand-to-object distance was actually measured on that frame, 0.0 where it could not be (hand out of frame, no depth surface, or no object in that slot). Single-object episodes ship slot 1 all-zero rather than a fabricated "measured apart". |
107
- | `observation.mano_joints` | (2, 21, 3) | MANO/HaMeR joints RE-ROOTED at the wrist: joint 0 is exactly the origin, axes in the shipped raster's camera orientation (`mano_frame` in `meta/foundry.json`). World placement for the hand `state_hand` names, when both are valid: `world = (R_state @ R_go.T) @ joints + state[0:3]`, where `R_state` is the rotation matrix of `state[3:6]` and `R_go` of that hand's `mano_params[0:3]`; both are shipped per frame. The untracked hand has no shipped world anchor. The primary channel is tip-smoothed (named per episode in `mano_joints_channel`); the raw fit is recoverable from `observation.mano_params`. |
108
- | `observation.mano_params` | (2, 58) | full MANO parameterization: global_orient(3) ⊕ pose(45) ⊕ betas(10) |
109
- | `observation.mano_valid` | (2,) | 1.0 where the MANO fit is valid for that hand/frame |
110
- | `observation.images.object_mask` | (512, 384, 3) video | R = object slot 0, B = slot 1 (two-object episodes), G unused. Threshold > 127 (video codecs are lossy). Exact full-res masks: `episodes/<id>/object_mask.npz`. |
111
- | `observation.images.hand_mask` | (512, 384, 3) video | R = LEFT hand, B = RIGHT hand. Same thresholding. Reviewer-corrected (shipped) channel. Exact full-res masks: `episodes/<id>/hand_mask.npz`. |
112
-
113
- ## Timing
114
-
115
- The `timestamp` column is true source time: every 1/15 s tick of
116
- the source clip ships as one frame (nearest source frame; nothing is dropped),
117
- so `timestamp` in this dataset and the times in `language_spans.json` are the
118
- same clock. Frames with no derivable hand pose ship with a zero state and
119
- `state_valid = 0.0` instead of being removed. Per episode,
120
- `meta/foundry.json` `episodes.<id>.source_frame_indices` gives the source
121
- video frame behind each tick and `source_fps` the source frame rate, so exact
122
- source-frame timing is recoverable.
123
-
124
- ## Per-episode sidecars
125
-
126
- Full-resolution annotation that does not fit the fixed frame schema rides
127
- alongside each episode in `episodes/<capture_id>/`.
128
-
129
- | file | present on | what it is |
130
- |---|---|---|
131
- | `openego_sidecar.json` | all | the release copy of the OpenEgo annotation. Internal production bookkeeping (review state, gate results, correction history, checkpoints, methodology notes) is removed; it is not the full internal record. What IS deliberately kept as consumer provenance: per-stream `annotator_params` reduced to `{producer_version, model}`, the transcript source tag, and the `hand_pose.source` / intrinsics source tags; these say which model produced each stream so a consumer can branch on provenance. Path fields refer only to files or features of THIS release (`observation.images.ego`, sibling npz) or are null; full-resolution sources are in the companion raw dataset. |
132
- | `language_spans.json` | all | dense sub-step action labels, in seconds on the same clock as `timestamp`. Each span carries `source` (`vlm` or `human`, where `human` means a reviewer wrote or corrected that label). Use them for language-conditioned / sub-goal training by joining on `timestamp`; the LeRobot `task` column stays the static goal. |
133
- | `depth_geometry.json` | all | the depth camera's own intrinsics and extrinsics |
134
- | `object_mask.npz` | all | exact full-resolution object masks (the video channel is lossy) |
135
- | `hand_mask.npz` | all | exact full-resolution hand masks, the reviewer-corrected shipped channel (left = slot 0, right = slot 1) |
136
- | `hand_object_contact.npz` | all | full attributed contact: per hand and object distances, strengths, grasp states |
137
- | `object_object_contact.npz` | multi-object (15 of 116) | symmetric object-to-object contact |
138
- | `contact_corrections.npz` | where a reviewer ruled | reviewer contact-window rulings, kept separate from the measurement |
139
- | `object_registry.json` | multi-object (15 of 116) | object id to human label and mask colour slot |
140
-
141
- Both contact files are keyed by the same `object_ids` as `object_mask.npz`.
142
- To resolve which object is slot k, read
143
- `episodes.<capture_id>.contact_slot_object_ids` and
144
- `contact_slot_object_labels` in `meta/foundry.json`. The same k indexes the
145
- `object_mask` video channel (R = slot 0, B = slot 1) and `object_mask.npz`
146
- `object_ids[k]`.
147
-
148
- ## Episodes and tasks
149
-
150
- Tasks are native LeRobot tasks (`meta/tasks.parquet`); filter episodes by
151
- `task_index`. The episode index (id, task, length) is in `meta/episodes/`. The
152
- per-episode CaryX AI metadata lives in **`meta/foundry.json`** (orientation
153
- flags, state source, source frame indices, contact slot ids). The official
154
- LeRobot loader does not surface custom metadata; fetch that file directly.
155
-
156
- ## What is exact and what is not
157
-
158
- | channel | fidelity |
159
- |---|---|
160
- | RGB | native 1440×1920 downscaled to 384×512, ONE uniform scale factor (no aspect distortion). The raw full-resolution clips are in the companion raw dataset below. |
161
- | depth | native 256×192 grid, 12-bit log-quantized video over [0.1, 5.0] m. Quantization error is under ~0.5 mm p99 (max ~0.9 mm), far below LiDAR sensor noise. Readings outside the range saturate. |
162
- | masks | video channels are codec-lossy at outlines (~0.03 to 0.04% of pixels); the exact masks ship as `object_mask.npz` and `hand_mask.npz` per episode. |
163
- | time | 15 fps time-based resampling of the source clip (nearest source frame per tick; worst-case timing jitter is half a source frame). No frames are dropped. |
164
- | state | zero-phase smoothed (positions and rotations); the raw fit is recoverable from `observation.mano_params` and the sidecars. |
165
- | stats | `meta/stats.json` is computed over every frame of the corpus, not a sample. |
166
-
167
- `meta/checksums.json` is the sha256 manifest of this release (it does not
168
- list itself).
169
-
170
- ## Canonical split
171
-
172
- `meta/splits.json` freezes an episode-level train/val/test split. The rule is
173
- deterministic: within each task, episodes are ordered by capture time
174
- (`capture_id` is time-sortable); the last episode of each task is `test`, the
175
- second-to-last is `val`, and the rest are `train`. This is a chronological
176
- partition by episode, not a held-out participant, scene or session: both
177
- participants appear in all three splits.
178
-
179
- | split | episodes | frames |
180
- |---|---:|---:|
181
- | train | 106 | 25588 |
182
- | val | 5 | 1168 |
183
- | test | 5 | 1263 |
184
-
185
- Report results on `test`; tune on `val`.
186
-
187
- ## Provenance
188
-
189
- Self-collected capture by CaryX AI, recorded by 2 consenting adults in private
190
- homes. Annotations are produced by CaryX AI's pipeline using third-party models
191
- and reviewed by humans.
192
 
193
  ## Citation
194
 
195
- ```bibtex
196
- @misc{caryx2026egocentric,
197
- title = {everyday-manipulation-3d: Egocentric Human Manipulation with Metric Depth, Contact, and MANO Hands},
198
- author = {CaryX AI},
199
- year = {2026},
200
- publisher = {CaryX AI},
201
- howpublished = {\url{https://caryx.ai}},
202
- url = {https://huggingface.co/datasets/CaryxAI/everyday-manipulation-3d},
203
- note = {Dataset. Available at \url{https://caryx.ai/data}}
204
- }
205
- ```
206
 
207
- The raw full-resolution RGB-D clips these episodes were built from are
208
- published separately:
209
- [CaryxAI/everyday-manipulation-3d-raw](https://huggingface.co/datasets/CaryxAI/everyday-manipulation-3d-raw)
210
- (CC BY 4.0, no annotations).
211
-
212
- Produced by CaryX AI. Reach out: [founders@caryx.ai](mailto:founders@caryx.ai)
213
- · [caryx.ai](https://caryx.ai)
 
1
  ---
2
+ license: apache-2.0
 
 
 
 
 
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
 
 
 
 
 
 
10
  ---
11
 
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=CaryxAI/everyday-manipulation-3d">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "fps": 15,
36
+ "features": {
37
+ "observation.images.ego": {
38
+ "dtype": "image",
39
+ "shape": [
40
+ 512,
41
+ 384,
42
+ 3
43
+ ],
44
+ "names": [
45
+ "height",
46
+ "width",
47
+ "channel"
48
+ ]
49
+ },
50
+ "observation.state": {
51
+ "dtype": "float32",
52
+ "shape": [
53
+ 7
54
+ ],
55
+ "names": [
56
+ "x",
57
+ "y",
58
+ "z",
59
+ "rx",
60
+ "ry",
61
+ "rz",
62
+ "grasp"
63
+ ]
64
+ },
65
+ "observation.state_valid": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 1
69
+ ],
70
+ "names": [
71
+ "valid"
72
+ ]
73
+ },
74
+ "observation.state_hand": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 1
78
+ ],
79
+ "names": [
80
+ "hand"
81
+ ]
82
+ },
83
+ "action": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 7
87
+ ],
88
+ "names": [
89
+ "dx",
90
+ "dy",
91
+ "dz",
92
+ "drx",
93
+ "dry",
94
+ "drz",
95
+ "grasp"
96
+ ]
97
+ },
98
+ "observation.camera_pose": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 4,
102
+ 4
103
+ ]
104
+ },
105
+ "observation.contact": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 2,
109
+ 2
110
+ ]
111
+ },
112
+ "observation.contact_valid": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 2,
116
+ 2
117
+ ]
118
+ },
119
+ "observation.images.depth": {
120
+ "dtype": "video",
121
+ "shape": [
122
+ 256,
123
+ 192,
124
+ 1
125
+ ],
126
+ "names": [
127
+ "height",
128
+ "width",
129
+ "channel"
130
+ ],
131
+ "info": {
132
+ "is_depth_map": true,
133
+ "depth_unit": "m",
134
+ "video.height": 256,
135
+ "video.width": 192,
136
+ "video.codec": "hevc",
137
+ "video.pix_fmt": "gray12le",
138
+ "video.fps": 15,
139
+ "video.channels": 1,
140
+ "has_audio": false,
141
+ "video.g": 2,
142
+ "video.crf": 30,
143
+ "video.preset": null,
144
+ "video.fast_decode": 0,
145
+ "video.video_backend": "pyav",
146
+ "video.extra_options": {
147
+ "x265-params": "lossless=1"
148
+ },
149
+ "video.depth_min": 0.1,
150
+ "video.depth_max": 5.0,
151
+ "video.shift": 3.5,
152
+ "video.use_log": true
153
+ }
154
+ },
155
+ "observation.mano_joints": {
156
+ "dtype": "float32",
157
+ "shape": [
158
+ 2,
159
+ 21,
160
+ 3
161
+ ]
162
+ },
163
+ "observation.mano_params": {
164
+ "dtype": "float32",
165
+ "shape": [
166
+ 2,
167
+ 58
168
+ ],
169
+ "names": [
170
+ "hand",
171
+ "global_orient(3)+pose(45)+betas(10)"
172
+ ]
173
+ },
174
+ "observation.mano_valid": {
175
+ "dtype": "float32",
176
+ "shape": [
177
+ 2
178
+ ],
179
+ "names": [
180
+ "left",
181
+ "right"
182
+ ]
183
+ },
184
+ "observation.images.object_mask": {
185
+ "dtype": "video",
186
+ "shape": [
187
+ 512,
188
+ 384,
189
+ 3
190
+ ],
191
+ "names": [
192
+ "height",
193
+ "width",
194
+ "channel"
195
+ ],
196
+ "info": {
197
+ "video.height": 512,
198
+ "video.width": 384,
199
+ "video.codec": "av1",
200
+ "video.pix_fmt": "yuv420p",
201
+ "video.fps": 15,
202
+ "video.channels": 3,
203
+ "has_audio": false,
204
+ "video.g": 2,
205
+ "video.crf": 30,
206
+ "video.preset": 12,
207
+ "video.fast_decode": 0,
208
+ "video.video_backend": "pyav",
209
+ "video.extra_options": {},
210
+ "is_depth_map": false
211
+ }
212
+ },
213
+ "observation.images.hand_mask": {
214
+ "dtype": "video",
215
+ "shape": [
216
+ 512,
217
+ 384,
218
+ 3
219
+ ],
220
+ "names": [
221
+ "height",
222
+ "width",
223
+ "channel"
224
+ ],
225
+ "info": {
226
+ "video.height": 512,
227
+ "video.width": 384,
228
+ "video.codec": "av1",
229
+ "video.pix_fmt": "yuv420p",
230
+ "video.fps": 15,
231
+ "video.channels": 3,
232
+ "has_audio": false,
233
+ "video.g": 2,
234
+ "video.crf": 30,
235
+ "video.preset": 12,
236
+ "video.fast_decode": 0,
237
+ "video.video_backend": "pyav",
238
+ "video.extra_options": {},
239
+ "is_depth_map": false
240
+ }
241
+ },
242
+ "timestamp": {
243
+ "dtype": "float32",
244
+ "shape": [
245
+ 1
246
+ ],
247
+ "names": null
248
+ },
249
+ "frame_index": {
250
+ "dtype": "int64",
251
+ "shape": [
252
+ 1
253
+ ],
254
+ "names": null
255
+ },
256
+ "episode_index": {
257
+ "dtype": "int64",
258
+ "shape": [
259
+ 1
260
+ ],
261
+ "names": null
262
+ },
263
+ "index": {
264
+ "dtype": "int64",
265
+ "shape": [
266
+ 1
267
+ ],
268
+ "names": null
269
+ },
270
+ "task_index": {
271
+ "dtype": "int64",
272
+ "shape": [
273
+ 1
274
+ ],
275
+ "names": null
276
+ }
277
+ },
278
+ "total_episodes": 116,
279
+ "total_frames": 28019,
280
+ "total_tasks": 10,
281
+ "chunks_size": 1000,
282
+ "data_files_size_in_mb": 100,
283
+ "video_files_size_in_mb": 200,
284
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
285
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
286
+ "robot_type": "human_ego",
287
+ "splits": {
288
+ "train": "0:116"
289
+ }
290
+ }
291
  ```
292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
 
294
  ## Citation
295
 
296
+ **BibTeX:**
 
 
 
 
 
 
 
 
 
 
297
 
298
+ ```bibtex
299
+ [More Information Needed]
300
+ ```