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": 175307699... |
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": 175307721... |
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": 175307735... |
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": 175307756... |
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": 175307771... |
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... |
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": 175307808... |
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": 175307834... |
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": 175307847... |
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": 175307876... |
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": 175307906... |
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... |
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": 175307920... |
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": 175307936... |
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": 175307953... |
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": 175307997... |
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": 175308014... |
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": 175308036... |
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": 175308062... |
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": 175308088... |
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": 175308129... |
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": 175308158... |
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": 175308189... |
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": 175308232... |
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": 175308281... |
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": 175308301... |
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": 175308329... |
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... |
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... |
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": 175308395... |
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": 175308423... |
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": 175308619... |
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": 175308635... |
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": 175308677... |
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": 175308735... |
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": 175308752... |
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": 175308818... |
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": 175308879... |
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": 175308905... |
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": 175308923... |
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": 175308945... |
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": 175308960... |
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... |
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... |
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": 175309020... |
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": 175309043... |
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": 175309091... |
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": 175309113... |
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": 175309831... |
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": 175309848... |
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": 175309870... |
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": 175309858... |
End of preview.
No dataset card yet
- Downloads last month
- 22,927