Dataset Preview
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed
Error code: DatasetGenerationError
Exception: TypeError
Message: Couldn't cast array of type
list<item: struct<id: int64, name: string, bagSize: int64, bagDuration: int64, bagStatus: string, path: string, bagRegion: string, bagDigest: string, dcProject: string, dcTask: string, dcSubtaskName: string, dcTaskDesc: string, robotType: string, robotSn: string, robotHardwareVersion: null, robotSoftwareVersion: null, robotPackageName: string, robotPackageBranch: string, robotPackageCommit: string, annotatedTime: timestamp[s], annotatedByList: list<item: string>, qualityLabel: string, qualitySubLabel: string, qualityDesc: string, qualityCheckedTime: null, qualityCheckedOperator: null, teleOperator: string, teleType: string, dcPlanId: int64, dcSubPlanId: int64, annotations: list<item: struct<startSecond: int64, startNanoSecond: int64, endSecond: int64, endNanoSecond: int64, text: string, annotatedDuration: int64, annotatedTime: int64, annotatedBy: string, actionQualityLabel: string, notes: null>>>>
to
{'annotatedByList': List(Value('string')), 'annotatedTime': Value('string'), 'annotations': List({'actionQualityLabel': Value('string'), 'annotatedBy': Value('string'), 'annotatedDuration': Value('int64'), 'annotatedTime': Value('int64'), 'endNanoSecond': Value('int64'), 'endSecond': Value('int64'), 'notes': Value('null'), 'startNanoSecond': Value('int64'), 'startSecond': Value('int64'), 'text': Value('string')}), 'bagDigest': Value('string'), 'bagDuration': Value('int64'), 'bagRegion': Value('string'), 'bagSize': Value('int64'), 'bagStatus': Value('string'), 'dcPlanId': Value('int64'), 'dcProject': Value('string'), 'dcSubPlanId': Value('int64'), 'dcSubtaskName': Value('string'), 'dcTask': Value('string'), 'dcTaskDesc': Value('string'), 'id': Value('int64'), 'name': Value('string'), 'path': Value('string'), 'qualityCheckedOperator': Value('null'), 'qualityCheckedTime': Value('null'), 'qualityDesc': Value('string'), 'qualityLabel': Value('string'), 'qualitySubLabel': Value('string'), 'robotHardwareVersion': Value('null'), 'robotPackageBranch': Value('string'), 'robotPackageCommit': Value('string'), 'robotPackageName': Value('string'), 'robotSn': Value('string'), 'robotSoftwareVersion': Value('null'), 'robotType': Value('string'), 'teleOperator': Value('string'), 'teleType': Value('string')}
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1831, in _prepare_split_single
writer.write_table(table)
File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 714, in write_table
pa_table = table_cast(pa_table, self._schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2272, in table_cast
return cast_table_to_schema(table, schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2224, in cast_table_to_schema
cast_array_to_feature(
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1795, in wrapper
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2092, in cast_array_to_feature
raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
TypeError: Couldn't cast array of type
list<item: struct<id: int64, name: string, bagSize: int64, bagDuration: int64, bagStatus: string, path: string, bagRegion: string, bagDigest: string, dcProject: string, dcTask: string, dcSubtaskName: string, dcTaskDesc: string, robotType: string, robotSn: string, robotHardwareVersion: null, robotSoftwareVersion: null, robotPackageName: string, robotPackageBranch: string, robotPackageCommit: string, annotatedTime: timestamp[s], annotatedByList: list<item: string>, qualityLabel: string, qualitySubLabel: string, qualityDesc: string, qualityCheckedTime: null, qualityCheckedOperator: null, teleOperator: string, teleType: string, dcPlanId: int64, dcSubPlanId: int64, annotations: list<item: struct<startSecond: int64, startNanoSecond: int64, endSecond: int64, endNanoSecond: int64, text: string, annotatedDuration: int64, annotatedTime: int64, annotatedBy: string, actionQualityLabel: string, notes: null>>>>
to
{'annotatedByList': List(Value('string')), 'annotatedTime': Value('string'), 'annotations': List({'actionQualityLabel': Value('string'), 'annotatedBy': Value('string'), 'annotatedDuration': Value('int64'), 'annotatedTime': Value('int64'), 'endNanoSecond': Value('int64'), 'endSecond': Value('int64'), 'notes': Value('null'), 'startNanoSecond': Value('int64'), 'startSecond': Value('int64'), 'text': Value('string')}), 'bagDigest': Value('string'), 'bagDuration': Value('int64'), 'bagRegion': Value('string'), 'bagSize': Value('int64'), 'bagStatus': Value('string'), 'dcPlanId': Value('int64'), 'dcProject': Value('string'), 'dcSubPlanId': Value('int64'), 'dcSubtaskName': Value('string'), 'dcTask': Value('string'), 'dcTaskDesc': Value('string'), 'id': Value('int64'), 'name': Value('string'), 'path': Value('string'), 'qualityCheckedOperator': Value('null'), 'qualityCheckedTime': Value('null'), 'qualityDesc': Value('string'), 'qualityLabel': Value('string'), 'qualitySubLabel': Value('string'), 'robotHardwareVersion': Value('null'), 'robotPackageBranch': Value('string'), 'robotPackageCommit': Value('string'), 'robotPackageName': Value('string'), 'robotSn': Value('string'), 'robotSoftwareVersion': Value('null'), 'robotType': Value('string'), 'teleOperator': Value('string'), 'teleType': Value('string')}
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1334, in compute_config_parquet_and_info_response
parquet_operations, partial, estimated_dataset_info = stream_convert_to_parquet(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 911, in stream_convert_to_parquet
builder._prepare_split(
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1702, in _prepare_split
for job_id, done, content in self._prepare_split_single(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1858, in _prepare_split_single
raise DatasetGenerationError("An error occurred while generating the dataset") from e
datasets.exceptions.DatasetGenerationError: An error occurred while generating the datasetNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
trainingDataSetId
int64 | rawDataSetName
string | trainingDataSetVersion
string | rawDataList
dict |
|---|---|---|---|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 11:33:00",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753679097360,
"endNanoSecond": 655875683,
"endSecond": 1753076996,
"notes": null,
"startNanoSecond": 461297274,
"startSecond": 1753076984,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753679805170,
"endNanoSecond": 315354109,
"endSecond": 1753077006,
"notes": null,
"startNanoSecond": 525647163,
"startSecond": 1753076996,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753679952260,
"endNanoSecond": 399233580,
"endSecond": 1753077020,
"notes": null,
"startNanoSecond": 315354347,
"startSecond": 1753077006,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753680240293,
"endNanoSecond": 831994772,
"endSecond": 1753077029,
"notes": null,
"startNanoSecond": 385430098,
"startSecond": 1753077020,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753680266461,
"endNanoSecond": 915874243,
"endSecond": 1753077043,
"notes": null,
"startNanoSecond": 831994772,
"startSecond": 1753077029,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "qualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 28,
"annotatedTime": 1753680302093,
"endNanoSecond": 568358660,
"endSecond": 1753077071,
"notes": null,
"startNanoSecond": 915874243,
"startSecond": 1753077043,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753680427997,
"endNanoSecond": 179364443,
"endSecond": 1753077082,
"notes": null,
"startNanoSecond": 187068224,
"startSecond": 1753077071,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 34,
"annotatedTime": 1753680468622,
"endNanoSecond": 511084795,
"endSecond": 1753077116,
"notes": null,
"startNanoSecond": 179364443,
"startSecond": 1753077082,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "74a5291642be2f68de7a7763fc5804f5",
"bagDuration": 132,
"bagRegion": "suzhou",
"bagSize": 2292071792,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494794,
"name": "RB250319001_20250721134943986_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721134943986_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 10:18:02",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 20,
"annotatedTime": 1753755199623,
"endNanoSecond": 910901546,
"endSecond": 1753077219,
"notes": null,
"startNanoSecond": 948808670,
"startSecond": 1753077199,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753755248251,
"endNanoSecond": 654146433,
"endSecond": 1753077234,
"notes": null,
"startNanoSecond": 910901308,
"startSecond": 1753077219,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753755257891,
"endNanoSecond": 700428486,
"endSecond": 1753077244,
"notes": null,
"startNanoSecond": 654146433,
"startSecond": 1753077234,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753755269338,
"endNanoSecond": 877181530,
"endSecond": 1753077254,
"notes": null,
"startNanoSecond": 700428486,
"startSecond": 1753077244,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753755282041,
"endNanoSecond": 489955425,
"endSecond": 1753077269,
"notes": null,
"startNanoSecond": 877181530,
"startSecond": 1753077254,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753755296930,
"endNanoSecond": 797179699,
"endSecond": 1753077279,
"notes": null,
"startNanoSecond": 489955425,
"startSecond": 1753077269,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753755305618,
"endNanoSecond": 191105843,
"endSecond": 1753077289,
"notes": null,
"startNanoSecond": 797179699,
"startSecond": 1753077279,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753755314618,
"endNanoSecond": 258732557,
"endSecond": 1753077300,
"notes": null,
"startNanoSecond": 191105604,
"startSecond": 1753077289,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "322b5dddc71fb1d1ef4882f0ba307d4c",
"bagDuration": 100,
"bagRegion": "suzhou",
"bagSize": 1744830464,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494811,
"name": "RB250319001_20250721135319493_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721135319493_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 10:21:58",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753755560596,
"endNanoSecond": 982400894,
"endSecond": 1753077355,
"notes": null,
"startNanoSecond": 536336660,
"startSecond": 1753077339,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753755593348,
"endNanoSecond": 312368631,
"endSecond": 1753077369,
"notes": null,
"startNanoSecond": 982400894,
"startSecond": 1753077355,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753755613540,
"endNanoSecond": 487541199,
"endSecond": 1753077378,
"notes": null,
"startNanoSecond": 312368631,
"startSecond": 1753077369,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753755624964,
"endNanoSecond": 605693817,
"endSecond": 1753077390,
"notes": null,
"startNanoSecond": 487541199,
"startSecond": 1753077378,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753755641380,
"endNanoSecond": 53814173,
"endSecond": 1753077416,
"notes": null,
"startNanoSecond": 605693817,
"startSecond": 1753077390,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753755675236,
"endNanoSecond": 269741774,
"endSecond": 1753077435,
"notes": null,
"startNanoSecond": 53813934,
"startSecond": 1753077416,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753755691547,
"endNanoSecond": 198512554,
"endSecond": 1753077460,
"notes": null,
"startNanoSecond": 269741535,
"startSecond": 1753077435,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753755710749,
"endNanoSecond": 633143663,
"endSecond": 1753077472,
"notes": null,
"startNanoSecond": 198512554,
"startSecond": 1753077460,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "44ef2f502d0bc4302169fa1ed557461e",
"bagDuration": 133,
"bagRegion": "suzhou",
"bagSize": 2452577320,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494830,
"name": "RB250319001_20250721135539023_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721135539023_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 10:23:57",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753755725534,
"endNanoSecond": 838253260,
"endSecond": 1753077564,
"notes": null,
"startNanoSecond": 908425331,
"startSecond": 1753077545,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753755758565,
"endNanoSecond": 953342915,
"endSecond": 1753077576,
"notes": null,
"startNanoSecond": 838253260,
"startSecond": 1753077564,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753755767133,
"endNanoSecond": 282467127,
"endSecond": 1753077585,
"notes": null,
"startNanoSecond": 953342915,
"startSecond": 1753077576,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753755778394,
"endNanoSecond": 243592978,
"endSecond": 1753077602,
"notes": null,
"startNanoSecond": 282467365,
"startSecond": 1753077585,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753755786012,
"endNanoSecond": 147173882,
"endSecond": 1753077613,
"notes": null,
"startNanoSecond": 243592978,
"startSecond": 1753077602,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753755794764,
"endNanoSecond": 896790504,
"endSecond": 1753077628,
"notes": null,
"startNanoSecond": 147173882,
"startSecond": 1753077613,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753755804212,
"endNanoSecond": 283459663,
"endSecond": 1753077643,
"notes": null,
"startNanoSecond": 896790504,
"startSecond": 1753077628,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753755829388,
"endNanoSecond": 338697672,
"endSecond": 1753077662,
"notes": null,
"startNanoSecond": 283459902,
"startSecond": 1753077643,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "e461ea1234084857376cdd9c77eaf055",
"bagDuration": 116,
"bagRegion": "suzhou",
"bagSize": 2086781583,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494859,
"name": "RB250319001_20250721135905414_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721135905414_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 10:25:41",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753755844621,
"endNanoSecond": 824458361,
"endSecond": 1753077715,
"notes": null,
"startNanoSecond": 905867338,
"startSecond": 1753077698,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753755858477,
"endNanoSecond": 152558327,
"endSecond": 1753077727,
"notes": null,
"startNanoSecond": 824458361,
"startSecond": 1753077715,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753755866573,
"endNanoSecond": 804722071,
"endSecond": 1753077739,
"notes": null,
"startNanoSecond": 152558327,
"startSecond": 1753077727,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753755874549,
"endNanoSecond": 425040245,
"endSecond": 1753077746,
"notes": null,
"startNanoSecond": 804722071,
"startSecond": 1753077739,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753755883093,
"endNanoSecond": 576194763,
"endSecond": 1753077756,
"notes": null,
"startNanoSecond": 425040245,
"startSecond": 1753077746,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753755899397,
"endNanoSecond": 258185863,
"endSecond": 1753077770,
"notes": null,
"startNanoSecond": 576195002,
"startSecond": 1753077756,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 23,
"annotatedTime": 1753755918821,
"endNanoSecond": 944213152,
"endSecond": 1753077793,
"notes": null,
"startNanoSecond": 258185863,
"startSecond": 1753077770,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753755932469,
"endNanoSecond": 14463663,
"endSecond": 1753077812,
"notes": null,
"startNanoSecond": 944213152,
"startSecond": 1753077793,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "66f6e66e3c77122d73692edbe48202b0",
"bagDuration": 113,
"bagRegion": "suzhou",
"bagSize": 1948568780,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494867,
"name": "RB250319001_20250721140138398_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721140138398_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 10:28:45",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753755947214,
"endNanoSecond": 94527721,
"endSecond": 1753077935,
"notes": null,
"startNanoSecond": 903353930,
"startSecond": 1753077919,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753755959696,
"endNanoSecond": 629296303,
"endSecond": 1753077940,
"notes": null,
"startNanoSecond": 94527721,
"startSecond": 1753077935,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753755981080,
"endNanoSecond": 816594839,
"endSecond": 1753077951,
"notes": null,
"startNanoSecond": 629296541,
"startSecond": 1753077940,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753755991598,
"endNanoSecond": 654485703,
"endSecond": 1753077966,
"notes": null,
"startNanoSecond": 816595078,
"startSecond": 1753077951,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753756079326,
"endNanoSecond": 546412706,
"endSecond": 1753077976,
"notes": null,
"startNanoSecond": 654485703,
"startSecond": 1753077966,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753756093654,
"endNanoSecond": 25207281,
"endSecond": 1753077985,
"notes": null,
"startNanoSecond": 546412706,
"startSecond": 1753077976,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753756111230,
"endNanoSecond": 212505817,
"endSecond": 1753077996,
"notes": null,
"startNanoSecond": 25207281,
"startSecond": 1753077985,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753756119894,
"endNanoSecond": 441351175,
"endSecond": 1753078010,
"notes": null,
"startNanoSecond": 212505817,
"startSecond": 1753077996,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "47451ef217150d74a5b297033ada6db3",
"bagDuration": 91,
"bagRegion": "suzhou",
"bagSize": 1571532308,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494885,
"name": "RB250319001_20250721140519408_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721140519408_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 10:30:44",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753756131423,
"endNanoSecond": 473068953,
"endSecond": 1753078087,
"notes": null,
"startNanoSecond": 601788998,
"startSecond": 1753078069,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753756156662,
"endNanoSecond": 544438839,
"endSecond": 1753078094,
"notes": null,
"startNanoSecond": 473068953,
"startSecond": 1753078087,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753756163003,
"endNanoSecond": 344348907,
"endSecond": 1753078105,
"notes": null,
"startNanoSecond": 544438839,
"startSecond": 1753078094,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753756171054,
"endNanoSecond": 187140942,
"endSecond": 1753078113,
"notes": null,
"startNanoSecond": 344349146,
"startSecond": 1753078105,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753756186334,
"endNanoSecond": 729910612,
"endSecond": 1753078123,
"notes": null,
"startNanoSecond": 187141180,
"startSecond": 1753078113,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753756200247,
"endNanoSecond": 286924124,
"endSecond": 1753078139,
"notes": null,
"startNanoSecond": 729910612,
"startSecond": 1753078123,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753756213846,
"endNanoSecond": 172523022,
"endSecond": 1753078153,
"notes": null,
"startNanoSecond": 286924124,
"startSecond": 1753078139,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753756236934,
"endNanoSecond": 450297832,
"endSecond": 1753078168,
"notes": null,
"startNanoSecond": 172523022,
"startSecond": 1753078153,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "274cafd28fe9e4da42ce557507443239",
"bagDuration": 99,
"bagRegion": "suzhou",
"bagSize": 1564160819,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494896,
"name": "RB250319001_20250721140749114_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721140749114_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 13:26:29",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753766687384,
"endNanoSecond": 597664833,
"endSecond": 1753078343,
"notes": null,
"startNanoSecond": 43130875,
"startSecond": 1753078332,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753766702735,
"endNanoSecond": 78308344,
"endSecond": 1753078353,
"notes": null,
"startNanoSecond": 597664833,
"startSecond": 1753078343,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753766723064,
"endNanoSecond": 373871088,
"endSecond": 1753078361,
"notes": null,
"startNanoSecond": 78308105,
"startSecond": 1753078353,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753766736382,
"endNanoSecond": 310998917,
"endSecond": 1753078374,
"notes": null,
"startNanoSecond": 373871088,
"startSecond": 1753078361,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753766751479,
"endNanoSecond": 803367853,
"endSecond": 1753078390,
"notes": null,
"startNanoSecond": 310998917,
"startSecond": 1753078374,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753766767967,
"endNanoSecond": 970060110,
"endSecond": 1753078407,
"notes": null,
"startNanoSecond": 803367853,
"startSecond": 1753078390,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "580ffe9f2fa9b0633cd8c72628d783be",
"bagDuration": 76,
"bagRegion": "suzhou",
"bagSize": 1321384017,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494921,
"name": "RB250319001_20250721141211539_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721141211539_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 13:40:09",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753766811727,
"endNanoSecond": 229548931,
"endSecond": 1753078472,
"notes": null,
"startNanoSecond": 810796738,
"startSecond": 1753078459,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753766829888,
"endNanoSecond": 66362619,
"endSecond": 1753078478,
"notes": null,
"startNanoSecond": 229548931,
"startSecond": 1753078472,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753766844399,
"endNanoSecond": 609302282,
"endSecond": 1753078490,
"notes": null,
"startNanoSecond": 66362381,
"startSecond": 1753078478,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753766869175,
"endNanoSecond": 537804127,
"endSecond": 1753078501,
"notes": null,
"startNanoSecond": 609302044,
"startSecond": 1753078490,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753767547539,
"endNanoSecond": 551494598,
"endSecond": 1753078518,
"notes": null,
"startNanoSecond": 537803888,
"startSecond": 1753078501,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753767568155,
"endNanoSecond": 963746786,
"endSecond": 1753078531,
"notes": null,
"startNanoSecond": 551494360,
"startSecond": 1753078518,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753767580411,
"endNanoSecond": 643873692,
"endSecond": 1753078542,
"notes": null,
"startNanoSecond": 963746786,
"startSecond": 1753078531,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753767599571,
"endNanoSecond": 289656162,
"endSecond": 1753078555,
"notes": null,
"startNanoSecond": 643873692,
"startSecond": 1753078542,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "5246ce9fc571d024467aeadc583579d9",
"bagDuration": 95,
"bagRegion": "suzhou",
"bagSize": 1746812272,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494952,
"name": "RB250319001_20250721141419360_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721141419360_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 13:44:08",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753767741524,
"endNanoSecond": 159134150,
"endSecond": 1753078766,
"notes": null,
"startNanoSecond": 303110838,
"startSecond": 1753078754,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753767769996,
"endNanoSecond": 310839176,
"endSecond": 1753078777,
"notes": null,
"startNanoSecond": 159134150,
"startSecond": 1753078766,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753767781152,
"endNanoSecond": 49476385,
"endSecond": 1753078789,
"notes": null,
"startNanoSecond": 310839415,
"startSecond": 1753078777,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753767793076,
"endNanoSecond": 909931421,
"endSecond": 1753078798,
"notes": null,
"startNanoSecond": 49476385,
"startSecond": 1753078789,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753767805188,
"endNanoSecond": 474704742,
"endSecond": 1753078809,
"notes": null,
"startNanoSecond": 909931421,
"startSecond": 1753078798,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753767815413,
"endNanoSecond": 691750526,
"endSecond": 1753078817,
"notes": null,
"startNanoSecond": 474704742,
"startSecond": 1753078809,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753767828764,
"endNanoSecond": 717206001,
"endSecond": 1753078832,
"notes": null,
"startNanoSecond": 691750526,
"startSecond": 1753078817,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753767842444,
"endNanoSecond": 553053617,
"endSecond": 1753078844,
"notes": null,
"startNanoSecond": 717206001,
"startSecond": 1753078832,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "420046a42b97f30c159f6ebb3baba20a",
"bagDuration": 90,
"bagRegion": "suzhou",
"bagSize": 1486083850,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 494969,
"name": "RB250319001_20250721141913837_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721141913837_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 13:46:20",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753767859669,
"endNanoSecond": 622738361,
"endSecond": 1753079065,
"notes": null,
"startNanoSecond": 127588511,
"startSecond": 1753079052,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753767875909,
"endNanoSecond": 117873192,
"endSecond": 1753079079,
"notes": null,
"startNanoSecond": 622738361,
"startSecond": 1753079065,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753767889429,
"endNanoSecond": 479368210,
"endSecond": 1753079088,
"notes": null,
"startNanoSecond": 117873192,
"startSecond": 1753079079,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753767901013,
"endNanoSecond": 248289347,
"endSecond": 1753079092,
"notes": null,
"startNanoSecond": 479368210,
"startSecond": 1753079088,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753767928141,
"endNanoSecond": 394005775,
"endSecond": 1753079100,
"notes": null,
"startNanoSecond": 248289347,
"startSecond": 1753079092,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753767944061,
"endNanoSecond": 983348846,
"endSecond": 1753079114,
"notes": null,
"startNanoSecond": 394005775,
"startSecond": 1753079100,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753767958620,
"endNanoSecond": 329536200,
"endSecond": 1753079129,
"notes": null,
"startNanoSecond": 983348846,
"startSecond": 1753079114,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753767971238,
"endNanoSecond": 567244530,
"endSecond": 1753079145,
"notes": null,
"startNanoSecond": 329535961,
"startSecond": 1753079129,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "7c1a031d5868c54aa9f038437f67f719",
"bagDuration": 93,
"bagRegion": "suzhou",
"bagSize": 1583213445,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495002,
"name": "RB250319001_20250721142411632_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721142411632_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 11:51:12",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753768003518,
"endNanoSecond": 82189322,
"endSecond": 1753078925,
"notes": null,
"startNanoSecond": 506129265,
"startSecond": 1753078909,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753768022647,
"endNanoSecond": 367266178,
"endSecond": 1753078931,
"notes": null,
"startNanoSecond": 82189322,
"startSecond": 1753078925,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753768036014,
"endNanoSecond": 390891314,
"endSecond": 1753078943,
"notes": null,
"startNanoSecond": 367266178,
"startSecond": 1753078931,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753768047142,
"endNanoSecond": 582911491,
"endSecond": 1753078948,
"notes": null,
"startNanoSecond": 390891552,
"startSecond": 1753078943,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753768060549,
"endNanoSecond": 327366114,
"endSecond": 1753078957,
"notes": null,
"startNanoSecond": 582911491,
"startSecond": 1753078948,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753768072086,
"endNanoSecond": 214359283,
"endSecond": 1753078969,
"notes": null,
"startNanoSecond": 327366352,
"startSecond": 1753078957,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753933861635,
"endNanoSecond": 740937710,
"endSecond": 1753078982,
"notes": null,
"startNanoSecond": 214359522,
"startSecond": 1753078969,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 22,
"annotatedTime": 1753768093342,
"endNanoSecond": 602074623,
"endSecond": 1753079004,
"notes": null,
"startNanoSecond": 467673779,
"startSecond": 1753078982,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753768122302,
"endNanoSecond": 552734852,
"endSecond": 1753079014,
"notes": null,
"startNanoSecond": 602074862,
"startSecond": 1753079004,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "50a8c34a006c3ac0c63967882369510f",
"bagDuration": 105,
"bagRegion": "suzhou",
"bagSize": 1771820810,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495009,
"name": "RB250319001_20250721142149036_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721142149036_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 14:33:29",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753770700279,
"endNanoSecond": 493602276,
"endSecond": 1753079202,
"notes": null,
"startNanoSecond": 80181837,
"startSecond": 1753079191,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753770727567,
"endNanoSecond": 211655617,
"endSecond": 1753079216,
"notes": null,
"startNanoSecond": 493602276,
"startSecond": 1753079202,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753770743103,
"endNanoSecond": 649676323,
"endSecond": 1753079225,
"notes": null,
"startNanoSecond": 211655617,
"startSecond": 1753079216,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753770753487,
"endNanoSecond": 783064127,
"endSecond": 1753079232,
"notes": null,
"startNanoSecond": 649676323,
"startSecond": 1753079225,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753770763055,
"endNanoSecond": 13895988,
"endSecond": 1753079241,
"notes": null,
"startNanoSecond": 783063889,
"startSecond": 1753079232,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753770774863,
"endNanoSecond": 890894413,
"endSecond": 1753079250,
"notes": null,
"startNanoSecond": 13895988,
"startSecond": 1753079241,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753770790303,
"endNanoSecond": 169970036,
"endSecond": 1753079264,
"notes": null,
"startNanoSecond": 890894413,
"startSecond": 1753079250,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753770803407,
"endNanoSecond": 454783678,
"endSecond": 1753079275,
"notes": null,
"startNanoSecond": 169970036,
"startSecond": 1753079264,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "a6b7b137403d696a4480129f8a40ebc0",
"bagDuration": 84,
"bagRegion": "suzhou",
"bagSize": 1421239910,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495014,
"name": "RB250319001_20250721142630631_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721142630631_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 14:36:12",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753770814688,
"endNanoSecond": 595355034,
"endSecond": 1753079369,
"notes": null,
"startNanoSecond": 803864717,
"startSecond": 1753079355,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753770833921,
"endNanoSecond": 315661669,
"endSecond": 1753079382,
"notes": null,
"startNanoSecond": 595355034,
"startSecond": 1753079369,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753770849976,
"endNanoSecond": 885131598,
"endSecond": 1753079390,
"notes": null,
"startNanoSecond": 315661907,
"startSecond": 1753079382,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753770865847,
"endNanoSecond": 141030073,
"endSecond": 1753079404,
"notes": null,
"startNanoSecond": 885131598,
"startSecond": 1753079390,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753770876991,
"endNanoSecond": 727438927,
"endSecond": 1753079416,
"notes": null,
"startNanoSecond": 141030312,
"startSecond": 1753079404,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753770923080,
"endNanoSecond": 983337402,
"endSecond": 1753079429,
"notes": null,
"startNanoSecond": 727438927,
"startSecond": 1753079416,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753770940160,
"endNanoSecond": 900256395,
"endSecond": 1753079441,
"notes": null,
"startNanoSecond": 983337402,
"startSecond": 1753079429,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753770958256,
"endNanoSecond": 748386145,
"endSecond": 1753079458,
"notes": null,
"startNanoSecond": 900256395,
"startSecond": 1753079441,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "ed0efe048642755f32a59e07c07cc037",
"bagDuration": 103,
"bagRegion": "suzhou",
"bagSize": 1700958044,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495029,
"name": "RB250319001_20250721142915329_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721142915329_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 14:39:32",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753770979232,
"endNanoSecond": 766034126,
"endSecond": 1753079531,
"notes": null,
"startNanoSecond": 216778517,
"startSecond": 1753079519,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753770996560,
"endNanoSecond": 687676430,
"endSecond": 1753079535,
"notes": null,
"startNanoSecond": 766034126,
"startSecond": 1753079531,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753771011281,
"endNanoSecond": 564650297,
"endSecond": 1753079547,
"notes": null,
"startNanoSecond": 687676430,
"startSecond": 1753079535,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753771022688,
"endNanoSecond": 251219749,
"endSecond": 1753079563,
"notes": null,
"startNanoSecond": 564650297,
"startSecond": 1753079547,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753771037912,
"endNanoSecond": 792052984,
"endSecond": 1753079574,
"notes": null,
"startNanoSecond": 251219749,
"startSecond": 1753079563,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第四瓶矿泉水右侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753771120792,
"endNanoSecond": 436510801,
"endSecond": 1753079585,
"notes": null,
"startNanoSecond": 792052984,
"startSecond": 1753079574,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753771134017,
"endNanoSecond": 649625540,
"endSecond": 1753079597,
"notes": null,
"startNanoSecond": 436510801,
"startSecond": 1753079585,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753771162193,
"endNanoSecond": 361605167,
"endSecond": 1753079605,
"notes": null,
"startNanoSecond": 649625540,
"startSecond": 1753079597,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "c02ac8347c52009b482a1bfba4461901",
"bagDuration": 86,
"bagRegion": "suzhou",
"bagSize": 1423515320,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495052,
"name": "RB250319001_20250721143158728_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721143158728_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 14:42:57",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753771181002,
"endNanoSecond": 651104212,
"endSecond": 1753079972,
"notes": null,
"startNanoSecond": 907408714,
"startSecond": 1753079954,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753771197850,
"endNanoSecond": 91479778,
"endSecond": 1753079990,
"notes": null,
"startNanoSecond": 651104212,
"startSecond": 1753079972,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753771218521,
"endNanoSecond": 949073792,
"endSecond": 1753079999,
"notes": null,
"startNanoSecond": 91479540,
"startSecond": 1753079990,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753771295746,
"endNanoSecond": 290132284,
"endSecond": 1753080008,
"notes": null,
"startNanoSecond": 949073792,
"startSecond": 1753079999,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753771308578,
"endNanoSecond": 422558069,
"endSecond": 1753080020,
"notes": null,
"startNanoSecond": 290132284,
"startSecond": 1753080008,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753771324722,
"endNanoSecond": 763607264,
"endSecond": 1753080028,
"notes": null,
"startNanoSecond": 422558069,
"startSecond": 1753080020,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753771335314,
"endNanoSecond": 597379208,
"endSecond": 1753080045,
"notes": null,
"startNanoSecond": 763607025,
"startSecond": 1753080028,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753771361618,
"endNanoSecond": 471015215,
"endSecond": 1753080071,
"notes": null,
"startNanoSecond": 597379208,
"startSecond": 1753080045,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "4119b1728095906c4e4cbc2223f2da7a",
"bagDuration": 117,
"bagRegion": "suzhou",
"bagSize": 1963374673,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495109,
"name": "RB250319001_20250721143914444_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721143914444_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 14:48:18",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753771391899,
"endNanoSecond": 788830280,
"endSecond": 1753080145,
"notes": null,
"startNanoSecond": 799264431,
"startSecond": 1753080129,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753771411586,
"endNanoSecond": 184656620,
"endSecond": 1753080152,
"notes": null,
"startNanoSecond": 788830280,
"startSecond": 1753080145,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753771426189,
"endNanoSecond": 930677652,
"endSecond": 1753080161,
"notes": null,
"startNanoSecond": 184656620,
"startSecond": 1753080152,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753771450011,
"endNanoSecond": 174222469,
"endSecond": 1753080168,
"notes": null,
"startNanoSecond": 930677652,
"startSecond": 1753080161,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 21,
"annotatedTime": 1753771470683,
"endNanoSecond": 493643522,
"endSecond": 1753080189,
"notes": null,
"startNanoSecond": 174222469,
"startSecond": 1753080168,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753771513268,
"endNanoSecond": 635490894,
"endSecond": 1753080205,
"notes": null,
"startNanoSecond": 493643522,
"startSecond": 1753080189,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753771535772,
"endNanoSecond": 909280539,
"endSecond": 1753080223,
"notes": null,
"startNanoSecond": 635490894,
"startSecond": 1753080205,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753771550260,
"endNanoSecond": 807583094,
"endSecond": 1753080233,
"notes": null,
"startNanoSecond": 909280300,
"startSecond": 1753080223,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753771688044,
"endNanoSecond": 877625465,
"endSecond": 1753080246,
"notes": null,
"startNanoSecond": 807583094,
"startSecond": 1753080233,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "b4eb2ab5260a09029a7876b9a57f7755",
"bagDuration": 117,
"bagRegion": "suzhou",
"bagSize": 2049987051,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495117,
"name": "RB250319001_20250721144209342_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721144209342_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 14:50:41",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753771704486,
"endNanoSecond": 794699907,
"endSecond": 1753080361,
"notes": null,
"startNanoSecond": 684340000,
"startSecond": 1753080346,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753771719500,
"endNanoSecond": 940568924,
"endSecond": 1753080375,
"notes": null,
"startNanoSecond": 794699907,
"startSecond": 1753080361,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753771731854,
"endNanoSecond": 67724943,
"endSecond": 1753080386,
"notes": null,
"startNanoSecond": 940568924,
"startSecond": 1753080375,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753771742261,
"endNanoSecond": 963114738,
"endSecond": 1753080397,
"notes": null,
"startNanoSecond": 67724943,
"startSecond": 1753080386,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753771756014,
"endNanoSecond": 679043293,
"endSecond": 1753080405,
"notes": null,
"startNanoSecond": 963114738,
"startSecond": 1753080397,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753771772551,
"endNanoSecond": 735181570,
"endSecond": 1753080417,
"notes": null,
"startNanoSecond": 679043293,
"startSecond": 1753080405,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753771787013,
"endNanoSecond": 811949015,
"endSecond": 1753080442,
"notes": null,
"startNanoSecond": 735181570,
"startSecond": 1753080417,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 28,
"annotatedTime": 1753771832645,
"endNanoSecond": 272315741,
"endSecond": 1753080470,
"notes": null,
"startNanoSecond": 811949015,
"startSecond": 1753080442,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "85902d1848324ed1c0e43172b5d4cdfa",
"bagDuration": 124,
"bagRegion": "suzhou",
"bagSize": 2078288117,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495136,
"name": "RB250319001_20250721144546241_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721144546241_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 11:58:06",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753771850224,
"endNanoSecond": 807235003,
"endSecond": 1753080623,
"notes": null,
"startNanoSecond": 776093721,
"startSecond": 1753080607,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753771883519,
"endNanoSecond": 179179430,
"endSecond": 1753080628,
"notes": null,
"startNanoSecond": 807235003,
"startSecond": 1753080623,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753771897461,
"endNanoSecond": 562536240,
"endSecond": 1753080638,
"notes": null,
"startNanoSecond": 179179430,
"startSecond": 1753080628,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753771942838,
"endNanoSecond": 306436300,
"endSecond": 1753080647,
"notes": null,
"startNanoSecond": 562536240,
"startSecond": 1753080638,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753772151576,
"endNanoSecond": 143311024,
"endSecond": 1753080657,
"notes": null,
"startNanoSecond": 306436062,
"startSecond": 1753080647,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753772164375,
"endNanoSecond": 794213772,
"endSecond": 1753080664,
"notes": null,
"startNanoSecond": 143311024,
"startSecond": 1753080657,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753934275061,
"endNanoSecond": 750740767,
"endSecond": 1753080689,
"notes": null,
"startNanoSecond": 794213772,
"startSecond": 1753080664,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753772207416,
"endNanoSecond": 56309700,
"endSecond": 1753080707,
"notes": null,
"startNanoSecond": 386400938,
"startSecond": 1753080689,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 40,
"annotatedTime": 1753772225896,
"endNanoSecond": 675001621,
"endSecond": 1753080747,
"notes": null,
"startNanoSecond": 56309700,
"startSecond": 1753080707,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "cb324bd919e17f67354b8a13f3025159",
"bagDuration": 140,
"bagRegion": "suzhou",
"bagSize": 2516938915,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495156,
"name": "RB250319001_20250721145007139_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721145007139_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:04:44",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753772561595,
"endNanoSecond": 595161676,
"endSecond": 1753080881,
"notes": null,
"startNanoSecond": 459166765,
"startSecond": 1753080867,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753772571754,
"endNanoSecond": 56796074,
"endSecond": 1753080887,
"notes": null,
"startNanoSecond": 595161676,
"startSecond": 1753080881,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753772584002,
"endNanoSecond": 694974661,
"endSecond": 1753080896,
"notes": null,
"startNanoSecond": 56796074,
"startSecond": 1753080887,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 30,
"annotatedTime": 1753772596212,
"endNanoSecond": 252054930,
"endSecond": 1753080926,
"notes": null,
"startNanoSecond": 694974661,
"startSecond": 1753080896,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753772616155,
"endNanoSecond": 372142315,
"endSecond": 1753080936,
"notes": null,
"startNanoSecond": 252054930,
"startSecond": 1753080926,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753772634145,
"endNanoSecond": 170957088,
"endSecond": 1753080946,
"notes": null,
"startNanoSecond": 372142315,
"startSecond": 1753080936,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753772646538,
"endNanoSecond": 37769318,
"endSecond": 1753080963,
"notes": null,
"startNanoSecond": 170957088,
"startSecond": 1753080946,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 27,
"annotatedTime": 1753772673802,
"endNanoSecond": 960877180,
"endSecond": 1753080990,
"notes": null,
"startNanoSecond": 37769318,
"startSecond": 1753080963,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "c91bce9b48de837c0c8391efcbc38c05",
"bagDuration": 124,
"bagRegion": "suzhou",
"bagSize": 2146130984,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495177,
"name": "RB250319001_20250721145426938_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721145426938_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:20:49",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753773017861,
"endNanoSecond": 209259987,
"endSecond": 1753081290,
"notes": null,
"startNanoSecond": 523718357,
"startSecond": 1753081277,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753773247478,
"endNanoSecond": 600409031,
"endSecond": 1753081294,
"notes": null,
"startNanoSecond": 209259987,
"startSecond": 1753081290,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753773262582,
"endNanoSecond": 33247709,
"endSecond": 1753081304,
"notes": null,
"startNanoSecond": 600409031,
"startSecond": 1753081294,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753773454872,
"endNanoSecond": 105628252,
"endSecond": 1753081308,
"notes": null,
"startNanoSecond": 39633274,
"startSecond": 1753081304,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753773489479,
"endNanoSecond": 562665939,
"endSecond": 1753081316,
"notes": null,
"startNanoSecond": 105628490,
"startSecond": 1753081308,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 34,
"annotatedTime": 1753773514312,
"endNanoSecond": 716047525,
"endSecond": 1753081350,
"notes": null,
"startNanoSecond": 562666178,
"startSecond": 1753081316,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753773538432,
"endNanoSecond": 761860609,
"endSecond": 1753081375,
"notes": null,
"startNanoSecond": 716047525,
"startSecond": 1753081350,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 27,
"annotatedTime": 1753773621025,
"endNanoSecond": 512086868,
"endSecond": 1753081402,
"notes": null,
"startNanoSecond": 514864683,
"startSecond": 1753081375,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "e331bfdd2c385e6c9a1602f3de9f15c3",
"bagDuration": 125,
"bagRegion": "suzhou",
"bagSize": 2228244971,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495224,
"name": "RB250319001_20250721150117037_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721150117037_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:23:26",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753773686028,
"endNanoSecond": 160650492,
"endSecond": 1753081588,
"notes": null,
"startNanoSecond": 472577095,
"startSecond": 1753081576,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753773700145,
"endNanoSecond": 334962368,
"endSecond": 1753081592,
"notes": null,
"startNanoSecond": 160650253,
"startSecond": 1753081588,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753773712314,
"endNanoSecond": 657592058,
"endSecond": 1753081601,
"notes": null,
"startNanoSecond": 334962130,
"startSecond": 1753081592,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 21,
"annotatedTime": 1753773730426,
"endNanoSecond": 668295383,
"endSecond": 1753081622,
"notes": null,
"startNanoSecond": 657592058,
"startSecond": 1753081601,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753773747678,
"endNanoSecond": 573493958,
"endSecond": 1753081631,
"notes": null,
"startNanoSecond": 668295145,
"startSecond": 1753081622,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753773761018,
"endNanoSecond": 339548826,
"endSecond": 1753081640,
"notes": null,
"startNanoSecond": 573493958,
"startSecond": 1753081631,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753773773689,
"endNanoSecond": 645359039,
"endSecond": 1753081655,
"notes": null,
"startNanoSecond": 339548826,
"startSecond": 1753081640,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 28,
"annotatedTime": 1753773792722,
"endNanoSecond": 450189590,
"endSecond": 1753081683,
"notes": null,
"startNanoSecond": 645359039,
"startSecond": 1753081655,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "f817ce0f59f472697f5be877332fe939",
"bagDuration": 107,
"bagRegion": "suzhou",
"bagSize": 1907674316,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495249,
"name": "RB250319001_20250721150615937_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721150615937_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:26:38",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753773853538,
"endNanoSecond": 753073931,
"endSecond": 1753081892,
"notes": null,
"startNanoSecond": 456732035,
"startSecond": 1753081877,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753773892122,
"endNanoSecond": 495795727,
"endSecond": 1753081896,
"notes": null,
"startNanoSecond": 753073692,
"startSecond": 1753081892,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753773902149,
"endNanoSecond": 933964014,
"endSecond": 1753081905,
"notes": null,
"startNanoSecond": 495795727,
"startSecond": 1753081896,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753773916562,
"endNanoSecond": 25777817,
"endSecond": 1753081909,
"notes": null,
"startNanoSecond": 933964014,
"startSecond": 1753081905,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753773934235,
"endNanoSecond": 274843931,
"endSecond": 1753081926,
"notes": null,
"startNanoSecond": 25777578,
"startSecond": 1753081909,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753773954075,
"endNanoSecond": 148443222,
"endSecond": 1753081952,
"notes": null,
"startNanoSecond": 274843931,
"startSecond": 1753081926,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753773968523,
"endNanoSecond": 817514420,
"endSecond": 1753081965,
"notes": null,
"startNanoSecond": 148443222,
"startSecond": 1753081952,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 37,
"annotatedTime": 1753773982739,
"endNanoSecond": 565856695,
"endSecond": 1753082002,
"notes": null,
"startNanoSecond": 817514420,
"startSecond": 1753081965,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "8951600c7da58c37c24c8121cb6bf719",
"bagDuration": 125,
"bagRegion": "suzhou",
"bagSize": 2200667422,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495272,
"name": "RB250319001_20250721151116935_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721151116935_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 13:03:17",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753774012875,
"endNanoSecond": 739356041,
"endSecond": 1753082326,
"notes": null,
"startNanoSecond": 814529419,
"startSecond": 1753082314,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753774037452,
"endNanoSecond": 758299589,
"endSecond": 1753082329,
"notes": null,
"startNanoSecond": 739356041,
"startSecond": 1753082326,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753774051678,
"endNanoSecond": 418918610,
"endSecond": 1753082339,
"notes": null,
"startNanoSecond": 758299351,
"startSecond": 1753082329,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753774072268,
"endNanoSecond": 683326244,
"endSecond": 1753082349,
"notes": null,
"startNanoSecond": 418918371,
"startSecond": 1753082339,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753774083804,
"endNanoSecond": 344154358,
"endSecond": 1753082367,
"notes": null,
"startNanoSecond": 683326006,
"startSecond": 1753082349,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753774103156,
"endNanoSecond": 344354630,
"endSecond": 1753082375,
"notes": null,
"startNanoSecond": 344154358,
"startSecond": 1753082367,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753774144395,
"endNanoSecond": 646649122,
"endSecond": 1753082391,
"notes": null,
"startNanoSecond": 344354391,
"startSecond": 1753082375,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753774163621,
"endNanoSecond": 175264359,
"endSecond": 1753082404,
"notes": null,
"startNanoSecond": 646649122,
"startSecond": 1753082391,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753774186805,
"endNanoSecond": 863947868,
"endSecond": 1753082430,
"notes": null,
"startNanoSecond": 175264359,
"startSecond": 1753082404,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "d25d78e967c2b5473b36854233d90f41",
"bagDuration": 116,
"bagRegion": "suzhou",
"bagSize": 2003954565,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495298,
"name": "RB250319001_20250721151834333_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721151834333_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:39:45",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753774466238,
"endNanoSecond": 440136194,
"endSecond": 1753082810,
"notes": null,
"startNanoSecond": 521274567,
"startSecond": 1753082799,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753774494918,
"endNanoSecond": 376060009,
"endSecond": 1753082815,
"notes": null,
"startNanoSecond": 440136194,
"startSecond": 1753082810,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753774521679,
"endNanoSecond": 453026056,
"endSecond": 1753082823,
"notes": null,
"startNanoSecond": 376060009,
"startSecond": 1753082815,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 28,
"annotatedTime": 1753774535782,
"endNanoSecond": 273687363,
"endSecond": 1753082851,
"notes": null,
"startNanoSecond": 453026295,
"startSecond": 1753082823,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753774709528,
"endNanoSecond": 594255209,
"endSecond": 1753082861,
"notes": null,
"startNanoSecond": 273687601,
"startSecond": 1753082851,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753774743744,
"endNanoSecond": 876340151,
"endSecond": 1753082867,
"notes": null,
"startNanoSecond": 594255447,
"startSecond": 1753082861,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753774756440,
"endNanoSecond": 581552029,
"endSecond": 1753082883,
"notes": null,
"startNanoSecond": 876340151,
"startSecond": 1753082867,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 31,
"annotatedTime": 1753774772952,
"endNanoSecond": 517547846,
"endSecond": 1753082914,
"notes": null,
"startNanoSecond": 581552267,
"startSecond": 1753082883,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "5613e349541cf278a82f6bbc4095b880",
"bagDuration": 115,
"bagRegion": "suzhou",
"bagSize": 1986065858,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495317,
"name": "RB250319001_20250721152639031_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721152639031_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:47:25",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753774798449,
"endNanoSecond": 450506926,
"endSecond": 1753083016,
"notes": null,
"startNanoSecond": 990020514,
"startSecond": 1753083002,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753775131139,
"endNanoSecond": 802646637,
"endSecond": 1753083022,
"notes": null,
"startNanoSecond": 450507164,
"startSecond": 1753083016,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753775141147,
"endNanoSecond": 515959263,
"endSecond": 1753083030,
"notes": null,
"startNanoSecond": 802646875,
"startSecond": 1753083022,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753775152066,
"endNanoSecond": 204443455,
"endSecond": 1753083035,
"notes": null,
"startNanoSecond": 515959263,
"startSecond": 1753083030,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775159955,
"endNanoSecond": 278928757,
"endSecond": 1753083044,
"notes": null,
"startNanoSecond": 204443455,
"startSecond": 1753083035,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753775185330,
"endNanoSecond": 689758301,
"endSecond": 1753083051,
"notes": null,
"startNanoSecond": 278928757,
"startSecond": 1753083044,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753775200563,
"endNanoSecond": 947075844,
"endSecond": 1753083076,
"notes": null,
"startNanoSecond": 689758539,
"startSecond": 1753083051,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753775225451,
"endNanoSecond": 836458445,
"endSecond": 1753083087,
"notes": null,
"startNanoSecond": 947076082,
"startSecond": 1753083076,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 32,
"annotatedTime": 1753775235099,
"endNanoSecond": 268679619,
"endSecond": 1753083119,
"notes": null,
"startNanoSecond": 836458445,
"startSecond": 1753083087,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "ae297a692565ede5b87a9f1369c5afd1",
"bagDuration": 116,
"bagRegion": "suzhou",
"bagSize": 2013968465,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495336,
"name": "RB250319001_20250721153002530_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721153002530_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:54:57",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753775254316,
"endNanoSecond": 961758375,
"endSecond": 1753083297,
"notes": null,
"startNanoSecond": 656198025,
"startSecond": 1753083287,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753775275079,
"endNanoSecond": 446975946,
"endSecond": 1753083303,
"notes": null,
"startNanoSecond": 961758375,
"startSecond": 1753083297,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775289396,
"endNanoSecond": 589005232,
"endSecond": 1753083312,
"notes": null,
"startNanoSecond": 280757189,
"startSecond": 1753083303,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775308907,
"endNanoSecond": 897253036,
"endSecond": 1753083321,
"notes": null,
"startNanoSecond": 589004993,
"startSecond": 1753083312,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753775324764,
"endNanoSecond": 186686993,
"endSecond": 1753083338,
"notes": null,
"startNanoSecond": 897253036,
"startSecond": 1753083321,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753775631558,
"endNanoSecond": 666529179,
"endSecond": 1753083345,
"notes": null,
"startNanoSecond": 186686993,
"startSecond": 1753083338,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753775644918,
"endNanoSecond": 961338520,
"endSecond": 1753083359,
"notes": null,
"startNanoSecond": 666528940,
"startSecond": 1753083345,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753775657805,
"endNanoSecond": 250772476,
"endSecond": 1753083376,
"notes": null,
"startNanoSecond": 961338282,
"startSecond": 1753083359,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 39,
"annotatedTime": 1753775686231,
"endNanoSecond": 449819803,
"endSecond": 1753083415,
"notes": null,
"startNanoSecond": 250772238,
"startSecond": 1753083376,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "6543bcbfa24b59cf833fbac8f3c15c78",
"bagDuration": 128,
"bagRegion": "suzhou",
"bagSize": 2149727600,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495344,
"name": "RB250319001_20250721153447130_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721153447130_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 16:01:11",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753775905080,
"endNanoSecond": 62783003,
"endSecond": 1753083523,
"notes": null,
"startNanoSecond": 446440458,
"startSecond": 1753083511,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753775917087,
"endNanoSecond": 541372776,
"endSecond": 1753083527,
"notes": null,
"startNanoSecond": 62782764,
"startSecond": 1753083523,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775928752,
"endNanoSecond": 778464317,
"endSecond": 1753083536,
"notes": null,
"startNanoSecond": 541372776,
"startSecond": 1753083527,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753775943161,
"endNanoSecond": 557274580,
"endSecond": 1753083540,
"notes": null,
"startNanoSecond": 778464317,
"startSecond": 1753083536,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775959912,
"endNanoSecond": 514454126,
"endSecond": 1753083549,
"notes": null,
"startNanoSecond": 557274580,
"startSecond": 1753083540,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753775977671,
"endNanoSecond": 212030649,
"endSecond": 1753083557,
"notes": null,
"startNanoSecond": 514454126,
"startSecond": 1753083549,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 20,
"annotatedTime": 1753776006335,
"endNanoSecond": 505640745,
"endSecond": 1753083577,
"notes": null,
"startNanoSecond": 212030411,
"startSecond": 1753083557,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753776031481,
"endNanoSecond": 460617065,
"endSecond": 1753083593,
"notes": null,
"startNanoSecond": 505640745,
"startSecond": 1753083577,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753776062432,
"endNanoSecond": 48497915,
"endSecond": 1753083619,
"notes": null,
"startNanoSecond": 298268318,
"startSecond": 1753083593,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "23f8d0313a88be1ddbdbc07bc92ef153",
"bagDuration": 108,
"bagRegion": "suzhou",
"bagSize": 1905115791,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495359,
"name": "RB250319001_20250721153830927_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721153830927_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-29 15:58:02",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753775723246,
"endNanoSecond": 95730305,
"endSecond": 1753083683,
"notes": null,
"startNanoSecond": 514092445,
"startSecond": 1753083671,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753775742774,
"endNanoSecond": 266893148,
"endSecond": 1753083686,
"notes": null,
"startNanoSecond": 95730305,
"startSecond": 1753083683,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775757488,
"endNanoSecond": 228874922,
"endSecond": 1753083695,
"notes": null,
"startNanoSecond": 266893148,
"startSecond": 1753083686,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753775774614,
"endNanoSecond": 743940592,
"endSecond": 1753083700,
"notes": null,
"startNanoSecond": 228874922,
"startSecond": 1753083695,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753775787776,
"endNanoSecond": 290715218,
"endSecond": 1753083713,
"notes": null,
"startNanoSecond": 743940592,
"startSecond": 1753083700,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753775830215,
"endNanoSecond": 252696991,
"endSecond": 1753083722,
"notes": null,
"startNanoSecond": 290714979,
"startSecond": 1753083713,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753775846191,
"endNanoSecond": 247964859,
"endSecond": 1753083734,
"notes": null,
"startNanoSecond": 252696991,
"startSecond": 1753083722,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753775858182,
"endNanoSecond": 896175146,
"endSecond": 1753083751,
"notes": null,
"startNanoSecond": 247964859,
"startSecond": 1753083734,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753775872006,
"endNanoSecond": 449974775,
"endSecond": 1753083777,
"notes": null,
"startNanoSecond": 896175146,
"startSecond": 1753083751,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "dabd2a9eb037629cf1339b852ea9af83",
"bagDuration": 106,
"bagRegion": "suzhou",
"bagSize": 1874308628,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495373,
"name": "RB250319001_20250721154110927_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721154110927_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:06:16",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753923822078,
"endNanoSecond": 965754509,
"endSecond": 1753083955,
"notes": null,
"startNanoSecond": 990410328,
"startSecond": 1753083943,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753923851949,
"endNanoSecond": 733278513,
"endSecond": 1753083959,
"notes": null,
"startNanoSecond": 965754509,
"startSecond": 1753083955,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753923861978,
"endNanoSecond": 344762087,
"endSecond": 1753083968,
"notes": null,
"startNanoSecond": 733278513,
"startSecond": 1753083959,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753923878456,
"endNanoSecond": 418027878,
"endSecond": 1753083976,
"notes": null,
"startNanoSecond": 344762087,
"startSecond": 1753083968,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753923895260,
"endNanoSecond": 818521500,
"endSecond": 1753083983,
"notes": null,
"startNanoSecond": 418027878,
"startSecond": 1753083976,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753923919125,
"endNanoSecond": 335253000,
"endSecond": 1753083989,
"notes": null,
"startNanoSecond": 818521500,
"startSecond": 1753083983,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753923934309,
"endNanoSecond": 961883307,
"endSecond": 1753084006,
"notes": null,
"startNanoSecond": 335253000,
"startSecond": 1753083989,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 22,
"annotatedTime": 1753923948237,
"endNanoSecond": 221482992,
"endSecond": 1753084028,
"notes": null,
"startNanoSecond": 961883307,
"startSecond": 1753084006,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753923968372,
"endNanoSecond": 439640045,
"endSecond": 1753084047,
"notes": null,
"startNanoSecond": 221483231,
"startSecond": 1753084028,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "6ab31157bfd43a729ebc83b00c31fe5a",
"bagDuration": 103,
"bagRegion": "suzhou",
"bagSize": 1902588723,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495376,
"name": "RB250319001_20250721154543526_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721154543526_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:09:37",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753924044430,
"endNanoSecond": 498159170,
"endSecond": 1753084238,
"notes": null,
"startNanoSecond": 749047518,
"startSecond": 1753084225,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753924061126,
"endNanoSecond": 757167816,
"endSecond": 1753084243,
"notes": null,
"startNanoSecond": 498159170,
"startSecond": 1753084238,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753924078573,
"endNanoSecond": 99918127,
"endSecond": 1753084258,
"notes": null,
"startNanoSecond": 757167578,
"startSecond": 1753084243,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 24,
"annotatedTime": 1753924094741,
"endNanoSecond": 641957998,
"endSecond": 1753084282,
"notes": null,
"startNanoSecond": 99918127,
"startSecond": 1753084258,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753924119990,
"endNanoSecond": 56439161,
"endSecond": 1753084299,
"notes": null,
"startNanoSecond": 641957998,
"startSecond": 1753084282,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 22,
"annotatedTime": 1753924137678,
"endNanoSecond": 367384434,
"endSecond": 1753084321,
"notes": null,
"startNanoSecond": 56438923,
"startSecond": 1753084299,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753924151718,
"endNanoSecond": 160312653,
"endSecond": 1753084333,
"notes": null,
"startNanoSecond": 367384195,
"startSecond": 1753084321,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753924167342,
"endNanoSecond": 272491932,
"endSecond": 1753084348,
"notes": null,
"startNanoSecond": 160312414,
"startSecond": 1753084333,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "d1c00c676f9eadfb60188c70bc3e0b0b",
"bagDuration": 123,
"bagRegion": "suzhou",
"bagSize": 2070927114,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495394,
"name": "RB250319001_20250721155025223_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721155025223_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:12:55",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753924188519,
"endNanoSecond": 264492989,
"endSecond": 1753086191,
"notes": null,
"startNanoSecond": 477904558,
"startSecond": 1753086180,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 2,
"annotatedTime": 1753924223991,
"endNanoSecond": 826307535,
"endSecond": 1753086193,
"notes": null,
"startNanoSecond": 264492989,
"startSecond": 1753086191,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753924238750,
"endNanoSecond": 129740000,
"endSecond": 1753086203,
"notes": null,
"startNanoSecond": 691475391,
"startSecond": 1753086193,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753924260407,
"endNanoSecond": 163507938,
"endSecond": 1753086212,
"notes": null,
"startNanoSecond": 129740238,
"startSecond": 1753086203,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753924272758,
"endNanoSecond": 972581625,
"endSecond": 1753086224,
"notes": null,
"startNanoSecond": 163507938,
"startSecond": 1753086212,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753924287263,
"endNanoSecond": 444534540,
"endSecond": 1753086231,
"notes": null,
"startNanoSecond": 972581625,
"startSecond": 1753086224,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753924302111,
"endNanoSecond": 253608465,
"endSecond": 1753086244,
"notes": null,
"startNanoSecond": 444534779,
"startSecond": 1753086231,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753924320639,
"endNanoSecond": 332346678,
"endSecond": 1753086257,
"notes": null,
"startNanoSecond": 253608465,
"startSecond": 1753086244,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 27,
"annotatedTime": 1753924357087,
"endNanoSecond": 140811205,
"endSecond": 1753086284,
"notes": null,
"startNanoSecond": 332346916,
"startSecond": 1753086257,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "03351a795c09edce11ba7f2884cb41f8",
"bagDuration": 104,
"bagRegion": "suzhou",
"bagSize": 1829408604,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495509,
"name": "RB250319001_20250721162300014_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721162300014_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:15:21",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753924383426,
"endNanoSecond": 423064232,
"endSecond": 1753086357,
"notes": null,
"startNanoSecond": 483122826,
"startSecond": 1753086347,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 2,
"annotatedTime": 1753924400410,
"endNanoSecond": 869819164,
"endSecond": 1753086359,
"notes": null,
"startNanoSecond": 423064470,
"startSecond": 1753086357,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753924413152,
"endNanoSecond": 363005877,
"endSecond": 1753086367,
"notes": null,
"startNanoSecond": 869819164,
"startSecond": 1753086359,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753924427451,
"endNanoSecond": 538336515,
"endSecond": 1753086376,
"notes": null,
"startNanoSecond": 363005877,
"startSecond": 1753086367,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 23,
"annotatedTime": 1753924443528,
"endNanoSecond": 170818806,
"endSecond": 1753086399,
"notes": null,
"startNanoSecond": 538336515,
"startSecond": 1753086376,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753924468160,
"endNanoSecond": 816927671,
"endSecond": 1753086406,
"notes": null,
"startNanoSecond": 170818806,
"startSecond": 1753086399,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 16,
"annotatedTime": 1753924481447,
"endNanoSecond": 414989710,
"endSecond": 1753086422,
"notes": null,
"startNanoSecond": 816927671,
"startSecond": 1753086406,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753924496047,
"endNanoSecond": 719219208,
"endSecond": 1753086435,
"notes": null,
"startNanoSecond": 414989710,
"startSecond": 1753086422,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 30,
"annotatedTime": 1753924511408,
"endNanoSecond": 53993702,
"endSecond": 1753086465,
"notes": null,
"startNanoSecond": 719219208,
"startSecond": 1753086435,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "6c5aee9814c0d66bbdd7026e234b168b",
"bagDuration": 118,
"bagRegion": "suzhou",
"bagSize": 2011734999,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495519,
"name": "RB250319001_20250721162547015_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721162547015_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:17:29",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753924528624,
"endNanoSecond": 645227671,
"endSecond": 1753086773,
"notes": null,
"startNanoSecond": 800463676,
"startSecond": 1753086762,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753924541554,
"endNanoSecond": 175318718,
"endSecond": 1753086778,
"notes": null,
"startNanoSecond": 645227432,
"startSecond": 1753086773,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753924551825,
"endNanoSecond": 647327662,
"endSecond": 1753086787,
"notes": null,
"startNanoSecond": 175318718,
"startSecond": 1753086778,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753924563960,
"endNanoSecond": 628317118,
"endSecond": 1753086791,
"notes": null,
"startNanoSecond": 647327662,
"startSecond": 1753086787,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753924574800,
"endNanoSecond": 551223993,
"endSecond": 1753086800,
"notes": null,
"startNanoSecond": 628316879,
"startSecond": 1753086791,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753924598840,
"endNanoSecond": 748682022,
"endSecond": 1753086809,
"notes": null,
"startNanoSecond": 551223993,
"startSecond": 1753086800,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753924610912,
"endNanoSecond": 555424213,
"endSecond": 1753086828,
"notes": null,
"startNanoSecond": 748681784,
"startSecond": 1753086809,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753924624936,
"endNanoSecond": 694799900,
"endSecond": 1753086842,
"notes": null,
"startNanoSecond": 555424213,
"startSecond": 1753086828,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753924640225,
"endNanoSecond": 341722727,
"endSecond": 1753086868,
"notes": null,
"startNanoSecond": 694799900,
"startSecond": 1753086842,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "c98fb719c8655f13e89e2826d8219261",
"bagDuration": 106,
"bagRegion": "suzhou",
"bagSize": 1798496583,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495552,
"name": "RB250319001_20250721163242314_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721163242314_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:22:38",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753924656067,
"endNanoSecond": 733291626,
"endSecond": 1753087357,
"notes": null,
"startNanoSecond": 717752218,
"startSecond": 1753087343,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753924673227,
"endNanoSecond": 626497030,
"endSecond": 1753087361,
"notes": null,
"startNanoSecond": 733291626,
"startSecond": 1753087357,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753924683257,
"endNanoSecond": 412907839,
"endSecond": 1753087369,
"notes": null,
"startNanoSecond": 626497030,
"startSecond": 1753087361,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753924692257,
"endNanoSecond": 306113243,
"endSecond": 1753087373,
"notes": null,
"startNanoSecond": 412907600,
"startSecond": 1753087369,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753924706139,
"endNanoSecond": 51359892,
"endSecond": 1753087384,
"notes": null,
"startNanoSecond": 306113005,
"startSecond": 1753087373,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753924893026,
"endNanoSecond": 657575607,
"endSecond": 1753087389,
"notes": null,
"startNanoSecond": 51359892,
"startSecond": 1753087384,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 29,
"annotatedTime": 1753924905634,
"endNanoSecond": 467295408,
"endSecond": 1753087418,
"notes": null,
"startNanoSecond": 657575607,
"startSecond": 1753087389,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753924923706,
"endNanoSecond": 327106714,
"endSecond": 1753087432,
"notes": null,
"startNanoSecond": 467295408,
"startSecond": 1753087418,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 31,
"annotatedTime": 1753924947170,
"endNanoSecond": 445983887,
"endSecond": 1753087463,
"notes": null,
"startNanoSecond": 327106476,
"startSecond": 1753087432,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "dbfcec6e4b3e26d499f773b3e8499bef",
"bagDuration": 120,
"bagRegion": "suzhou",
"bagSize": 2096260710,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495623,
"name": "RB250319001_20250721164223223_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721164223223_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:28:01",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753925101997,
"endNanoSecond": 223717690,
"endSecond": 1753087524,
"notes": null,
"startNanoSecond": 927725077,
"startSecond": 1753087512,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753925194682,
"endNanoSecond": 989048481,
"endSecond": 1753087527,
"notes": null,
"startNanoSecond": 223717690,
"startSecond": 1753087524,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753925202387,
"endNanoSecond": 692016602,
"endSecond": 1753087537,
"notes": null,
"startNanoSecond": 989048481,
"startSecond": 1753087527,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753925210621,
"endNanoSecond": 657139540,
"endSecond": 1753087545,
"notes": null,
"startNanoSecond": 692016602,
"startSecond": 1753087537,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753925224723,
"endNanoSecond": 346364737,
"endSecond": 1753087554,
"notes": null,
"startNanoSecond": 657139540,
"startSecond": 1753087545,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753925237196,
"endNanoSecond": 994360924,
"endSecond": 1753087559,
"notes": null,
"startNanoSecond": 346364737,
"startSecond": 1753087554,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753925247076,
"endNanoSecond": 531374454,
"endSecond": 1753087578,
"notes": null,
"startNanoSecond": 994360924,
"startSecond": 1753087559,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753925262468,
"endNanoSecond": 185722589,
"endSecond": 1753087595,
"notes": null,
"startNanoSecond": 531374454,
"startSecond": 1753087578,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 29,
"annotatedTime": 1753925273140,
"endNanoSecond": 269735575,
"endSecond": 1753087624,
"notes": null,
"startNanoSecond": 185722589,
"startSecond": 1753087595,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "e7ce716f47f72ef879ee053e508a6222",
"bagDuration": 111,
"bagRegion": "suzhou",
"bagSize": 1996237045,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495630,
"name": "RB250319001_20250721164512424_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721164512424_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:30:23",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753925288724,
"endNanoSecond": 119340181,
"endSecond": 1753088181,
"notes": null,
"startNanoSecond": 438200474,
"startSecond": 1753088168,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753925301380,
"endNanoSecond": 774442196,
"endSecond": 1753088185,
"notes": null,
"startNanoSecond": 119340181,
"startSecond": 1753088181,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753925316068,
"endNanoSecond": 566208124,
"endSecond": 1753088195,
"notes": null,
"startNanoSecond": 774442196,
"startSecond": 1753088185,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753925340165,
"endNanoSecond": 505476236,
"endSecond": 1753088201,
"notes": null,
"startNanoSecond": 566208124,
"startSecond": 1753088195,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753925360084,
"endNanoSecond": 173596859,
"endSecond": 1753088210,
"notes": null,
"startNanoSecond": 505476236,
"startSecond": 1753088201,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753925378476,
"endNanoSecond": 520676136,
"endSecond": 1753088218,
"notes": null,
"startNanoSecond": 173596859,
"startSecond": 1753088210,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 22,
"annotatedTime": 1753925388844,
"endNanoSecond": 512019873,
"endSecond": 1753088240,
"notes": null,
"startNanoSecond": 520676136,
"startSecond": 1753088218,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753925402380,
"endNanoSecond": 45657635,
"endSecond": 1753088257,
"notes": null,
"startNanoSecond": 512019634,
"startSecond": 1753088240,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 34,
"annotatedTime": 1753925413116,
"endNanoSecond": 851072073,
"endSecond": 1753088291,
"notes": null,
"startNanoSecond": 45657635,
"startSecond": 1753088257,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "0a40050b45a477ac802514451bd3a96c",
"bagDuration": 123,
"bagRegion": "suzhou",
"bagSize": 2198675128,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495727,
"name": "RB250319001_20250721165607919_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721165607919_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:32:25",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753925429637,
"endNanoSecond": 407365322,
"endSecond": 1753088792,
"notes": null,
"startNanoSecond": 11768103,
"startSecond": 1753088779,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753925442213,
"endNanoSecond": 304084539,
"endSecond": 1753088809,
"notes": null,
"startNanoSecond": 407365322,
"startSecond": 1753088792,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753925470573,
"endNanoSecond": 350782394,
"endSecond": 1753088819,
"notes": null,
"startNanoSecond": 304084539,
"startSecond": 1753088809,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753925483189,
"endNanoSecond": 788589478,
"endSecond": 1753088828,
"notes": null,
"startNanoSecond": 350782394,
"startSecond": 1753088819,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753925491276,
"endNanoSecond": 141976833,
"endSecond": 1753088846,
"notes": null,
"startNanoSecond": 788589478,
"startSecond": 1753088828,
"text": "左手拿起从左往右数的第二瓶矿泉水,左手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753925512925,
"endNanoSecond": 296443462,
"endSecond": 1753088853,
"notes": null,
"startNanoSecond": 141976833,
"startSecond": 1753088846,
"text": "左手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753925523509,
"endNanoSecond": 713145733,
"endSecond": 1753088864,
"notes": null,
"startNanoSecond": 296443462,
"startSecond": 1753088853,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 32,
"annotatedTime": 1753925534053,
"endNanoSecond": 44857740,
"endSecond": 1753088896,
"notes": null,
"startNanoSecond": 713145733,
"startSecond": 1753088864,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "cc003927afa4038edc7444f68b9dd0de",
"bagDuration": 117,
"bagRegion": "suzhou",
"bagSize": 2109755883,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495742,
"name": "RB250319001_20250721170618517_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721170618517_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:34:10",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753925552069,
"endNanoSecond": 608710527,
"endSecond": 1753089058,
"notes": null,
"startNanoSecond": 153801680,
"startSecond": 1753089048,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753925563224,
"endNanoSecond": 851282120,
"endSecond": 1753089062,
"notes": null,
"startNanoSecond": 608710527,
"startSecond": 1753089058,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753925573974,
"endNanoSecond": 94027519,
"endSecond": 1753089072,
"notes": null,
"startNanoSecond": 851282120,
"startSecond": 1753089062,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753925586495,
"endNanoSecond": 3323793,
"endSecond": 1753089078,
"notes": null,
"startNanoSecond": 94027519,
"startSecond": 1753089072,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 21,
"annotatedTime": 1753925602389,
"endNanoSecond": 216182232,
"endSecond": 1753089099,
"notes": null,
"startNanoSecond": 3323793,
"startSecond": 1753089078,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753925610990,
"endNanoSecond": 95417738,
"endSecond": 1753089112,
"notes": null,
"startNanoSecond": 216182232,
"startSecond": 1753089099,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 21,
"annotatedTime": 1753925624869,
"endNanoSecond": 459796429,
"endSecond": 1753089133,
"notes": null,
"startNanoSecond": 95417738,
"startSecond": 1753089112,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 31,
"annotatedTime": 1753925637318,
"endNanoSecond": 646960020,
"endSecond": 1753089164,
"notes": null,
"startNanoSecond": 459796667,
"startSecond": 1753089133,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "33cbca37ba167618faf9b5efcf12eace",
"bagDuration": 116,
"bagRegion": "suzhou",
"bagSize": 2023961395,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495765,
"name": "RB250319001_20250721171047617_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721171047617_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:36:19",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753925656736,
"endNanoSecond": 711539984,
"endSecond": 1753089236,
"notes": null,
"startNanoSecond": 481501579,
"startSecond": 1753089223,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753925671022,
"endNanoSecond": 717500687,
"endSecond": 1753089241,
"notes": null,
"startNanoSecond": 711540222,
"startSecond": 1753089236,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753925687056,
"endNanoSecond": 444559097,
"endSecond": 1753089252,
"notes": null,
"startNanoSecond": 717500687,
"startSecond": 1753089241,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753925700479,
"endNanoSecond": 668637037,
"endSecond": 1753089260,
"notes": null,
"startNanoSecond": 444559097,
"startSecond": 1753089252,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 30,
"annotatedTime": 1753925712494,
"endNanoSecond": 346831799,
"endSecond": 1753089290,
"notes": null,
"startNanoSecond": 668637276,
"startSecond": 1753089260,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753925724782,
"endNanoSecond": 783066750,
"endSecond": 1753089296,
"notes": null,
"startNanoSecond": 346832037,
"startSecond": 1753089290,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753925744749,
"endNanoSecond": 510125160,
"endSecond": 1753089307,
"notes": null,
"startNanoSecond": 783066988,
"startSecond": 1753089296,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 22,
"annotatedTime": 1753925758878,
"endNanoSecond": 143026114,
"endSecond": 1753089329,
"notes": null,
"startNanoSecond": 510125160,
"startSecond": 1753089307,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 31,
"annotatedTime": 1753925771182,
"endNanoSecond": 935904026,
"endSecond": 1753089360,
"notes": null,
"startNanoSecond": 143026352,
"startSecond": 1753089329,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "c2d14a6d4bd8564ec263fc7cdbf2aa74",
"bagDuration": 137,
"bagRegion": "suzhou",
"bagSize": 2477334200,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495777,
"name": "RB250319001_20250721171343016_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721171343016_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:38:13",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 13,
"annotatedTime": 1753925785694,
"endNanoSecond": 434137583,
"endSecond": 1753089459,
"notes": null,
"startNanoSecond": 313219786,
"startSecond": 1753089446,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753925797503,
"endNanoSecond": 987708807,
"endSecond": 1753089462,
"notes": null,
"startNanoSecond": 434137583,
"startSecond": 1753089459,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753925809591,
"endNanoSecond": 914924860,
"endSecond": 1753089470,
"notes": null,
"startNanoSecond": 987708807,
"startSecond": 1753089462,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753925821395,
"endNanoSecond": 108618259,
"endSecond": 1753089476,
"notes": null,
"startNanoSecond": 914924860,
"startSecond": 1753089470,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753925839135,
"endNanoSecond": 466488123,
"endSecond": 1753089493,
"notes": null,
"startNanoSecond": 108618259,
"startSecond": 1753089476,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753925851142,
"endNanoSecond": 436971188,
"endSecond": 1753089500,
"notes": null,
"startNanoSecond": 466488123,
"startSecond": 1753089493,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753925861791,
"endNanoSecond": 277653217,
"endSecond": 1753089510,
"notes": null,
"startNanoSecond": 436971188,
"startSecond": 1753089500,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753925870591,
"endNanoSecond": 312028646,
"endSecond": 1753089525,
"notes": null,
"startNanoSecond": 277653217,
"startSecond": 1753089510,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 26,
"annotatedTime": 1753925885007,
"endNanoSecond": 344478846,
"endSecond": 1753089551,
"notes": null,
"startNanoSecond": 312028646,
"startSecond": 1753089525,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "d9f75c1b980397976c5924fba095933e",
"bagDuration": 105,
"bagRegion": "suzhou",
"bagSize": 1792068812,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495778,
"name": "RB250319001_20250721171725817_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721171725817_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:46:58",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753925899911,
"endNanoSecond": 319593191,
"endSecond": 1753089605,
"notes": null,
"startNanoSecond": 394886494,
"startSecond": 1753089594,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753925913592,
"endNanoSecond": 8455038,
"endSecond": 1753089609,
"notes": null,
"startNanoSecond": 319592953,
"startSecond": 1753089605,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753925923351,
"endNanoSecond": 230610132,
"endSecond": 1753089618,
"notes": null,
"startNanoSecond": 8455038,
"startSecond": 1753089609,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753925935584,
"endNanoSecond": 27127266,
"endSecond": 1753089627,
"notes": null,
"startNanoSecond": 230610132,
"startSecond": 1753089618,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753925943386,
"endNanoSecond": 944988966,
"endSecond": 1753089638,
"notes": null,
"startNanoSecond": 27127028,
"startSecond": 1753089627,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753926350737,
"endNanoSecond": 32118082,
"endSecond": 1753089647,
"notes": null,
"startNanoSecond": 944988966,
"startSecond": 1753089638,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753926373369,
"endNanoSecond": 984186888,
"endSecond": 1753089653,
"notes": null,
"startNanoSecond": 32118082,
"startSecond": 1753089647,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 18,
"annotatedTime": 1753926384105,
"endNanoSecond": 719100475,
"endSecond": 1753089671,
"notes": null,
"startNanoSecond": 984186888,
"startSecond": 1753089653,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 32,
"annotatedTime": 1753926406713,
"endNanoSecond": 430285931,
"endSecond": 1753089703,
"notes": null,
"startNanoSecond": 719100237,
"startSecond": 1753089671,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "b89b01c526f26c8f3d5b36c65a10c8c6",
"bagDuration": 109,
"bagRegion": "suzhou",
"bagSize": 1892291706,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495792,
"name": "RB250319001_20250721171953915_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721171953915_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:49:08",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753926425489,
"endNanoSecond": 841929674,
"endSecond": 1753089754,
"notes": null,
"startNanoSecond": 41695595,
"startSecond": 1753089745,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753926436658,
"endNanoSecond": 436109304,
"endSecond": 1753089757,
"notes": null,
"startNanoSecond": 841929674,
"startSecond": 1753089754,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753926452355,
"endNanoSecond": 74527025,
"endSecond": 1753089765,
"notes": null,
"startNanoSecond": 436109304,
"startSecond": 1753089757,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753926466386,
"endNanoSecond": 559976101,
"endSecond": 1753089771,
"notes": null,
"startNanoSecond": 74527025,
"startSecond": 1753089765,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753926475482,
"endNanoSecond": 836811781,
"endSecond": 1753089786,
"notes": null,
"startNanoSecond": 559976101,
"startSecond": 1753089771,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753926489514,
"endNanoSecond": 60561419,
"endSecond": 1753089796,
"notes": null,
"startNanoSecond": 836811781,
"startSecond": 1753089786,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753926505370,
"endNanoSecond": 743217468,
"endSecond": 1753089808,
"notes": null,
"startNanoSecond": 60561419,
"startSecond": 1753089796,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753926521545,
"endNanoSecond": 190716982,
"endSecond": 1753089827,
"notes": null,
"startNanoSecond": 743217468,
"startSecond": 1753089808,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 28,
"annotatedTime": 1753926537194,
"endNanoSecond": 846043110,
"endSecond": 1753089855,
"notes": null,
"startNanoSecond": 190716982,
"startSecond": 1753089827,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "21a554accf651238c0db22d6ad0a1de5",
"bagDuration": 111,
"bagRegion": "suzhou",
"bagSize": 1913420513,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495793,
"name": "RB250319001_20250721172224514_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721172224514_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:51:20",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753926554675,
"endNanoSecond": 87150812,
"endSecond": 1753089932,
"notes": null,
"startNanoSecond": 466349363,
"startSecond": 1753089917,
"text": "右手拿起从左往右数的第四瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753926570331,
"endNanoSecond": 331899643,
"endSecond": 1753089936,
"notes": null,
"startNanoSecond": 87150574,
"startSecond": 1753089932,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753926583915,
"endNanoSecond": 192545414,
"endSecond": 1753089944,
"notes": null,
"startNanoSecond": 331899405,
"startSecond": 1753089936,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到第四瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753926598170,
"endNanoSecond": 594506979,
"endSecond": 1753089948,
"notes": null,
"startNanoSecond": 192545414,
"startSecond": 1753089944,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753926613770,
"endNanoSecond": 748573780,
"endSecond": 1753089973,
"notes": null,
"startNanoSecond": 594506979,
"startSecond": 1753089948,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753926627459,
"endNanoSecond": 124626398,
"endSecond": 1753089984,
"notes": null,
"startNanoSecond": 748573780,
"startSecond": 1753089973,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753926639547,
"endNanoSecond": 142485142,
"endSecond": 1753089992,
"notes": null,
"startNanoSecond": 124626398,
"startSecond": 1753089984,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 15,
"annotatedTime": 1753926650258,
"endNanoSecond": 234925270,
"endSecond": 1753090007,
"notes": null,
"startNanoSecond": 142485142,
"startSecond": 1753089992,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 31,
"annotatedTime": 1753926673586,
"endNanoSecond": 336061954,
"endSecond": 1753090038,
"notes": null,
"startNanoSecond": 234925032,
"startSecond": 1753090007,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "e61efd5d46774fd4ad8eea723d7c0cb8",
"bagDuration": 121,
"bagRegion": "suzhou",
"bagSize": 2083688284,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495827,
"name": "RB250319001_20250721172517014_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721172517014_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:54:46",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753926689993,
"endNanoSecond": 717094660,
"endSecond": 1753090206,
"notes": null,
"startNanoSecond": 112290382,
"startSecond": 1753090194,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753926702372,
"endNanoSecond": 164562464,
"endSecond": 1753090210,
"notes": null,
"startNanoSecond": 717094421,
"startSecond": 1753090206,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753926713208,
"endNanoSecond": 813631535,
"endSecond": 1753090217,
"notes": null,
"startNanoSecond": 56828976,
"startSecond": 1753090210,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753926724571,
"endNanoSecond": 62166929,
"endSecond": 1753090224,
"notes": null,
"startNanoSecond": 813631535,
"startSecond": 1753090217,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 28,
"annotatedTime": 1753926737747,
"endNanoSecond": 826976299,
"endSecond": 1753090252,
"notes": null,
"startNanoSecond": 62166929,
"startSecond": 1753090224,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753926754563,
"endNanoSecond": 846179724,
"endSecond": 1753090262,
"notes": null,
"startNanoSecond": 826976299,
"startSecond": 1753090252,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 14,
"annotatedTime": 1753926765131,
"endNanoSecond": 940734386,
"endSecond": 1753090276,
"notes": null,
"startNanoSecond": 846179724,
"startSecond": 1753090262,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "b13c83c3eb0d698b7625fa03ebcf6e27",
"bagDuration": 83,
"bagRegion": "suzhou",
"bagSize": 1361544478,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495849,
"name": "RB250319001_20250721172953612_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721172953612_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:56:47",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753926900044,
"endNanoSecond": 498962641,
"endSecond": 1753090439,
"notes": null,
"startNanoSecond": 447702646,
"startSecond": 1753090427,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753926926555,
"endNanoSecond": 664970160,
"endSecond": 1753090442,
"notes": null,
"startNanoSecond": 498962641,
"startSecond": 1753090439,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753926934645,
"endNanoSecond": 814018965,
"endSecond": 1753090449,
"notes": null,
"startNanoSecond": 664970160,
"startSecond": 1753090442,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753926947364,
"endNanoSecond": 307706833,
"endSecond": 1753090454,
"notes": null,
"startNanoSecond": 814018965,
"startSecond": 1753090449,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753926956117,
"endNanoSecond": 273789883,
"endSecond": 1753090462,
"notes": null,
"startNanoSecond": 307706833,
"startSecond": 1753090454,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753926971828,
"endNanoSecond": 993035316,
"endSecond": 1753090467,
"notes": null,
"startNanoSecond": 273789883,
"startSecond": 1753090462,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 37,
"annotatedTime": 1753926998956,
"endNanoSecond": 931814909,
"endSecond": 1753090505,
"notes": null,
"startNanoSecond": 43451548,
"startSecond": 1753090468,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "c130d9394408e75e0a10d713b558539a",
"bagDuration": 79,
"bagRegion": "suzhou",
"bagSize": 1271230627,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495869,
"name": "RB250319001_20250721173346912_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721173346912_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 09:59:52",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753927031749,
"endNanoSecond": 380146265,
"endSecond": 1753090912,
"notes": null,
"startNanoSecond": 16081095,
"startSecond": 1753090900,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753927087029,
"endNanoSecond": 457657337,
"endSecond": 1753090916,
"notes": null,
"startNanoSecond": 380146503,
"startSecond": 1753090912,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753927096195,
"endNanoSecond": 243331432,
"endSecond": 1753090927,
"notes": null,
"startNanoSecond": 457657337,
"startSecond": 1753090916,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927108285,
"endNanoSecond": 214559555,
"endSecond": 1753090934,
"notes": null,
"startNanoSecond": 243331432,
"startSecond": 1753090927,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 19,
"annotatedTime": 1753927116853,
"endNanoSecond": 944451094,
"endSecond": 1753090953,
"notes": null,
"startNanoSecond": 214559793,
"startSecond": 1753090934,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 17,
"annotatedTime": 1753927131988,
"endNanoSecond": 780625343,
"endSecond": 1753090970,
"notes": null,
"startNanoSecond": 944451332,
"startSecond": 1753090953,
"text": "左手拿起从左往右数的第一瓶矿泉水,左手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 31,
"annotatedTime": 1753927184886,
"endNanoSecond": 142051220,
"endSecond": 1753091001,
"notes": null,
"startNanoSecond": 760073423,
"startSecond": 1753090970,
"text": "左手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "4f9c1d3999b058be83d8b9ee0c650041",
"bagDuration": 101,
"bagRegion": "suzhou",
"bagSize": 1824333496,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495908,
"name": "RB250319001_20250721174139526_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721174139526_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 10:06:26",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753927269841,
"endNanoSecond": 507172823,
"endSecond": 1753091137,
"notes": null,
"startNanoSecond": 414241552,
"startSecond": 1753091125,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927514432,
"endNanoSecond": 387633801,
"endSecond": 1753091144,
"notes": null,
"startNanoSecond": 507172823,
"startSecond": 1753091137,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753927533119,
"endNanoSecond": 63567400,
"endSecond": 1753091156,
"notes": null,
"startNanoSecond": 387633801,
"startSecond": 1753091144,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927548879,
"endNanoSecond": 820517778,
"endSecond": 1753091164,
"notes": null,
"startNanoSecond": 63567400,
"startSecond": 1753091156,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 9,
"annotatedTime": 1753927558927,
"endNanoSecond": 577467918,
"endSecond": 1753091173,
"notes": null,
"startNanoSecond": 820517778,
"startSecond": 1753091164,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927570127,
"endNanoSecond": 40931225,
"endSecond": 1753091180,
"notes": null,
"startNanoSecond": 577467918,
"startSecond": 1753091173,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 25,
"annotatedTime": 1753927579592,
"endNanoSecond": 564118147,
"endSecond": 1753091205,
"notes": null,
"startNanoSecond": 40931225,
"startSecond": 1753091180,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "653958c639ced6ec363575bd5f59ca6d",
"bagDuration": 80,
"bagRegion": "suzhou",
"bagSize": 1316969512,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 495922,
"name": "RB250319001_20250721174524934_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721174524934_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 10:08:13",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753927602344,
"endNanoSecond": 327788830,
"endSecond": 1753098317,
"notes": null,
"startNanoSecond": 179168224,
"startSecond": 1753098305,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927628912,
"endNanoSecond": 174752474,
"endSecond": 1753098324,
"notes": null,
"startNanoSecond": 371714115,
"startSecond": 1753098317,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927639776,
"endNanoSecond": 824564457,
"endSecond": 1753098332,
"notes": null,
"startNanoSecond": 174752474,
"startSecond": 1753098324,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753927646199,
"endNanoSecond": 906512737,
"endSecond": 1753098336,
"notes": null,
"startNanoSecond": 824564457,
"startSecond": 1753098332,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927656704,
"endNanoSecond": 390063047,
"endSecond": 1753098344,
"notes": null,
"startNanoSecond": 906512976,
"startSecond": 1753098336,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927666312,
"endNanoSecond": 553936005,
"endSecond": 1753098352,
"notes": null,
"startNanoSecond": 390063047,
"startSecond": 1753098344,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 27,
"annotatedTime": 1753927681720,
"endNanoSecond": 900777578,
"endSecond": 1753098379,
"notes": null,
"startNanoSecond": 553936243,
"startSecond": 1753098352,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "b52ee4f6194cc2b88752b33bd59312b6",
"bagDuration": 75,
"bagRegion": "suzhou",
"bagSize": 1189798215,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 496116,
"name": "RB250319001_20250721194504681_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721194504681_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 10:09:44",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 10,
"annotatedTime": 1753927707505,
"endNanoSecond": 338265419,
"endSecond": 1753098485,
"notes": null,
"startNanoSecond": 197178602,
"startSecond": 1753098475,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753927719313,
"endNanoSecond": 120333433,
"endSecond": 1753098488,
"notes": null,
"startNanoSecond": 338265419,
"startSecond": 1753098485,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 6,
"annotatedTime": 1753927730505,
"endNanoSecond": 402422428,
"endSecond": 1753098494,
"notes": null,
"startNanoSecond": 120333433,
"startSecond": 1753098488,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753927741513,
"endNanoSecond": 363978863,
"endSecond": 1753098497,
"notes": null,
"startNanoSecond": 402422428,
"startSecond": 1753098494,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927751608,
"endNanoSecond": 184532642,
"endSecond": 1753098504,
"notes": null,
"startNanoSecond": 363978863,
"startSecond": 1753098497,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753927759552,
"endNanoSecond": 210203886,
"endSecond": 1753098509,
"notes": null,
"startNanoSecond": 184532642,
"startSecond": 1753098504,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 35,
"annotatedTime": 1753927768817,
"endNanoSecond": 194990158,
"endSecond": 1753098544,
"notes": null,
"startNanoSecond": 210203886,
"startSecond": 1753098509,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "b15ade81fce4b8e2c3b88df69f346477",
"bagDuration": 69,
"bagRegion": "suzhou",
"bagSize": 1087981486,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 496142,
"name": "RB250319001_20250721194754680_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721194754680_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 10:11:41",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 12,
"annotatedTime": 1753927792319,
"endNanoSecond": 467929125,
"endSecond": 1753098702,
"notes": null,
"startNanoSecond": 277133703,
"startSecond": 1753098690,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 3,
"annotatedTime": 1753927808409,
"endNanoSecond": 706109047,
"endSecond": 1753098705,
"notes": null,
"startNanoSecond": 467928886,
"startSecond": 1753098702,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927819730,
"endNanoSecond": 468190908,
"endSecond": 1753098712,
"notes": null,
"startNanoSecond": 706109047,
"startSecond": 1753098705,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753927829489,
"endNanoSecond": 896904230,
"endSecond": 1753098717,
"notes": null,
"startNanoSecond": 468190670,
"startSecond": 1753098712,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927846921,
"endNanoSecond": 801873207,
"endSecond": 1753098725,
"notes": null,
"startNanoSecond": 896904230,
"startSecond": 1753098717,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第三瓶矿泉水右侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927879945,
"endNanoSecond": 516360760,
"endSecond": 1753098733,
"notes": null,
"startNanoSecond": 801872969,
"startSecond": 1753098725,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 30,
"annotatedTime": 1753927893145,
"endNanoSecond": 500776529,
"endSecond": 1753098763,
"notes": null,
"startNanoSecond": 516360760,
"startSecond": 1753098733,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "6064b789d3e2bc0db07a52e64d508e92",
"bagDuration": 73,
"bagRegion": "suzhou",
"bagSize": 1168134635,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 496150,
"name": "RB250319001_20250721195129772_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721195129772_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
6,441
|
Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008
|
v20251001_0053
|
{
"annotatedByList": [
"PRD-xuhainuo"
],
"annotatedTime": "2025-07-31 13:07:16",
"annotations": [
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 11,
"annotatedTime": 1753927909242,
"endNanoSecond": 999962807,
"endSecond": 1753098588,
"notes": null,
"startNanoSecond": 454381704,
"startSecond": 1753098577,
"text": "右手拿起从左往右数的第三瓶矿泉水,右手把矿泉水放到洗菜槽左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753927921338,
"endNanoSecond": 285283327,
"endSecond": 1753098592,
"notes": null,
"startNanoSecond": 999962807,
"startSecond": 1753098588,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 8,
"annotatedTime": 1753927951833,
"endNanoSecond": 451665878,
"endSecond": 1753098600,
"notes": null,
"startNanoSecond": 285283327,
"startSecond": 1753098592,
"text": "右手拿起从左往右数的第二瓶矿泉水,右手把矿泉水放到第三瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 4,
"annotatedTime": 1753927961737,
"endNanoSecond": 581790447,
"endSecond": 1753098604,
"notes": null,
"startNanoSecond": 451665878,
"startSecond": 1753098600,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 7,
"annotatedTime": 1753927970330,
"endNanoSecond": 58582306,
"endSecond": 1753098611,
"notes": null,
"startNanoSecond": 581790447,
"startSecond": 1753098604,
"text": "右手拿起从左往右数的第一瓶矿泉水,右手把矿泉水放到第二瓶矿泉水左侧"
},
{
"actionQualityLabel": "None",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 5,
"annotatedTime": 1753927981226,
"endNanoSecond": 878303289,
"endSecond": 1753098616,
"notes": null,
"startNanoSecond": 58580399,
"startSecond": 1753098611,
"text": "右手推动矿泉水使它靠紧墙壁"
},
{
"actionQualityLabel": "unqualified",
"annotatedBy": "PRD-xuhainuo",
"annotatedDuration": 33,
"annotatedTime": 1753927992442,
"endNanoSecond": 596220970,
"endSecond": 1753098649,
"notes": null,
"startNanoSecond": 878303289,
"startSecond": 1753098616,
"text": "右手推动矿泉水使它靠紧墙壁"
}
],
"bagDigest": "9716b4b4f62c8ff14f8d5539f85b6733",
"bagDuration": 72,
"bagRegion": "suzhou",
"bagSize": 1187187261,
"bagStatus": "uploaded",
"dcPlanId": 883,
"dcProject": "vla",
"dcSubPlanId": 907,
"dcSubtaskName": "None",
"dcTask": "Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008",
"dcTaskDesc": "整理桌面矿泉水瓶",
"id": 496155,
"name": "RB250319001_20250721194936979_RAW.bag",
"path": "/tenant-storage/galaxea-ai/raw_data/2025-07-21/suzhou__vla__Arrange_Mineral_Water_Bottles_On_The_Desk_20250721_008/RB250319001_20250721194936979_RAW.bag",
"qualityCheckedOperator": null,
"qualityCheckedTime": null,
"qualityDesc": "None",
"qualityLabel": "None",
"qualitySubLabel": "None",
"robotHardwareVersion": null,
"robotPackageBranch": "test/vla_v1.1.9",
"robotPackageCommit": "2965276cd989998eb7788c0711c347341915e639",
"robotPackageName": "atc_standard_x86-vla_V1.1.9-20250710_11_43_19.tar.gz",
"robotSn": "RB250319001",
"robotSoftwareVersion": null,
"robotType": "R1LITE",
"teleOperator": "zhongjiachuan",
"teleType": "gello"
}
|
End of preview.
No dataset card yet
- Downloads last month
- 147,756